Skip to content

Commit

Permalink
Upgrade .NET to 8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MarinAtanasov committed Feb 14, 2024
1 parent 41ca874 commit e5f9890
Show file tree
Hide file tree
Showing 14 changed files with 24 additions and 21 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build.yml
Expand Up @@ -11,15 +11,14 @@ jobs:
operating-system: [ ubuntu-latest, windows-latest, macOS-latest ]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore
run: dotnet restore AppBrix.sln --nologo --verbosity minimal
run: dotnet restore --nologo --verbosity minimal
- name: Build
run: dotnet build AppBrix.sln --configuration Release --no-restore --nologo --verbosity minimal
run: dotnet build --configuration Release --no-restore --nologo --verbosity minimal
- name: Test
shell: pwsh
run: ./Test.ps1 -release
run: dotnet test --filter Category=Functional --configuration Release --no-build --nologo --verbosity minimal
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.Text.Json" Version="7.0.3" />
<PackageReference Include="System.Text.Json" Version="8.0.2" />
</ItemGroup>

</Project>
5 changes: 3 additions & 2 deletions Directory.Build.props
Expand Up @@ -9,19 +9,20 @@
<Features>strict</Features>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSymbols>true</IncludeSymbols>
<IsTestProject>false</IsTestProject>
<Nullable>enable</Nullable>
<PackageIcon>icon-64x64.png</PackageIcon>
<PackageIconUrl>https://raw.githubusercontent.com/MarinAtanasov/AppBrix/master/icon-64x64.png</PackageIconUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/MarinAtanasov/AppBrix</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>Upgrade .NET to 8.0.0.</PackageReleaseNotes>
<PackageReleaseNotes>Upgrade .NET to 8.0.2.</PackageReleaseNotes>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/MarinAtanasov/AppBrix.git</RepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TargetFramework>net8.0</TargetFramework>
<Version>0.43.0</Version>
<Version>0.44.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Modules/AppBrix.Data.InMemory/AppBrix.Data.InMemory.csproj
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.2" />
</ItemGroup>

</Project>
Expand Up @@ -14,8 +14,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.2" />
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
</ItemGroup>

Expand Down
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.2" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion Modules/AppBrix.Data.Sqlite/AppBrix.Data.Sqlite.csproj
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.2" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion Modules/AppBrix.Data/AppBrix.Data.csproj
Expand Up @@ -15,7 +15,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.2" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion Modules/AppBrix.Web.Client/AppBrix.Web.Client.csproj
Expand Up @@ -17,7 +17,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.Json" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.2" />
</ItemGroup>

</Project>
5 changes: 3 additions & 2 deletions Testing/AppBrix.Testing.Xunit/AppBrix.Testing.Xunit.csproj
Expand Up @@ -4,6 +4,7 @@
<AssemblyName>AppBrix.Testing.Xunit</AssemblyName>
<AssemblyTitle>AppBrix.Testing.Xunit</AssemblyTitle>
<Description>Tooling for testing AppBrix applications and modules using xUnit.</Description>
<IsTestProject>false</IsTestProject>
<PackageId>AppBrix.Testing.xUnit</PackageId>
<PackageTags>AppBrix Module Cache</PackageTags>
<Title>AppBrix.Testing.xUnit</Title>
Expand All @@ -14,8 +15,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="xunit" Version="2.6.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6" />
</ItemGroup>

</Project>
1 change: 1 addition & 0 deletions Testing/AppBrix.Testing/AppBrix.Testing.csproj
Expand Up @@ -4,6 +4,7 @@
<AssemblyName>AppBrix.Testing</AssemblyName>
<AssemblyTitle>AppBrix.Testing</AssemblyTitle>
<Description>Tooling for testing AppBrix applications and modules.</Description>
<IsTestProject>false</IsTestProject>
<PackageId>AppBrix.Testing</PackageId>
<PackageTags>AppBrix Module Cache</PackageTags>
<Title>AppBrix.Testing</Title>
Expand Down
2 changes: 1 addition & 1 deletion Tests/AppBrix.Caching.Tests/AppBrix.Caching.Tests.csproj
Expand Up @@ -16,7 +16,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="7.0.3" />
<PackageReference Include="System.Text.Json" Version="8.0.2" />
</ItemGroup>

</Project>
Expand Up @@ -16,7 +16,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.2" />
</ItemGroup>

</Project>
3 changes: 2 additions & 1 deletion Tests/Directory.Build.props
Expand Up @@ -6,12 +6,13 @@
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<IsPackable>false</IsPackable>
<IsTestProject>false</IsTestProject>
<IsTestProject>true</IsTestProject>
<Nullable>disable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
</ItemGroup>

</Project>

0 comments on commit e5f9890

Please sign in to comment.