Skip to content

Commit

Permalink
Copy nuget.pdb files to the drop directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
feiling committed Jul 17, 2015
1 parent 577beac commit 00c4abb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Build/Build.proj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Go" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildProjectDirectory)\Build.tasks" />

Expand Down Expand Up @@ -255,11 +255,11 @@

<Target Name="CopyExecutableOutputToDropDirectory">
<ItemGroup>
<ExecutableFiles Include="$(ExeBuildDirectory)\Merged\NuGet.exe;$(NuGetSrcRoot)\CommandLine\Properties\*.nuspec" />
<ExecutableFiles Include="$(ExeBuildDirectory)\Merged\NuGet.exe;$(ExeBuildDirectory)\Merged\NuGet.pdb;$(NuGetSrcRoot)\CommandLine\Properties\*.nuspec" />
</ItemGroup>
<Message Text="Copying the NuGet Console output to $(ExeDropDirectory)" />
<Copy ContinueOnError="false" SourceFiles="@(ExecutableFiles)" DestinationFolder="$(ExeDropDirectory)" />
<Copy Condition="Exists('$(ExeBuildDirectory)\Signed\NuGet.exe')" ContinueOnError="false" SourceFiles="$(ExeBuildDirectory)\Signed\NuGet.exe" DestinationFolder="$(ExeDropDirectory)\Signed" />
<Copy Condition="Exists('$(ExeBuildDirectory)\Signed\NuGet.exe')" ContinueOnError="false" SourceFiles="$(ExeBuildDirectory)\Signed\NuGet.exe;$(ExeBuildDirectory)\Signed\NuGet.pdb" DestinationFolder="$(ExeDropDirectory)\Signed" />
</Target>

<Target Name="CopyServerExtensionsOutputToDropDirectory">
Expand Down

0 comments on commit 00c4abb

Please sign in to comment.