summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtgodbe <wigodbe@microsoft.com>2017-01-12 16:35:45 -0800
committerwtgodbe <wigodbe@microsoft.com>2017-01-13 13:45:42 -0800
commit0ee3c2676b79c15370d3ae30b62fd4ed5bbbafd3 (patch)
tree2bfa6eed46569ffab2b6a726c47287c759000942
parent9d01c0e02ea49a2cc12ddfb520964285402a775c (diff)
downloadcoreclr-0ee3c2676b79c15370d3ae30b62fd4ed5bbbafd3.tar.gz
coreclr-0ee3c2676b79c15370d3ae30b62fd4ed5bbbafd3.tar.bz2
coreclr-0ee3c2676b79c15370d3ae30b62fd4ed5bbbafd3.zip
Stop build from leaving localpkg cache in src
-rw-r--r--.gitignore1
-rw-r--r--dir.props2
2 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 5ebba36867..702c37daa3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,7 +24,6 @@ build/
bld/
[Bb]in/
[Oo]bj/
-localpkg/
msbuild.log
# add back architecture directories ignored in 'Build results'
diff --git a/dir.props b/dir.props
index b9bf0816e4..ec09b00597 100644
--- a/dir.props
+++ b/dir.props
@@ -170,6 +170,8 @@
<MinOSForArch>win7</MinOSForArch>
<MinOSForArch Condition="'$(PackagePlatform)' == 'arm'">win8</MinOSForArch>
<MinOSForArch Condition="'$(PackagePlatform)' == 'arm64'">win10</MinOSForArch>
+ <!-- This property must be set to disable local package installation -->
+ <SkipInstallLocallyBuiltPackages>true</SkipInstallLocallyBuiltPackages>
<!-- Define packaging attributes for cross target components -->
<HasCrossTargetComponents Condition="'$(TargetsWindows)' == 'true' and ('$(PackagePlatform)' =='arm64' or '$(PackagePlatform)' =='arm')">true</HasCrossTargetComponents>