diff options
author | sr55 <[email protected]> | 2017-09-03 18:53:29 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2017-09-06 19:48:02 +0100 |
commit | 33c4731f38e205075e3b7ef9d068c506a7d32d3e (patch) | |
tree | e4d4b7bc028f729adf9fdfd2c9ef3de11308bb8f /win/CS/HandBrakeAppX | |
parent | fe2e79c6bcfc62c1685551e359889c87dd67f74e (diff) |
WinGui: Add BeforeBuild Step to copy required files for the AppX generator project
Diffstat (limited to 'win/CS/HandBrakeAppX')
-rw-r--r-- | win/CS/HandBrakeAppX/HandBrakeAppX.jsproj | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrakeAppX/HandBrakeAppX.jsproj b/win/CS/HandBrakeAppX/HandBrakeAppX.jsproj index 57ccce3b5..5631ac3f5 100644 --- a/win/CS/HandBrakeAppX/HandBrakeAppX.jsproj +++ b/win/CS/HandBrakeAppX/HandBrakeAppX.jsproj @@ -82,9 +82,9 @@ that target and the DisableFastUpToDateCheck PropertyGroup. Other similar extension points exist, see Microsoft.Common.targets. --> <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" /> + <Exec Command="xcopy ..\HandBrakeWPF\bin\$(Platform)\$(Configuration)\*.exe win32 /I /Y" /> + <Exec Command="xcopy ..\HandBrakeWPF\bin\$(Platform)\$(Configuration)\*.dll win32 /I /Y" /> + <Exec Command="xcopy ..\HandBrakeWPF\bin\$(Platform)\$(Configuration)\*.config win32 /I /Y" /> </Target> <!-- <Target Name="AfterBuild"> </Target> |