-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
13 lines (12 loc) · 862 Bytes
/
Directory.Build.props
File metadata and controls
13 lines (12 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LocalVersion>99.99.99-dev</LocalVersion>
<IsLocal>true</IsLocal>
<RootDir>$(MSBuildThisFileDirectory)</RootDir>
<PackageOutputPath>$(RootDir)/.out/packages</PackageOutputPath>
<IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows>
<IsOSX Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">true</IsOSX>
<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">true</IsLinux>
</PropertyGroup>
</Project>