We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cf2f9a commit b89039eCopy full SHA for b89039e
.github/workflows/main.yml
@@ -83,6 +83,19 @@ jobs:
83
)
84
echo Found UnityLauncherPro.exe
85
86
+ # download vs installer builder
87
+ - name: Download Installer‐Projects VSIX
88
+ shell: pwsh
89
+ run: |
90
+ $vsixUrl = "https://marketplace.visualstudio.com/_apis/public/gallery/publishers/VisualStudioClient/extensions/VisualStudioInstallerProjects/versions/1.0.0/media"
91
+ Invoke-WebRequest $vsixUrl -OutFile installerprojects.vsix
92
+
93
+ # install vs installer builder
94
+ - name: Install Installer‐Projects extension
95
96
97
+ & "${{ steps.vswhere.outputs.installPath }}\Common7\IDE\VSIXInstaller.exe" \
98
+ installerprojects.vsix /quiet
99
100
# Build MSI installer project using Visual Studio 2022 workaround
101
- name: Build Installer MSI
0 commit comments