Skip to content

Commit

Permalink
重发布 HE
Browse files Browse the repository at this point in the history
  • Loading branch information
NMSAzulX committed Nov 13, 2024
1 parent ac225ba commit acbc05f
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches:
- 'main'
paths:
- 'CHANGELOG.md'
- 'CHANGELOG111.md'

env:
GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@ Example:

## [9.0.0.0] - 2024-11-13

### DotNetCore.Natasha.CSharp.Extension.HotReload.SG _ v8.9.0.0:
### DotNetCore.Natasha.CSharp.Extension.HotExecutor.SG _ v8.9.0.1:
- 热重载,允许程序在运行时更改代码,并输出新的结果.
- 跟随其他扩展库版本号发布.

### DotNetCore.Natasha.CSharp.Extension.HotExecutor _ v9.0.0.0:
- 热重载,允许程序在运行时更改代码,并输出新的结果.
- 跟随其他扩展库版本号发布.

Expand Down
10 changes: 2 additions & 8 deletions samples/ExtensionSample/ExtensionSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,9 @@
<Compile Remove="InteroAttribute.cs" />
</ItemGroup>


<ItemGroup>

<ProjectReference Include="..\..\src\Natasha.CSharp\Component\Core\Natasha.CSharp.Compiler.Domain\Natasha.CSharp.Compiler.Domain.csproj" />
<ProjectReference Include="..\..\src\Natasha.CSharp\Extension\HotExecutor\Natasha.CSharp.HotExecutor\Natasha.CSharp.HotExecutor.csproj" />
<ProjectReference Include="..\..\src\Natasha.CSharp\Extension\Natasha.CSharp.Extension.CompileDirector\Natasha.CSharp.Extension.CompileDirector.csproj" />
<ProjectReference Include="..\..\src\Natasha.CSharp\Extension\Natasha.CSharp.Extension.MethodCreator\Natasha.CSharp.Extension.MethodCreator.csproj" />
<ProjectReference Include="..\..\src\Natasha.CSharp\Extension\HotExecutor\Natasha.CSharp.HotExecutor.SG\Natasha.CSharp.HotExecutor.SG.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />

<PackageReference Include="DotNetCore.Natasha.CSharp.Extension.HotReload.SG" Version="8.9.0" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>


</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.0;</TargetFrameworks>
<PackageId>DotNetCore.Natasha.CSharp.Extension.HotReload.SG</PackageId>
<PackageId>DotNetCore.Natasha.CSharp.Extension.HotExecutor.SG</PackageId>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<IncludeBuildOutput>false</IncludeBuildOutput>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Description>动态重载控制台代码结果.</Description>
<PackageReleaseNotes>升级到最新版.</PackageReleaseNotes>
<PackageTags>Natasha;Compiler;Natasha Extension;HotReload;Source Generator;</PackageTags>
<PackageTags>Natasha;Compiler;Natasha Extension;HotReload;HotExecutor;Source Generator;</PackageTags>
<Version>8.0.0.0</Version>
<FileVersion>8.0.0.0</FileVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
<Project>
<ItemGroup>
<PackageReference Include="DotNetCore.Natasha.CSharp.Extension.HotReload" Version="9.0.0.0" />
<PackageReference Include="DotNetCore.Natasha.CSharp.Compiler.Domain" Version="9.0.0.0" />
</ItemGroup>
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- 定义在项目引用此 NuGet 包后执行的目标 -->
<Target Name="AddPackageReference" AfterTargets="RestorePackages">
<!-- 编辑项目文件,添加指定的 PackageReference 节点 -->
<ItemGroup>
<PackageReference Include="DotNetCore.Natasha.CSharp.Extension.HotExecutor" Version="9.0.0.0" />
<PackageReference Include="DotNetCore.Natasha.CSharp.Compiler.Domain" Version="9.0.0.0" />
</ItemGroup>
</Target>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Description>动态重载控制台代码结果.</Description>
<PackageId>DotNetCore.Natasha.CSharp.Extension.HotReload</PackageId>
<PackageId>DotNetCore.Natasha.CSharp.Extension.HotExecutor</PackageId>
<PackageReleaseNotes>升级到最新版.</PackageReleaseNotes>
<PackageTags>Natasha;Compiler;Natasha Extension;HotReload;</PackageTags>
<PackageTags>Natasha;Compiler;Natasha Extension;HotReload;HotExecutor;</PackageTags>
<Version>8.0.0.0</Version>
<FileVersion>8.0.0.0</FileVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
Expand Down

0 comments on commit acbc05f

Please sign in to comment.