diff options
author | Alexander Vostres <alexx999@gmail.com> | 2015-02-04 19:47:56 +0200 |
---|---|---|
committer | Alexander Vostres <alexx999@gmail.com> | 2015-02-04 19:47:56 +0200 |
commit | 6e8a3160d49e698b867a57dc3d6c5bc3b1c98102 (patch) | |
tree | 81617579270e96e8cc96ace75adc5c5654a54094 /build.proj | |
parent | 864d5c9f25ad3556b1dc294d148e7236ba93a2f4 (diff) | |
download | coreclr-6e8a3160d49e698b867a57dc3d6c5bc3b1c98102.tar.gz coreclr-6e8a3160d49e698b867a57dc3d6c5bc3b1c98102.tar.bz2 coreclr-6e8a3160d49e698b867a57dc3d6c5bc3b1c98102.zip |
Fix build failure with message "Cannot create a package that has no dependencies nor content." #68
Diffstat (limited to 'build.proj')
-rw-r--r-- | build.proj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.proj b/build.proj index 0dc622293d..e15412c151 100644 --- a/build.proj +++ b/build.proj @@ -57,7 +57,7 @@ <Target Name="BuildNuGetPackages" AfterTargets="Build" Condition="'$(BuildNugetPackage)' != 'false'"> <MakeDir Directories="$(PackagesBinDir)" Condition="!Exists('$(PackagesBinDir)')" /> <Copy SourceFiles="$(NuSpecPathSrc)" DestinationFiles="$(NuSpecPathBin)" /> - <Exec Command="$(NuGetToolPath) pack "%(NuSpecs.Identity)" -NoPackageAnalysis -OutputDirectory "$(PackagesBinDir)"" /> + <Exec Command="$(NuGetToolPath) pack "%(NuSpecs.Identity)" -NoPackageAnalysis -NoDefaultExcludes -OutputDirectory "$(PackagesBinDir)"" /> </Target> <ItemGroup> |