Skip to content

Commit

Permalink
Fix conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmorato committed Jun 29, 2024
1 parent d52a9c9 commit 500f3d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/OpenDDSharp.UnitTest/OpenDDSharp.UnitTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<IsARM64 Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)' == 'Arm64'">true</IsARM64>
<IsX64 Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)' == 'X64'">true</IsX64>
<TargetFrameworks Condition="'$(IsARM64)'!='true' And '$(Configuration)'!='Debug'">net462;net47;net471;net472;net48;net6.0;net7.0;net8.0;</TargetFrameworks>
<TargetFrameworks Condition="'$(IsARM64)'=='true' And '$(Configuration)'!='Debug'">net6.0;net7.0;net8.0;</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)'=='Debug'">net6.0;net8.0;</TargetFrameworks>
<TargetFrameworks Condition="('$(IsARM64)' != 'true') And ('$(Configuration)' == 'Release')">net462;net47;net471;net472;net48;net6.0;net7.0;net8.0;</TargetFrameworks>
<TargetFrameworks Condition="('$(IsARM64)' == 'true') And ('$(Configuration)' == 'Release')">net6.0;net7.0;net8.0;</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)' == 'Debug'">net6.0;net8.0;</TargetFrameworks>
<IsPackable>false</IsPackable>
<CodeAnalysisRuleSet>..\..\OpenDDSharpRules.ruleset</CodeAnalysisRuleSet>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down

0 comments on commit 500f3d9

Please sign in to comment.