Skip to content

Commit

Permalink
Fix csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
Perksey committed Feb 2, 2025
1 parent 11ceb11 commit 94647c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sources/Windowing/Windowing/Silk.NET.Windowing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<TargetFrameworks Condition="$(SilkAndroidDisabled)' != 'true'">$(TargetFrameworks);net8.0-android;net9.0-android</TargetFrameworks>
<TargetFrameworks Condition="$(SilkiOSDisabled)' != 'true'">$(TargetFrameworks);net8.0-ios;net9.0-ios</TargetFrameworks>
<TargetFrameworks Condition="'$(SilkAndroidDisabled)' != 'true'">$(TargetFrameworks);net8.0-android;net9.0-android</TargetFrameworks>
<TargetFrameworks Condition="'$(SilkiOSDisabled)' != 'true'">$(TargetFrameworks);net8.0-ios;net9.0-ios</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<NoWarn>0067</NoWarn> <!-- TODO -->
Expand Down

0 comments on commit 94647c1

Please sign in to comment.