Skip to content

Commit

Permalink
fix (Laerdal.Dfu.csproj): fix a bug which was causing the generated m…
Browse files Browse the repository at this point in the history
…accatalyst nuget to target an sdk version other than 17.0 which is the desired one
  • Loading branch information
ksidirop-laerdal committed Nov 13, 2024
1 parent bf13027 commit c61d446
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Laerdal.Dfu/Laerdal.Dfu.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
<SupportedOSPlatformVersion Condition=" '$(IsForIOS)' == 'true' ">14.2</SupportedOSPlatformVersion>

<!-- maccatalyst you will need specific workloads though dotnet workload install maui -/-version 8.0.402 -->
<TargetPlatformVersion Condition=" '$(IsNet8MacCatalyst)' == 'true' ">17.0</TargetPlatformVersion>
<TargetPlatformMinVersion Condition=" '$(IsNet8MacCatalyst)' == 'true' ">13.1</TargetPlatformMinVersion>
<SupportedOSPlatformVersion Condition=" '$(IsNet8MacCatalyst)' == 'true' ">13.1</SupportedOSPlatformVersion>
<TargetPlatformVersion Condition=" '$(IsForMacCatalyst)' == 'true' ">17.0</TargetPlatformVersion>
<TargetPlatformMinVersion Condition=" '$(IsForMacCatalyst)' == 'true' ">13.1</TargetPlatformMinVersion>
<SupportedOSPlatformVersion Condition=" '$(IsForMacCatalyst)' == 'true' ">13.1</SupportedOSPlatformVersion>
</PropertyGroup>

<!-- Android -->
Expand Down

0 comments on commit c61d446

Please sign in to comment.