summaryrefslogtreecommitdiff
path: root/tests/dir.props
diff options
context:
space:
mode:
authorDavis Goodin <dagood@users.noreply.github.com>2017-01-06 17:00:32 -0600
committerGitHub <noreply@github.com>2017-01-06 17:00:32 -0600
commit6784aa67f2ef7350770fdecefc2078e862fed3bb (patch)
treee201b2a747cf22f0aa70669fefddec90310e4107 /tests/dir.props
parente24872511946ed61ba15fa33a9a23eac3dba3969 (diff)
downloadcoreclr-6784aa67f2ef7350770fdecefc2078e862fed3bb.tar.gz
coreclr-6784aa67f2ef7350770fdecefc2078e862fed3bb.tar.bz2
coreclr-6784aa67f2ef7350770fdecefc2078e862fed3bb.zip
Update CLI to 1.0.0-preview2-1-003182, BuildTools to 1.0.27-prerelease-01205-03 (#8829)
* Update CLI to 1.0.0-preview2-1-003182, BuildTools to 1.0.27-prerelease-01205-03 * Add BuildVersion.targets and required properties to test directory's dir.props
Diffstat (limited to 'tests/dir.props')
-rw-r--r--tests/dir.props16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/dir.props b/tests/dir.props
index 43026caed2..dcaee88fc3 100644
--- a/tests/dir.props
+++ b/tests/dir.props
@@ -33,6 +33,22 @@
<SkipImportILTargets>true</SkipImportILTargets>
</PropertyGroup>
+ <!-- Common properties -->
+ <PropertyGroup>
+ <RootBinDir>$(__RootBinDir)\</RootBinDir>
+ <RootBinDir Condition="'$(__RootBinDir)'==''">$(ProjectDir)bin\</RootBinDir>
+ </PropertyGroup>
+
+ <!-- Output paths -->
+ <PropertyGroup>
+ <BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)' == ''">$(RootBinDir)obj\</BaseIntermediateOutputPath>
+ <IntermediateOutputPath Condition="'$(IntermediateOutputPath)' == ''">$(BaseIntermediateOutputPath)\$(BuildOS).$(BuildArch).$(BuildType)</IntermediateOutputPath>
+ <OutputPath Condition="'$(OutputPath)' == ''">$(BaseIntermediateOutputPath)\$(BuildOS).$(BuildArch).$(BuildType)</OutputPath>
+ <FinalOutputPath Condition="'$(FinalOutputPath)' == ''">$(BinDir)</FinalOutputPath>
+ </PropertyGroup>
+
+ <Import Condition="Exists('$(ToolsDir)BuildVersion.targets')" Project="$(ToolsDir)BuildVersion.targets" />
+
<!-- Provides properties for dependency versions and configures dependency verification/auto-upgrade. -->
<Import Project="$(ProjectDir)..\dependencies.props" />