Fix slashes and missing switches in build steps

crumbl3d
Clive Galway 5 years ago
parent 5cc16a3a36
commit f6082bcc9d

@ -48,10 +48,10 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>if not exist "$(TargetDir)\x86" mkdir "$(TargetDir)\x86"
if not exist "$(TargetDir)\x64" mkdir "$(TargetDir)\x64"
if not exist "$(TargetDir)\x86\interception.dll" xcopy "$(SolutionDir)\dependencies\x86\interception.dll" "$(TargetDir)\x86"
if not exist "$(TargetDir)\x64\interception.dll" xcopy "$(SolutionDir)\dependencies\x64\interception.dll" "$(TargetDir)\x64"</PreBuildEvent>
<PreBuildEvent>if not exist "$(TargetDir)x86" mkdir "$(TargetDir)x86"
if not exist "$(TargetDir)x64" mkdir "$(TargetDir)x64"
if not exist "$(TargetDir)x86\interception.dll" xcopy /Q /Y "$(SolutionDir)dependencies\x86\interception.dll" "$(TargetDir)x86"
if not exist "$(TargetDir)x64\interception.dll" xcopy /Q /Y "$(SolutionDir)dependencies\x64\interception.dll" "$(TargetDir)x64"</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>xcopy /Q /Y "$(TargetPath)" "$(SolutionDir)..\Lib"</PostBuildEvent>

Loading…
Cancel
Save