Skip to content

Commit

Permalink
Fix proxy AfterBuild target to handle spaces in path
Browse files Browse the repository at this point in the history
Fixes #56
  • Loading branch information
Meivyn authored Jan 16, 2024
1 parent 607ab51 commit 145879a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Doorstop/Proxy/Proxy.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,6 @@
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<Target Name="AfterBuild">
<Exec Command="$([System.IO.Path]::GetFullPath($([System.IO.Path]::Combine($(MSBuildProjectDirectory), '..', 'BuildUtils', 'ducible.exe')))) $(OutDir)$(MSBuildProjectName).dll $(OutDir)$(MSBuildProjectName).pdb" />
<Exec Command="&quot;$([System.IO.Path]::GetFullPath($([System.IO.Path]::Combine($(MSBuildProjectDirectory), '..', 'BuildUtils', 'ducible.exe'))))&quot; &quot;$(OutDir)$(MSBuildProjectName).dll&quot; &quot;$(OutDir)$(MSBuildProjectName).pdb&quot;" />
</Target>
</Project>
</Project>

0 comments on commit 145879a

Please sign in to comment.