-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (23 loc) · 1.23 KB
/
Copy pathDirectory.Build.props
File metadata and controls
25 lines (23 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Condition="!Exists('packages.config')">
<Version>3.4.255</Version>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<__Platform Condition="'$(Platform)' == 'Win32'">x86</__Platform>
<__Platform Condition="'$(Platform)' != 'Win32'">$(Platform)</__Platform>
</PropertyGroup>
<PropertyGroup>
<FullPlatform>$(__Platform)</FullPlatform>
<BinariesDirectory>$(MSBuildThisFileDirectory)bin</BinariesDirectory>
<OutputPath>$(BinariesDirectory)\$(FullPlatform)\$(Configuration)\$(MSBuildProjectName)\$(TargetFramework)</OutputPath>
<OutputPath Condition="'$(TrayIconOneCore)' == 'true'">$(OutputPath)\onecore\$(ConfigurationType)</OutputPath>
<OutputPath Condition="'$(TrayIconOneCore)' != 'true'">$(OutputPath)\$(ConfigurationType)</OutputPath>
<OutDir>$(OutputPath)\</OutDir>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
</Project>