summaryrefslogtreecommitdiff
path: root/dir.props
diff options
context:
space:
mode:
authorAaron Robinson <arobins@microsoft.com>2019-05-12 17:23:51 -0700
committerGitHub <noreply@github.com>2019-05-12 17:23:51 -0700
commit42a4b41cae99215da49388dad4dc2810f83365c3 (patch)
treedd9fe6f7efc31156827f814af99f885d2edc6c8a /dir.props
parent88625deceacc8c5233b7e56d574455be68f3ea9b (diff)
downloadcoreclr-42a4b41cae99215da49388dad4dc2810f83365c3.tar.gz
coreclr-42a4b41cae99215da49388dad4dc2810f83365c3.tar.bz2
coreclr-42a4b41cae99215da49388dad4dc2810f83365c3.zip
Cleanup some build files (#24539)
* Remove OsEnvironment, PackagesDir, and CoreCLRBinDir properties * Replace usage of __BuildArch with BuildArch * Simplify test timing out on ARM64
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props12
1 files changed, 0 insertions, 12 deletions
diff --git a/dir.props b/dir.props
index 4da47073fc..51bb050ae8 100644
--- a/dir.props
+++ b/dir.props
@@ -8,14 +8,6 @@
<LangVersion>8.0</LangVersion>
<UseSharedCompilation>true</UseSharedCompilation>
</PropertyGroup>
-
- <!--
- $(OS) is set to Unix/Windows_NT. This comes from an environment variable on Windows and MSBuild on Unix.
- -->
- <PropertyGroup>
- <OsEnvironment Condition="'$(OsEnvironment)'=='' and '$(OS)'=='OSX'">Unix</OsEnvironment>
- <OsEnvironment Condition="'$(OsEnvironment)'==''">$(OS)</OsEnvironment>
- </PropertyGroup>
<!-- Set the kind of PDB to Portable -->
<PropertyGroup>
@@ -52,10 +44,6 @@
<!-- This name is used to create a GIT repository URL https://github.com/dotnet/$(GitHubRepositoryName) used to find source code for debugging -->
<GitHubRepositoryName Condition="'$(GitHubRepositoryName)' == ''">coreclr</GitHubRepositoryName>
- <PackagesDir>$(DotNetRestorePackagesPath)</PackagesDir>
- <PackagesDir Condition="'$(PackagesDir)'=='' and '$(__PackagesDir)'!=''">$(__PackagesDir)\</PackagesDir>
- <PackagesDir Condition="'$(PackagesDir)'==''">$(ProjectDir)\.packages\</PackagesDir>
-
<RootBinDir>$(__RootBinDir)\</RootBinDir>
<RootBinDir Condition="'$(__RootBinDir)'==''">$(ProjectDir)bin\</RootBinDir>