Skip to content

Commit

Permalink
升级至9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tooclian committed Dec 8, 2024
1 parent 806a260 commit 370a765
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.100
dotnet-version: 9.0.100

# Publish
- name: publish on version change
Expand Down
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<PropertyGroup>
<TargetFrameworkVersions>netstandard2.0;net5;net6;net7;net8;net9</TargetFrameworkVersions>

<MicrosoftPackageVersion>8.0.0</MicrosoftPackageVersion>
<MediationPackageVersion>9.0.0-preview-01</MediationPackageVersion>
<MicrosoftPackageVersion>9.0.0</MicrosoftPackageVersion>
<MediationPackageVersion>9.0.0</MediationPackageVersion>

<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>9.0.0-preview-01</Version>
<Version>9.0.0</Version>
<NoWarn>$(NoWarn);CS1591;CS8618;CA2211</NoWarn>
<Authors>tooclian</Authors>
<Company>toocliancode</Company>
Expand Down
2 changes: 1 addition & 1 deletion src/WeChat.Applet/WeChat.Applet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net9' ">
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0-preview.3.24172.9" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/WeChat.Mp/WeChat.Mp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net5' ">
Expand All @@ -33,7 +33,7 @@
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net9' ">
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0-preview.3.24172.9" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/WeChat/WeChat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net9' ">
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.0-preview.3.24172.9" />
<PackageReference Include="System.Text.Json" Version="9.0.0-preview.3.24172.9" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.0" />
<PackageReference Include="System.Text.Json" Version="9.0.0" />
</ItemGroup>

</Project>

0 comments on commit 370a765

Please sign in to comment.