diff options
author | sr55 <[email protected]> | 2017-09-03 17:46:53 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2017-09-03 17:46:53 +0100 |
commit | 8ed1ba624a71b0a363a69012f72491b0e60cdd9c (patch) | |
tree | ef1ffcf915e4cc363dbb774b117c1ca69d4de9bb /win/CS/HandBrakeAppX | |
parent | af03073a0d59b5568608eea5fc85fababca95f0d (diff) |
WinGui: AppX Builder: Adding pre-build event to copy the latest release files to the win32 folder.
Diffstat (limited to 'win/CS/HandBrakeAppX')
-rw-r--r-- | win/CS/HandBrakeAppX/HandBrakeAppX.jsproj | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/win/CS/HandBrakeAppX/HandBrakeAppX.jsproj b/win/CS/HandBrakeAppX/HandBrakeAppX.jsproj index 4151999da..57ccce3b5 100644 --- a/win/CS/HandBrakeAppX/HandBrakeAppX.jsproj +++ b/win/CS/HandBrakeAppX/HandBrakeAppX.jsproj @@ -81,9 +81,12 @@ <!-- To modify your build process, add your task inside one of the targets below then uncomment that target and the DisableFastUpToDateCheck PropertyGroup. Other similar extension points exist, see Microsoft.Common.targets. --> - <!--<Target Name="BeforeBuild"> + <Target Name="BeforeBuild"> + <Exec Command="xcopy ..\HandBrakeWPF\bin\$(Platform)\Release\*.exe win32 /I /Y" /> + <Exec Command="xcopy ..\HandBrakeWPF\bin\$(Platform)\Release\*.dll win32 /I /Y" /> + <Exec Command="xcopy ..\HandBrakeWPF\bin\$(Platform)\Release\*.config win32 /I /Y" /> </Target> - <Target Name="AfterBuild"> + <!-- <Target Name="AfterBuild"> </Target> <PropertyGroup> <DisableFastUpToDateCheck>true</DisableFastUpToDateCheck> |