2019-10-17 03:22:44 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
|
|
|
<Target Name="Info_DirectoryBuildProps" BeforeTargets="Build" >
|
|
|
|
<Message Text="INFO) Directory.Build.props imported by $(MSBuildProjectName)." Importance="high"/>
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2019-10-19 02:24:51 +03:00
|
|
|
<!-- EnlistmentRoot is used to determine where to put BIN and OBJ directories. -->
|
2019-10-17 03:22:44 +03:00
|
|
|
<EnlistmentRoot>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'EnlistmentRoot.marker'))</EnlistmentRoot>
|
2019-10-19 02:24:51 +03:00
|
|
|
<!-- SourceRoot is used to reference project dependencies (ex: *.props). -->
|
2019-10-17 03:22:44 +03:00
|
|
|
<SourceRoot>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'SourceRoot.marker'))</SourceRoot>
|
|
|
|
|
|
|
|
<BinRoot>$(EnlistmentRoot)\..\bin</BinRoot>
|
|
|
|
<BinRoot>$([System.IO.Path]::GetFullPath( $(BinRoot) ))</BinRoot>
|
|
|
|
|
|
|
|
<ObjRoot>$(EnlistmentRoot)\..\obj</ObjRoot>
|
|
|
|
<ObjRoot>$([System.IO.Path]::GetFullPath( $(ObjRoot) ))</ObjRoot>
|
|
|
|
|
|
|
|
<RelativeOutputPathBase>$(MSBuildProjectDirectory.Substring($(SourceRoot.Length)))</RelativeOutputPathBase>
|
|
|
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
|
|
|
<OutputPath>$(BinRoot)\$(Configuration)\$(RelativeOutputPathBase)</OutputPath>
|
|
|
|
<OutputPath>$([System.IO.Path]::GetFullPath( $(OutputPath) ))\</OutputPath>
|
|
|
|
|
|
|
|
<!-- Collect all NuGet packages in the same folder for convenience during testing -->
|
|
|
|
<PackageOutputDir>$(BinRoot)\$(Configuration)\NuGet</PackageOutputDir>
|
|
|
|
<PackageOutputPath>$(PackageOutputDir)</PackageOutputPath>
|
|
|
|
|
|
|
|
<AppxPackageDir>$(OutputPath)</AppxPackageDir>
|
|
|
|
|
|
|
|
<IntermediateOutputPath>$(ObjRoot)\$(Configuration)\$(RelativeOutputPathBase)</IntermediateOutputPath>
|
|
|
|
<IntermediateOutputPath>$([System.IO.Path]::GetFullPath( $(IntermediateOutputPath) ))\</IntermediateOutputPath>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
</Project>
|