forked from LavaGang/MelonLoader.Installer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
19 lines (15 loc) · 965 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
19 lines (15 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project>
<PropertyGroup>
<BaseVersion>4.2.0</BaseVersion> <!-- This should be adjusted after every release -->
<BuildNumber>0</BuildNumber>
<Version>$(BaseVersion).$(BuildNumber)</Version>
<TargetFramework>net9.0</TargetFramework>
<!-- Sets the default identifiers. They can be overridden -->
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<RuntimeIdentifier Condition="'$([MSBuild]::IsOSUnixLike())' == 'false'">win-x64</RuntimeIdentifier>
<RuntimeIdentifier Condition="'$([MSBuild]::IsOSUnixLike())' == 'true'">linux-x64</RuntimeIdentifier>
<RuntimeIdentifier Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">osx-x64</RuntimeIdentifier>
<Nullable>enable</Nullable>
<AvaloniaVersion>11.3.3</AvaloniaVersion>
</PropertyGroup>
</Project>