Skip to content

Commit

Permalink
Only net6/8 for Debug configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmorato committed Jun 28, 2024
1 parent 27b05e0 commit 26f2a80
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tests/OpenDDSharp.UnitTest/OpenDDSharp.UnitTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<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)'=='Release'">net462;net47;net471;net472;net48;net6.0;net7.0;net8.0;</TargetFrameworks>
<TargetFrameworks Condition="'$(IsARM64)'=='true' Or '$(Configuration)'=='Debug'">net6.0;net7.0;net8.0;</TargetFrameworks>
<TargetFrameworks Condition="'$(IsARM64)'=='true' Or '$(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 26f2a80

Please sign in to comment.