Skip to content

Commit

Permalink
Fix AotCompatibility.Tests for net9
Browse files Browse the repository at this point in the history
  • Loading branch information
Keegan Caruso committed Aug 15, 2024
1 parent 1e2a320 commit 0c4f8b7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

<PropertyGroup>
<!-- This test only needs to run on .NET -->
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks Condition="'$(TargetNet9)'== 'True'">$(TargetFramework); net9.0</TargetFrameworks>
<TargetFrameworks Condition="'$(TargetNet9)' != 'True'">net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(TargetNet9)' == 'True'">net9.0</TargetFrameworks>
<langversion>12</langversion>
<Version>1.0.0-preview</Version>
</PropertyGroup>
Expand Down

0 comments on commit 0c4f8b7

Please sign in to comment.