Skip to content

Commit

Permalink
return the net7.0 for the ci linux
Browse files Browse the repository at this point in the history
  • Loading branch information
dadhi committed May 23, 2024
1 parent 3f9bfd0 commit e24b45b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image:
- Visual Studio 2022
# - Ubuntu
- Ubuntu
- macOS

version: 5.0.0-preview-01-b{build}
Expand All @@ -11,7 +11,7 @@ skip_commits:
message: /noci .*/

build_script:
- dotnet test -p:DevMode=false -f:net6.0 -c:Release test/ImTools.UnitTests/ImTools.UnitTests.csproj
- dotnet test -p:CILinux=true -c:Release test/ImTools.UnitTests/ImTools.UnitTests.csproj

for:
- matrix:
Expand Down
1 change: 1 addition & 0 deletions playground/Experiments/Experiments.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<TargetFrameworks Condition="'$(DevMode)' == 'true'">net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(DevMode)' != 'true'">net8.0;net6.0;net472</TargetFrameworks>
<TargetFrameworks Condition="'$(CILinux)' == 'true'">net7.0</TargetFrameworks>
<NoWarn>1701;1702;AD0001;NU1608</NoWarn>
</PropertyGroup>

Expand Down
1 change: 1 addition & 0 deletions test/ImTools.UnitTests/ImTools.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<TargetFrameworks Condition="'$(DevMode)' == 'true'">net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(DevMode)' != 'true'">net8.0;net6.0;net472</TargetFrameworks>
<TargetFrameworks Condition="'$(CILinux)' == 'true'">net7.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit e24b45b

Please sign in to comment.