File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 4343 <Target Name =" PostBuild" AfterTargets =" PostBuildEvent" >
4444 <Exec Command =" powershell -command " (Get-FileHash -Algorithm SHA512 '$(TargetPath)').Hash + ' *' + (Split-Path '$(TargetPath)' -leaf) | Out-File -filePath '$(TargetPath).sha512' -encoding Default"
 powershell -command " ((Get-Content '$(TargetPath).sha512') -join \" `n\" ) + \" `n\" | Set-Content -NoNewline '$(TargetPath).sha512'"
 if $(ConfigurationName) == Release (
 cd /d $(SolutionDir)
 if NOT EXIST " publish\" mkdir " publish"
 if NOT EXIST " publish\unsigned" mkdir " publish\unsigned"
 del /q " publish\unsigned\*"
 copy /y " $(TargetPath)" " publish\unsigned" 
 copy /y " $(TargetPath).sha512" " publish\unsigned" 
 )" />
4545 </Target >
46+ <Target Name =" PreBuild" BeforeTargets =" PreBuildEvent" >
47+ <Exec Command =" cd $(TargetDir)
 del DEL /Q /F /S " *.sha512" " />
48+ </Target >
4649</Project >
You can’t perform that action at this time.
0 commit comments