Skip to content

Commit

Permalink
no net framework for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
jbtule committed Nov 20, 2024
1 parent 5672c0b commit 5d716a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jobs:
name: Test ${{ matrix.os }} for dotnet ${{ matrix.dotnet }}
env:
CI: true
NO_NETFMK: true
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
3 changes: 2 additions & 1 deletion Keyczar/KeyczarTest/KeyczarTest.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net462;net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(NO_NETFMK)' != 'true'">net462;net8.0</TargetFrameworks>
<TargetFramework Condition="'$(NO_NETFMK)' == 'true'">net8.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' != 'net462'">
<AssemblyName>KeyczarTestNetCore</AssemblyName>
Expand Down

0 comments on commit 5d716a2

Please sign in to comment.