Skip to content

Commit

Permalink
Fixed global PropertyGroup order
Browse files Browse the repository at this point in the history
  • Loading branch information
slxdy committed Nov 19, 2024
1 parent 0b4ff24 commit c8d2b95
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<Project>
<PropertyGroup>
<Version>4.1.0</Version>
<TargetFrameworks>net9.0;net9.0-windows</TargetFrameworks>
<TargetFramework Condition="'$(RuntimeIdentifier.StartsWith(`win-`))' != 'true'">net9.0</TargetFramework>
<TargetFramework Condition="'$(RuntimeIdentifier.StartsWith(`win-`))' == 'true'">net9.0-windows</TargetFramework>

<!-- Sets the default identifiers. They can be overridden -->
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
<RuntimeIdentifier Condition="'$([MSBuild]::IsOSUnixLike())' == 'false'">win-x64</RuntimeIdentifier>
<RuntimeIdentifier Condition="'$([MSBuild]::IsOSUnixLike())' == 'true'">linux-x64</RuntimeIdentifier>

<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
<TargetFrameworks>net9.0;net9.0-windows</TargetFrameworks>
<TargetFramework Condition="'$(RuntimeIdentifier.StartsWith(`win-`))' != 'true'">net9.0</TargetFramework>
<TargetFramework Condition="'$(RuntimeIdentifier.StartsWith(`win-`))' == 'true'">net9.0-windows</TargetFramework>

<Nullable>enable</Nullable>
<AvaloniaVersion>11.2.1</AvaloniaVersion>
Expand Down

0 comments on commit c8d2b95

Please sign in to comment.