Skip to content

Commit

Permalink
RE
Browse files Browse the repository at this point in the history
  • Loading branch information
NMSAzulX committed Nov 13, 2024
1 parent a812e91 commit 5e197a1
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 10 deletions.
16 changes: 11 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,21 @@ Example:
- 编译导演,每次编译学习并保留有用的 using code.
- 跟随其他扩展库版本号发布.
### DotNetCore.Natasha.CSharp.Extension.HotExecutor.SG _ v8.9.0.2:
- 热重载,允许程序在运行时更改代码,并输出新的结果.
- 跟随其他扩展库版本号发布.
-->

## [9.0.0.0] - 2024-11-13

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

### DotNetCore.Natasha.CSharp.HotExecutor.SG _ v9.0.0.0:
- 热执行的 SG 扩展库.
- 跟随其他扩展库版本号发布.

### DotNetCore.Natasha.CSharp.HotExecutor.Wrapper _ v8.9.0.0:
- 热执行 + SG 封装库.
- 跟随其他扩展库版本号发布.


4 changes: 4 additions & 0 deletions samples/ExtensionSample/ExtensionSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@
<Compile Remove="InterceptMain.cs" />
<Compile Remove="InteroAttribute.cs" />
</ItemGroup>

<ItemGroup>

<ProjectReference Include="..\..\src\Natasha.CSharp\Extension\HotExecutor\Natasha.CSharp.HotExecutor.SG\Natasha.CSharp.HotExecutor.SG.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" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.1;</TargetFrameworks>
<PackageId>DotNetCore.Natasha.CSharp.Extension.HotExecutor.SG</PackageId>
<PackageId>DotNetCore.Natasha.CSharp.HotExecutor.SG</PackageId>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<IncludeBuildOutput>false</IncludeBuildOutput>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand All @@ -19,6 +19,10 @@
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
<None Remove="bin\Debug\netstandard2.1\netstandard2.1\Natasha.CSharp.HotExecutor.SG.dll" />
</ItemGroup>

<ItemGroup>
<None Include="$(OutputPath)\netstandard2.1\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.1;</TargetFrameworks>
<PackageId>DotNetCore.Natasha.CSharp.Extension.HotExecutor.Wrapper</PackageId>
<PackageId>DotNetCore.Natasha.CSharp.HotExecutor.Wrapper</PackageId>
<Description>动态重载控制台代码结果.</Description>
<PackageReleaseNotes>升级到最新版.</PackageReleaseNotes>
<PackageTags>Natasha;Compiler;Natasha Extension;HotReload;HotExecutor;Source Generator;</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>
<!-- 编辑项目文件,添加指定的 PackageReference 节点 -->
<ItemGroup>
<PackageReference Include="DotNetCore.Natasha.CSharp.Extension.HotExecutor.SG" Version="8.9.0.2" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<PackageReference Include="DotNetCore.Natasha.CSharp.Extension.HotExecutor" Version="9.0.0.0" />
<PackageReference Include="DotNetCore.Natasha.CSharp.HotExecutor.SG" Version="9.0.0.0" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<PackageReference Include="DotNetCore.Natasha.CSharp.HotExecutor" Version="9.0.0.0" />
<PackageReference Include="DotNetCore.Natasha.CSharp.Compiler.Domain" Version="9.0.0.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Description>动态重载控制台代码结果.</Description>
<PackageId>DotNetCore.Natasha.CSharp.Extension.HotExecutor</PackageId>
<PackageId>DotNetCore.Natasha.CSharp.HotExecutor</PackageId>
<PackageReleaseNotes>升级到最新版.</PackageReleaseNotes>
<PackageTags>Natasha;Compiler;Natasha Extension;HotReload;HotExecutor;</PackageTags>
<Version>8.0.0.0</Version>
Expand Down

0 comments on commit 5e197a1

Please sign in to comment.