Skip to content

Commit

Permalink
TEST2
Browse files Browse the repository at this point in the history
  • Loading branch information
MartyIX committed Nov 3, 2022
1 parent 737576f commit 72490b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
uses: actions/setup-dotnet@v2
with:
dotnet-version: '6.0.x'
- run: dotnet workload install android
- run: dotnet --info
- name: Test (.NET 6.0/Debug)
run: dotnet test -f net6.0 -c Debug
Expand All @@ -45,6 +46,7 @@ jobs:
image: mcr.microsoft.com/dotnet/sdk:6.0-alpine
steps:
- uses: actions/checkout@v3
- run: dotnet workload install android
- run: dotnet --info
- name: Test (.NET 6.0/Debug)
run: dotnet test -f net6.0 -c Debug
Expand Down
4 changes: 2 additions & 2 deletions src/Sodium.Core/Sodium.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.1;netstandard2.0;net6.0</TargetFrameworks>
<TargetFrameworks Condition="!$([MSBuild]::IsOSPlatform('linux'))">$(TargetFrameworks);net6.0-android;net6.0-ios;net6.0-maccatalyst</TargetFrameworks>
<TargetFrameworks>netstandard2.1;netstandard2.0;net6.0;net6.0-android</TargetFrameworks>
<TargetFrameworks Condition="!$([MSBuild]::IsOSPlatform('linux'))">$(TargetFrameworks);net6.0-ios;net6.0-maccatalyst</TargetFrameworks>
<LangVersion>9.0</LangVersion>
<Features>strict</Features>
<Nullable>enable</Nullable>
Expand Down

0 comments on commit 72490b9

Please sign in to comment.