Skip to content

Commit

Permalink
Merge pull request #243 from EasyAbp/abp-9
Browse files Browse the repository at this point in the history
Upgrade to ABP 9.0.2
  • Loading branch information
gdlcf88 authored Dec 29, 2024
2 parents 30386af + 7000093 commit c97def5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: NuGet/setup-nuget@v1
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
dotnet-version: '9.0.x'

- name: read common.props
id: commonProps
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>

<AbpVersion>8.3.2</AbpVersion>
<AbpVersion>9.0.2</AbpVersion>

</PropertyGroup>
</Project>
8 changes: 4 additions & 4 deletions common.props
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>0.22.1</Version>
<PackageVersion>0.22.1</PackageVersion>
<AssemblyVersion>0.22.1</AssemblyVersion>
<FileVersion>0.22.1</FileVersion>
<Version>0.23.0</Version>
<PackageVersion>0.23.0</PackageVersion>
<AssemblyVersion>0.23.0</AssemblyVersion>
<FileVersion>0.23.0</FileVersion>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>EasyAbp Team</Authors>
Expand Down
8 changes: 4 additions & 4 deletions src/AbpHelper.Core/AbpHelper.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<PackageId>EasyAbp.AbpHelper.Core</PackageId>
<AssemblyName>EasyAbp.AbpHelper.Core</AssemblyName>
<RootNamespace>EasyAbp.AbpHelper.Core</RootNamespace>
Expand All @@ -16,16 +16,16 @@
<PackageReference Include="Elsa" Version="1.2.2.29" />
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.5.0" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.4" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.0" />
<PackageReference Include="Scriban" Version="5.5.2" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20371.2" />
<PackageReference Include="Volo.Abp.Autofac" Version="$(AbpVersion)" />
<PackageReference Include="Volo.Abp.Core" Version="$(AbpVersion)" />
<PackageReference Include="Volo.Abp.Http" Version="$(AbpVersion)" />
<PackageReference Include="Volo.Abp.VirtualFileSystem" Version="$(AbpVersion)" />
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="NuGet.Protocol" Version="6.2.2" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/AbpHelper/AbpHelper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>10.0</LangVersion>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
Expand Down
6 changes: 3 additions & 3 deletions test/AbpHelper.Tests/AbpHelper.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>

<IsPackable>false</IsPackable>

Expand All @@ -11,15 +11,15 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Shouldly" Version="4.2.1" />
<PackageReference Include="Volo.Abp.TestBase" Version="$(AbpVersion)" />
<PackageReference Include="xunit" Version="2.6.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit c97def5

Please sign in to comment.