Browse Source

Fix proxy `AfterBuild` target to handle spaces in path

Fixes #56
feature/system-text-json
Meivyn 3 months ago
committed by GitHub
parent
commit
145879a186
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Doorstop/Proxy/Proxy.vcxproj

+ 2
- 2
Doorstop/Proxy/Proxy.vcxproj View File

@ -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>

Loading…
Cancel
Save