summaryrefslogtreecommitdiff
path: root/dir.props
diff options
context:
space:
mode:
authorAaron Robinson <arobins@microsoft.com>2019-05-10 14:07:11 -0700
committerGitHub <noreply@github.com>2019-05-10 14:07:11 -0700
commit44d22bd22ffc72ec0a89b50b7de96b45a470b1e9 (patch)
tree83a2a4b700a519d05de29d5b2dd35058a600367f /dir.props
parentc746a224d029f84556298893e8f2789df4bc3dda (diff)
downloadcoreclr-44d22bd22ffc72ec0a89b50b7de96b45a470b1e9.tar.gz
coreclr-44d22bd22ffc72ec0a89b50b7de96b45a470b1e9.tar.bz2
coreclr-44d22bd22ffc72ec0a89b50b7de96b45a470b1e9.zip
Properly set the nuget cache for the repo (#24505)
* Properly set the nuget cache for the repo * Change coreclr NuGet package cache from "./packages" to "./.packages"
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props7
1 files changed, 3 insertions, 4 deletions
diff --git a/dir.props b/dir.props
index 2792ac731b..4da47073fc 100644
--- a/dir.props
+++ b/dir.props
@@ -17,10 +17,9 @@
<OsEnvironment Condition="'$(OsEnvironment)'==''">$(OS)</OsEnvironment>
</PropertyGroup>
- <!-- Set the kind of PDB to Portable and turn on SourceLink (fetching source from GitHub) -->
+ <!-- Set the kind of PDB to Portable -->
<PropertyGroup>
- <DebugType Condition="'$(DebugType)' == ''">Portable</DebugType>
- <UseSourceLink>true</UseSourceLink>
+ <DebugType Condition="'$(DebugType)' == ''">Portable</DebugType>
</PropertyGroup>
<!-- Version numbers for both managed & native binaries -->
@@ -55,7 +54,7 @@
<PackagesDir>$(DotNetRestorePackagesPath)</PackagesDir>
<PackagesDir Condition="'$(PackagesDir)'=='' and '$(__PackagesDir)'!=''">$(__PackagesDir)\</PackagesDir>
- <PackagesDir Condition="'$(PackagesDir)'==''">$(ProjectDir)packages\</PackagesDir>
+ <PackagesDir Condition="'$(PackagesDir)'==''">$(ProjectDir)\.packages\</PackagesDir>
<RootBinDir>$(__RootBinDir)\</RootBinDir>
<RootBinDir Condition="'$(__RootBinDir)'==''">$(ProjectDir)bin\</RootBinDir>