diff options
author | sr55 <[email protected]> | 2021-03-06 21:59:05 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2021-03-06 21:59:05 +0000 |
commit | 0f84089ef80e29124ede67a84716600d06167518 (patch) | |
tree | 4dc91867c1c13a5fbc484bba40d4cc570e711f7b /win/CS | |
parent | a37903c8fd657e589c3215e279f3d537212e3755 (diff) |
WinGui: Tidyup of projects and installers. Minor reduciton in filesize.
Diffstat (limited to 'win/CS')
-rw-r--r-- | win/CS/HandBrake.Worker/App.config | 6 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Installer/Installer64.nsi | 3 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi | 3 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/app.config | 11 | ||||
-rw-r--r-- | win/CS/build.xml | 8 |
5 files changed, 4 insertions, 27 deletions
diff --git a/win/CS/HandBrake.Worker/App.config b/win/CS/HandBrake.Worker/App.config deleted file mode 100644 index 4bfa00561..000000000 --- a/win/CS/HandBrake.Worker/App.config +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<configuration> - <startup> - <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/> - </startup> -</configuration> diff --git a/win/CS/HandBrakeWPF/Installer/Installer64.nsi b/win/CS/HandBrakeWPF/Installer/Installer64.nsi index 63c0a7263..bb53c1653 100644 --- a/win/CS/HandBrakeWPF/Installer/Installer64.nsi +++ b/win/CS/HandBrakeWPF/Installer/Installer64.nsi @@ -120,9 +120,6 @@ Section "HandBrake" SectionApp File "*.exe"
File "*.dll"
File "*.template"
- File "*.config"
- File "*.pdb"
- File "*.config"
; Copy the standard doc set into the doc folder
SetOutPath "$INSTDIR\doc"
diff --git a/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi b/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi index 25e0ac74a..237187b46 100644 --- a/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi +++ b/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi @@ -118,9 +118,6 @@ Section "HandBrake" SectionApp File "*.exe"
File "*.dll"
File "*.template"
- File "*.config"
- File "*.pdb"
- File "*.config"
; Copy the standard doc set into the doc folder
SetOutPath "$INSTDIR\doc"
diff --git a/win/CS/HandBrakeWPF/app.config b/win/CS/HandBrakeWPF/app.config deleted file mode 100644 index 750cd7f5b..000000000 --- a/win/CS/HandBrakeWPF/app.config +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?>
-<configuration>
- <startup>
- <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
- </startup>
- <runtime>
- <!-- Required for "Per monitor DPI scaling" on .NET < 4.6.2 -->
- <AppContextSwitchOverrides value="Switch.System.Windows.DoNotScaleForDpiChanges=false;Switch.UseLegacyToolTipDisplay=true"/>
-
- </runtime>
-</configuration>
diff --git a/win/CS/build.xml b/win/CS/build.xml index da326533f..fedc222a7 100644 --- a/win/CS/build.xml +++ b/win/CS/build.xml @@ -6,11 +6,11 @@ HandBrake Build Script for usage with Jenkins.
Usage:
- msbuild build_publish.xml /t:x64 /p:Profile=[Nightly or Release]
- msbuild build_publish.xml /t:arm64 /p:Profile=[Nightly or Release]
+ msbuild build.xml /t:x64 /p:Profile=[Nightly or Release]
+ msbuild build.xml /t:arm64 /p:Profile=[Nightly or Release]
Example with code signing:
- msbuild build_publish.xml /t:x64 /p:SignThumbprint=XYZ /p:SignTimestampServer=http://time.certum.pl/
- msbuild build_publish.xml /t:x64 /p:PfxFile=file.pfx /p:PfxPwd=XYZ /p:SignTimestampServer=http://time.certum.pl/
+ msbuild build.xml /t:x64 /p:SignThumbprint=XYZ /p:SignTimestampServer=http://time.certum.pl/
+ msbuild build.xml /t:x64 /p:PfxFile=file.pfx /p:PfxPwd=XYZ /p:SignTimestampServer=http://time.certum.pl/
Requires: hb.dll to be in the release folder.
|