├── .editorconfig ├── .eslintrc.json ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── add-to-project.yml │ ├── release.yml │ ├── semantic.yml │ └── test.yml ├── .gitignore ├── .releaserc.json ├── LICENSE ├── README.md ├── package.json ├── resources └── install-spinner.gif ├── script └── select-7z-arch.js ├── spec ├── convert-version-spec.ts ├── fixtures │ └── app │ │ ├── LICENSE │ │ ├── chromiumcontent.dll │ │ ├── d3dcompiler_47.dll │ │ ├── ffmpegsumo.dll │ │ ├── icudtl.dat │ │ ├── locales │ │ └── en.pak │ │ ├── msvcp120.dll │ │ ├── msvcr120.dll │ │ ├── myapp.exe │ │ ├── natives_blob.bin │ │ ├── resources │ │ └── app │ │ │ └── package.json │ │ ├── snapshot_blob.bin │ │ ├── swiftshader │ │ ├── libEGL.dll │ │ └── libGLESv2.dll │ │ ├── vccorlib120.dll │ │ ├── vk_swiftshader.dll │ │ ├── vk_swiftshader_icd.json │ │ └── xinput1_3.dll ├── helpers │ ├── helpers.ts │ └── windowsSignHook.js ├── installer-spec.ts └── sign-spec.ts ├── src ├── index.ts ├── options.ts ├── sign.ts ├── spawn-promise.ts └── temp-utils.ts ├── template.nuspectemplate ├── tsconfig.json ├── typedoc.json ├── vendor ├── 7z-arm64.dll ├── 7z-arm64.exe ├── 7z-x64.dll ├── 7z-x64.exe ├── Microsoft.Deployment.Resources.dll ├── Microsoft.Deployment.WindowsInstaller.dll ├── Setup.exe ├── Setup.pdb ├── Squirrel-Mono.exe ├── Squirrel-Mono.pdb ├── Squirrel.com ├── Squirrel.exe ├── Squirrel.pdb ├── StubExecutable.exe ├── SyncReleases.exe ├── SyncReleases.pdb ├── WixNetFxExtension.dll ├── WriteZipToSetup.exe ├── WriteZipToSetup.pdb ├── candle.exe ├── candle.exe.config ├── darice.cub ├── light.exe ├── light.exe.config ├── nuget.exe ├── rcedit.exe ├── signtool.exe ├── template.wxs ├── wconsole.dll ├── winterop.dll └── wix.dll └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @electron/wg-ecosystem 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/add-to-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/.github/workflows/add-to-project.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/.github/workflows/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/.releaserc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/package.json -------------------------------------------------------------------------------- /resources/install-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/resources/install-spinner.gif -------------------------------------------------------------------------------- /script/select-7z-arch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/script/select-7z-arch.js -------------------------------------------------------------------------------- /spec/convert-version-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/convert-version-spec.ts -------------------------------------------------------------------------------- /spec/fixtures/app/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/chromiumcontent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/fixtures/app/chromiumcontent.dll -------------------------------------------------------------------------------- /spec/fixtures/app/d3dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/fixtures/app/d3dcompiler_47.dll -------------------------------------------------------------------------------- /spec/fixtures/app/ffmpegsumo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/fixtures/app/ffmpegsumo.dll -------------------------------------------------------------------------------- /spec/fixtures/app/icudtl.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/locales/en.pak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/msvcp120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/fixtures/app/msvcp120.dll -------------------------------------------------------------------------------- /spec/fixtures/app/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/fixtures/app/msvcr120.dll -------------------------------------------------------------------------------- /spec/fixtures/app/myapp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/fixtures/app/myapp.exe -------------------------------------------------------------------------------- /spec/fixtures/app/natives_blob.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/resources/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/fixtures/app/resources/app/package.json -------------------------------------------------------------------------------- /spec/fixtures/app/snapshot_blob.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/swiftshader/libEGL.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/swiftshader/libGLESv2.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/vccorlib120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/fixtures/app/vccorlib120.dll -------------------------------------------------------------------------------- /spec/fixtures/app/vk_swiftshader.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/vk_swiftshader_icd.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/xinput1_3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/fixtures/app/xinput1_3.dll -------------------------------------------------------------------------------- /spec/helpers/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/helpers/helpers.ts -------------------------------------------------------------------------------- /spec/helpers/windowsSignHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/helpers/windowsSignHook.js -------------------------------------------------------------------------------- /spec/installer-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/installer-spec.ts -------------------------------------------------------------------------------- /spec/sign-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/spec/sign-spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/src/options.ts -------------------------------------------------------------------------------- /src/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/src/sign.ts -------------------------------------------------------------------------------- /src/spawn-promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/src/spawn-promise.ts -------------------------------------------------------------------------------- /src/temp-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/src/temp-utils.ts -------------------------------------------------------------------------------- /template.nuspectemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/template.nuspectemplate -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/typedoc.json -------------------------------------------------------------------------------- /vendor/7z-arm64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/7z-arm64.dll -------------------------------------------------------------------------------- /vendor/7z-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/7z-arm64.exe -------------------------------------------------------------------------------- /vendor/7z-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/7z-x64.dll -------------------------------------------------------------------------------- /vendor/7z-x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/7z-x64.exe -------------------------------------------------------------------------------- /vendor/Microsoft.Deployment.Resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/Microsoft.Deployment.Resources.dll -------------------------------------------------------------------------------- /vendor/Microsoft.Deployment.WindowsInstaller.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/Microsoft.Deployment.WindowsInstaller.dll -------------------------------------------------------------------------------- /vendor/Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/Setup.exe -------------------------------------------------------------------------------- /vendor/Setup.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/Setup.pdb -------------------------------------------------------------------------------- /vendor/Squirrel-Mono.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/Squirrel-Mono.exe -------------------------------------------------------------------------------- /vendor/Squirrel-Mono.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/Squirrel-Mono.pdb -------------------------------------------------------------------------------- /vendor/Squirrel.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/Squirrel.com -------------------------------------------------------------------------------- /vendor/Squirrel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/Squirrel.exe -------------------------------------------------------------------------------- /vendor/Squirrel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/Squirrel.pdb -------------------------------------------------------------------------------- /vendor/StubExecutable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/StubExecutable.exe -------------------------------------------------------------------------------- /vendor/SyncReleases.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/SyncReleases.exe -------------------------------------------------------------------------------- /vendor/SyncReleases.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/SyncReleases.pdb -------------------------------------------------------------------------------- /vendor/WixNetFxExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/WixNetFxExtension.dll -------------------------------------------------------------------------------- /vendor/WriteZipToSetup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/WriteZipToSetup.exe -------------------------------------------------------------------------------- /vendor/WriteZipToSetup.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/WriteZipToSetup.pdb -------------------------------------------------------------------------------- /vendor/candle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/candle.exe -------------------------------------------------------------------------------- /vendor/candle.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/candle.exe.config -------------------------------------------------------------------------------- /vendor/darice.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/darice.cub -------------------------------------------------------------------------------- /vendor/light.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/light.exe -------------------------------------------------------------------------------- /vendor/light.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/light.exe.config -------------------------------------------------------------------------------- /vendor/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/nuget.exe -------------------------------------------------------------------------------- /vendor/rcedit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/rcedit.exe -------------------------------------------------------------------------------- /vendor/signtool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/signtool.exe -------------------------------------------------------------------------------- /vendor/template.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/template.wxs -------------------------------------------------------------------------------- /vendor/wconsole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/wconsole.dll -------------------------------------------------------------------------------- /vendor/winterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/winterop.dll -------------------------------------------------------------------------------- /vendor/wix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/vendor/wix.dll -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron/windows-installer/HEAD/yarn.lock --------------------------------------------------------------------------------