Browse Source
Merge pull request #3456 from icsharpcode/feature/wixsharp
Merge pull request #3456 from icsharpcode/feature/wixsharp
Update to _wix4 packages for installerpull/3387/merge

committed by
GitHub

No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 41 additions and 54 deletions
-
3.github/workflows/build-ilspy.yml
-
15ILSpy.Installer/ILSpy.Installer.csproj
-
14ILSpy.Installer/README.md
-
37ILSpy.Installer/setup.cs
-
10ILSpy.Installer/winui.wxl
-
16publishlocaldev.ps1
@ -1,10 +1,4 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<WixLocalization Culture="en-US" xmlns="http://schemas.microsoft.com/wix/2006/localization"> |
|||
<String Id="VerifyReadyDlgInstallText" Overridable="yes">Click Install to begin the installation. Click Cancel to exit the wizard. |
|||
|
|||
|
|||
ILSpy will be installed for current user into following directory: |
|||
|
|||
[INSTALLDIR] |
|||
</String> |
|||
<WixLocalization Culture="en-US" xmlns="http://wixtoolset.org/schemas/v4/wxl"> |
|||
<String Id="VerifyReadyDlgInstallText" Overridable="yes" Value="Click Install to begin the installation. Click Cancel to exit the wizard.
	
	ILSpy will be installed for current user into following directory:
	
	[INSTALLDIR]"></String> |
|||
</WixLocalization> |
@ -1,13 +1,13 @@ |
|||
# For local development of the VSIX package - build and publish (VS2022 also needs arm64) |
|||
|
|||
$output_x64 = "./ILSpy/bin/Debug/net8.0-windows/win-x64/publish/fwdependent" |
|||
$output_x64 = "./ILSpy/bin/Release/net8.0-windows/win-x64/publish/fwdependent" |
|||
|
|||
dotnet publish ./ILSpy/ILSpy.csproj -c Debug --no-restore --no-self-contained -r win-x64 -o $output_x64 |
|||
dotnet publish ./ILSpy.ReadyToRun/ILSpy.ReadyToRun.csproj -c Debug --no-restore --no-self-contained -r win-x64 -o $output_x64 |
|||
dotnet publish ./ILSpy.BamlDecompiler/ILSpy.BamlDecompiler.csproj -c Debug --no-restore --no-self-contained -r win-x64 -o $output_x64 |
|||
dotnet publish ./ILSpy/ILSpy.csproj -c Release --no-restore --no-self-contained -r win-x64 -o $output_x64 |
|||
dotnet publish ./ILSpy.ReadyToRun/ILSpy.ReadyToRun.csproj -c Release --no-restore --no-self-contained -r win-x64 -o $output_x64 |
|||
dotnet publish ./ILSpy.BamlDecompiler/ILSpy.BamlDecompiler.csproj -c Release --no-restore --no-self-contained -r win-x64 -o $output_x64 |
|||
|
|||
$output_arm64 = "./ILSpy/bin/Debug/net8.0-windows/win-arm64/publish/fwdependent" |
|||
$output_arm64 = "./ILSpy/bin/Release/net8.0-windows/win-arm64/publish/fwdependent" |
|||
|
|||
dotnet publish ./ILSpy/ILSpy.csproj -c Debug --no-restore --no-self-contained -r win-arm64 -o $output_arm64 |
|||
dotnet publish ./ILSpy.ReadyToRun/ILSpy.ReadyToRun.csproj -c Debug --no-restore --no-self-contained -r win-arm64 -o $output_arm64 |
|||
dotnet publish ./ILSpy.BamlDecompiler/ILSpy.BamlDecompiler.csproj -c Debug --no-restore --no-self-contained -r win-arm64 -o $output_arm64 |
|||
dotnet publish ./ILSpy/ILSpy.csproj -c Release --no-restore --no-self-contained -r win-arm64 -o $output_arm64 |
|||
dotnet publish ./ILSpy.ReadyToRun/ILSpy.ReadyToRun.csproj -c Release --no-restore --no-self-contained -r win-arm64 -o $output_arm64 |
|||
dotnet publish ./ILSpy.BamlDecompiler/ILSpy.BamlDecompiler.csproj -c Release --no-restore --no-self-contained -r win-arm64 -o $output_arm64 |
Write
Preview
Loading…
Cancel
Save
Reference in new issue