Skip to content

Commit

Permalink
RE HE
Browse files Browse the repository at this point in the history
  • Loading branch information
NMSAzulX committed Nov 13, 2024
1 parent 93efa82 commit 4794461
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 18 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,16 @@ Example:
- 跟随其他扩展库版本号发布.
-->

## [9.0.0.0] - 2024-11-13

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

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

Expand Down
6 changes: 5 additions & 1 deletion samples/ExtensionSample/ExtensionSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Natasha.CSharp\Extension\HotExecutor\Natasha.CSharp.HotExecutor.SG\Natasha.CSharp.HotExecutor.SG.csproj" />
<PackageReference Include="DotNetCore.Compile.Environment" Version="3.2.0" />
<PackageReference Include="DotNetCore.Natasha.CSharp.Extension.HotExecutor.SG" Version="8.9.0.1" />
</ItemGroup>

<ItemGroup>
<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" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;</TargetFrameworks>
<TargetFrameworks>netstandard2.1;</TargetFrameworks>
<PackageId>DotNetCore.Natasha.CSharp.Extension.HotExecutor.SG</PackageId>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<IncludeBuildOutput>false</IncludeBuildOutput>
Expand All @@ -20,9 +20,7 @@
</ItemGroup>

<ItemGroup>
<None Include="$(OutputPath)\netstandard2.0\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
<None Include="targets\DotNetCore.Natasha.CSharp.HotExecutor.SG.targets" Pack="true" PackagePath="build\netstandard2.0\DotNetCore.Natasha.CSharp.HotExecutor.SG.targets" />
<None Include="targets\DotNetCore.Natasha.CSharp.HotExecutor.SG.targets" Pack="true" PackagePath="buildTransitive\netstandard2.0\DotNetCore.Natasha.CSharp.HotExecutor.SG.targets" />
<None Include="$(OutputPath)\netstandard2.1\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>

</Project>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.1;</TargetFrameworks>
<PackageId>DotNetCore.Natasha.CSharp.Extension.HotExecutor.Wrapper</PackageId>
<Description>动态重载控制台代码结果.</Description>
<PackageReleaseNotes>升级到最新版.</PackageReleaseNotes>
<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>
</PropertyGroup>
<ItemGroup>
<None Include="targets\DotNetCore.Natasha.CSharp.HotExecutor.Wrapper.targets" Pack="true" PackagePath="build\netstandard2.1\DotNetCore.Natasha.CSharp.HotExecutor.Wrapper.targets" />
<None Include="targets\DotNetCore.Natasha.CSharp.HotExecutor.Wrapper.targets" Pack="true" PackagePath="buildTransitive\netstandard2.1\DotNetCore.Natasha.CSharp.HotExecutor.Wrapper.targets" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +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.Compiler.Domain" Version="9.0.0.0" />
</ItemGroup>
</Project>

0 comments on commit 4794461

Please sign in to comment.