Skip to content

Commit

Permalink
Fixups: All tests targeting dotnet 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephEShook committed Nov 29, 2022
1 parent 394d728 commit 239d035
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
- name: Build
run: dotnet build -c Release Udap.sln --no-restore
- name: Test Udap.Common.Tests
run: dotnet test -c Release --framework net6.0 _tests/Udap.Common.Tests/Udap.Common.Tests.csproj --no-build --verbosity normal
run: dotnet test -c Release --framework net7.0 _tests/Udap.Common.Tests/Udap.Common.Tests.csproj --no-build --verbosity normal
- name: Test WebApi.Tests
run: dotnet test -c Release --framework net6.0 _tests/WebApi.Tests/WebApi.Tests.csproj --no-build --verbosity normal
run: dotnet test -c Release --framework net7.0 _tests/WebApi.Tests/WebApi.Tests.csproj --no-build --verbosity normal

- name: Create nuget package for GPR
run: |
Expand Down
2 changes: 1 addition & 1 deletion _tests/Udap.Common.Tests/Udap.Common.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

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

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand Down

0 comments on commit 239d035

Please sign in to comment.