summaryrefslogtreecommitdiff
path: root/build.proj
diff options
context:
space:
mode:
authorMatt Mitchell <mmitche@microsoft.com>2015-02-13 12:26:31 -0800
committerMatt Mitchell <mmitche@microsoft.com>2015-02-13 12:26:31 -0800
commit95d9e32a51d307e98ac8a64c23824a1e2be67781 (patch)
tree4ca60bae36c7f31f0b1dd90dcfeab151178bf097 /build.proj
parenteb2a67fe31cd13aa03335c365d75d639514992f1 (diff)
downloadcoreclr-95d9e32a51d307e98ac8a64c23824a1e2be67781.tar.gz
coreclr-95d9e32a51d307e98ac8a64c23824a1e2be67781.tar.bz2
coreclr-95d9e32a51d307e98ac8a64c23824a1e2be67781.zip
When building debug, author the development package with an appropriate name
Diffstat (limited to 'build.proj')
-rw-r--r--build.proj6
1 files changed, 4 insertions, 2 deletions
diff --git a/build.proj b/build.proj
index e6ad3c5d88..b1d6dfacaf 100644
--- a/build.proj
+++ b/build.proj
@@ -46,12 +46,14 @@
<!-- Setup Nuget properties -->
<ItemGroup>
<NuSpecSrcs Include="$(PackagesDir)Microsoft.DotNet.CoreCLR.nuspec" />
- <NuSpecSrcs Include="$(PackagesDir)Microsoft.DotNet.CoreCLR.Development.nuspec" />
+ <NuSpecSrcs Condition="'$(Configuration)'=='Release'" Include="$(PackagesDir)Microsoft.DotNet.CoreCLR.Development.nuspec" />
+ <NuSpecSrcs Condition="'$(Configuration)'=='Debug'" Include="$(PackagesDir)Microsoft.DotNet.CoreCLR.Debug.Development.nuspec" />
</ItemGroup>
<ItemGroup>
<!-- Backslash appended, see note in dir.props about the PackagesBinDir property -->
<NuSpecs Include="$(PackagesBinDir)\Microsoft.DotNet.CoreCLR.nuspec" />
- <NuSpecs Include="$(PackagesBinDir)\Microsoft.DotNet.CoreCLR.Development.nuspec" />
+ <NuSpecs Condition="'$(Configuration)'=='Release'" Include="$(PackagesBinDir)\Microsoft.DotNet.CoreCLR.Development.nuspec" />
+ <NuSpecs Condition="'$(Configuration)'=='Debug'" Include="$(PackagesBinDir)\Microsoft.DotNet.CoreCLR.Debug.Development.nuspec" />
</ItemGroup>
<!-- Generate Microsoft.Dotnet.CoreCLR nuget package and associated development package -->