ispy 编译笔记

xcopy "$(ProjectDir)dlls\$(PlatformName)\*.*" "$(ProjectDir)$(OutDir)" /Y
if NOT %ComputerName% == DEVPC GOTO:end
REM signing certificate is not part of the solution
if $(PlatformName) == "x86" (
call "D:\projects\ispy\signing\iSpy.bat"
)
 if "$(PlatformName)" == "x64" (
call "D:\projects\ispy\signing\iSpy64.bat"
)
end if
:end


if "$(ConfigurationName)"=="Release" (
 del "$(ProjectDir)$(OutDir)*.pdb"
 del "$(ProjectDir)$(OutDir)*.vshost.exe"
)

del "$(ProjectDir)$(OutDir)*.xml"

 

你可能感兴趣的:(ispy 编译笔记)