Skip to content

Commit

Permalink
TargetDir を quot してもなんかエラーになるケースを見つけたので OutDir を使うようにした
Browse files Browse the repository at this point in the history
Fix issue #1
#1
  • Loading branch information
kazuk committed Jul 12, 2013
1 parent 11af338 commit e919621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NuGetCustomBuilder/ProjectTemplate.csproj
Expand Up @@ -65,7 +65,7 @@
<ItemGroup>
<NuGetExe Include="$(ProjectDir)..\packages\Nuget.CommandLine.*\**\NuGet.exe" />
</ItemGroup>
<Exec Command="&quot;@(NuGetExe)&quot; pack $safeprojectname$.nuspec -OutputDirectory $(TargetDir)" />
<Exec Command="&quot;@(NuGetExe)&quot; pack $safeprojectname$.nuspec -OutputDirectory $(OutDir)" />
<ItemGroup>
<LogLine Include="$(TargetDir)\*.nupkg" />
</ItemGroup>
Expand Down

0 comments on commit e919621

Please sign in to comment.