├── .github ├── dependabot.yml └── workflows │ └── msi-build.yml ├── .gitignore ├── 00_HelloWorldInstaller ├── .gitignore ├── BuildInstaller.ps1 ├── DownloadAndExtractWix.ps1 ├── FileToInstall.txt ├── Product.wxs └── README.md ├── 01_HelloWorldInstallerUpgradable ├── 01_HelloWorldInstallerUpgradable.wixproj ├── FileToInstall.txt ├── Product.wxs ├── README.md └── packages.config ├── 02_x86_x64_Installer ├── 02_x86_x64_Installer.wixproj ├── FileToInstall.txt ├── PlatformDependentVariables.wxi ├── Product.wxs ├── README.md ├── my_x64.dll ├── my_x86.dll └── packages.config ├── 03_PassingInstallLocationParameterToInstaller ├── 03_PassingInstallLocationParameterToInstaller.wixproj ├── FileToInstall.txt ├── Product.wxs ├── README.md └── packages.config ├── 04_PowerShellPreconditionCustomAction ├── 04_PowerShellPreconditionCustomAction.wixproj ├── FileToInstall.txt ├── MyAppendScript.ps1 ├── Product.wxs ├── README.md └── packages.config ├── 05_RememberPropertyPattern ├── 05_RememberPropertyPattern.wixproj ├── InstallationStages.wxi ├── MyAppendScript.ps1 ├── Product.wxs ├── README.md └── packages.config ├── 06_RememberPropertyPatternComplete ├── 06_RememberPropertyPatternComplete.wixproj ├── InstallationStages.wxi ├── MyAppendScript.ps1 ├── Product.wxs ├── README.md └── packages.config ├── 07_CSharpCustomAction ├── 07_InstallerWithMyCSharpCustomAction │ ├── 07_InstallerWithMyCSharpCustomAction.wixproj │ ├── FileToInstall.txt │ ├── Product.wxs │ └── packages.config ├── 07_MyCSharpCustomAction │ ├── 07_MyCSharpCustomAction.csproj │ ├── CustomAction.config │ ├── CustomAction.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config └── README.md ├── 08_CppCustomAction ├── 08_InstallerWithMyCppCustomAction │ ├── 08_InstallerWithMyCppCustomAction.wixproj │ ├── FileToInstall.txt │ ├── Product.wxs │ └── packages.config ├── 08_MyCppCustomAction │ ├── 08_MyCppCustomAction.vcxproj │ ├── CustomAction.cpp │ ├── CustomAction.def │ ├── packages.config │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── README.md ├── 09_InstallerWithUserInterface ├── 09_InstallerWithUserInterface.wixproj ├── InstallationStages.wxi ├── MyAppendScript.ps1 ├── MyCustomPropertiesDlg.wxs ├── Product.wxs ├── README.md └── packages.config ├── 10_ASP.NET_Core6_WeatherForecastInstaller ├── 10_WeatherForecast │ ├── 10_WeatherForecast.csproj │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── 10_WeatherForecastInstaller │ ├── 10_WeatherForecastInstaller.wixproj │ ├── IISHostingFragment.wxs │ ├── Product.wxs │ ├── SetAppPoolManagedRuntimeVersion.ps1 │ ├── WeatherForecastGenerated.wxs │ └── packages.config └── README.md ├── LICENSE ├── README.md ├── WixInstallerExamples.sln └── images ├── CustomActionType51.png ├── Deferred_CA.png ├── Immediate_CA.png ├── InstallExecuteSequence.png ├── InstallUISequence.png ├── MyCustomPropertiesDlg.png ├── Orca.png ├── PowerShellError.png ├── SchedulingCustomAction.png └── WeatherForecastProjectTemplate.png /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/msi-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/.github/workflows/msi-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/.gitignore -------------------------------------------------------------------------------- /00_HelloWorldInstaller/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/00_HelloWorldInstaller/.gitignore -------------------------------------------------------------------------------- /00_HelloWorldInstaller/BuildInstaller.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/00_HelloWorldInstaller/BuildInstaller.ps1 -------------------------------------------------------------------------------- /00_HelloWorldInstaller/DownloadAndExtractWix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/00_HelloWorldInstaller/DownloadAndExtractWix.ps1 -------------------------------------------------------------------------------- /00_HelloWorldInstaller/FileToInstall.txt: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /00_HelloWorldInstaller/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/00_HelloWorldInstaller/Product.wxs -------------------------------------------------------------------------------- /00_HelloWorldInstaller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/00_HelloWorldInstaller/README.md -------------------------------------------------------------------------------- /01_HelloWorldInstallerUpgradable/01_HelloWorldInstallerUpgradable.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/01_HelloWorldInstallerUpgradable/01_HelloWorldInstallerUpgradable.wixproj -------------------------------------------------------------------------------- /01_HelloWorldInstallerUpgradable/FileToInstall.txt: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /01_HelloWorldInstallerUpgradable/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/01_HelloWorldInstallerUpgradable/Product.wxs -------------------------------------------------------------------------------- /01_HelloWorldInstallerUpgradable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/01_HelloWorldInstallerUpgradable/README.md -------------------------------------------------------------------------------- /01_HelloWorldInstallerUpgradable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/01_HelloWorldInstallerUpgradable/packages.config -------------------------------------------------------------------------------- /02_x86_x64_Installer/02_x86_x64_Installer.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/02_x86_x64_Installer/02_x86_x64_Installer.wixproj -------------------------------------------------------------------------------- /02_x86_x64_Installer/FileToInstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/02_x86_x64_Installer/FileToInstall.txt -------------------------------------------------------------------------------- /02_x86_x64_Installer/PlatformDependentVariables.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/02_x86_x64_Installer/PlatformDependentVariables.wxi -------------------------------------------------------------------------------- /02_x86_x64_Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/02_x86_x64_Installer/Product.wxs -------------------------------------------------------------------------------- /02_x86_x64_Installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/02_x86_x64_Installer/README.md -------------------------------------------------------------------------------- /02_x86_x64_Installer/my_x64.dll: -------------------------------------------------------------------------------- 1 | x64 -------------------------------------------------------------------------------- /02_x86_x64_Installer/my_x86.dll: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /02_x86_x64_Installer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/02_x86_x64_Installer/packages.config -------------------------------------------------------------------------------- /03_PassingInstallLocationParameterToInstaller/03_PassingInstallLocationParameterToInstaller.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/03_PassingInstallLocationParameterToInstaller/03_PassingInstallLocationParameterToInstaller.wixproj -------------------------------------------------------------------------------- /03_PassingInstallLocationParameterToInstaller/FileToInstall.txt: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /03_PassingInstallLocationParameterToInstaller/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/03_PassingInstallLocationParameterToInstaller/Product.wxs -------------------------------------------------------------------------------- /03_PassingInstallLocationParameterToInstaller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/03_PassingInstallLocationParameterToInstaller/README.md -------------------------------------------------------------------------------- /03_PassingInstallLocationParameterToInstaller/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/03_PassingInstallLocationParameterToInstaller/packages.config -------------------------------------------------------------------------------- /04_PowerShellPreconditionCustomAction/04_PowerShellPreconditionCustomAction.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/04_PowerShellPreconditionCustomAction/04_PowerShellPreconditionCustomAction.wixproj -------------------------------------------------------------------------------- /04_PowerShellPreconditionCustomAction/FileToInstall.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /04_PowerShellPreconditionCustomAction/MyAppendScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/04_PowerShellPreconditionCustomAction/MyAppendScript.ps1 -------------------------------------------------------------------------------- /04_PowerShellPreconditionCustomAction/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/04_PowerShellPreconditionCustomAction/Product.wxs -------------------------------------------------------------------------------- /04_PowerShellPreconditionCustomAction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/04_PowerShellPreconditionCustomAction/README.md -------------------------------------------------------------------------------- /04_PowerShellPreconditionCustomAction/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/04_PowerShellPreconditionCustomAction/packages.config -------------------------------------------------------------------------------- /05_RememberPropertyPattern/05_RememberPropertyPattern.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/05_RememberPropertyPattern/05_RememberPropertyPattern.wixproj -------------------------------------------------------------------------------- /05_RememberPropertyPattern/InstallationStages.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/05_RememberPropertyPattern/InstallationStages.wxi -------------------------------------------------------------------------------- /05_RememberPropertyPattern/MyAppendScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/05_RememberPropertyPattern/MyAppendScript.ps1 -------------------------------------------------------------------------------- /05_RememberPropertyPattern/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/05_RememberPropertyPattern/Product.wxs -------------------------------------------------------------------------------- /05_RememberPropertyPattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/05_RememberPropertyPattern/README.md -------------------------------------------------------------------------------- /05_RememberPropertyPattern/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/05_RememberPropertyPattern/packages.config -------------------------------------------------------------------------------- /06_RememberPropertyPatternComplete/06_RememberPropertyPatternComplete.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/06_RememberPropertyPatternComplete/06_RememberPropertyPatternComplete.wixproj -------------------------------------------------------------------------------- /06_RememberPropertyPatternComplete/InstallationStages.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/06_RememberPropertyPatternComplete/InstallationStages.wxi -------------------------------------------------------------------------------- /06_RememberPropertyPatternComplete/MyAppendScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/06_RememberPropertyPatternComplete/MyAppendScript.ps1 -------------------------------------------------------------------------------- /06_RememberPropertyPatternComplete/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/06_RememberPropertyPatternComplete/Product.wxs -------------------------------------------------------------------------------- /06_RememberPropertyPatternComplete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/06_RememberPropertyPatternComplete/README.md -------------------------------------------------------------------------------- /06_RememberPropertyPatternComplete/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/06_RememberPropertyPatternComplete/packages.config -------------------------------------------------------------------------------- /07_CSharpCustomAction/07_InstallerWithMyCSharpCustomAction/07_InstallerWithMyCSharpCustomAction.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/07_CSharpCustomAction/07_InstallerWithMyCSharpCustomAction/07_InstallerWithMyCSharpCustomAction.wixproj -------------------------------------------------------------------------------- /07_CSharpCustomAction/07_InstallerWithMyCSharpCustomAction/FileToInstall.txt: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /07_CSharpCustomAction/07_InstallerWithMyCSharpCustomAction/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/07_CSharpCustomAction/07_InstallerWithMyCSharpCustomAction/Product.wxs -------------------------------------------------------------------------------- /07_CSharpCustomAction/07_InstallerWithMyCSharpCustomAction/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/07_CSharpCustomAction/07_InstallerWithMyCSharpCustomAction/packages.config -------------------------------------------------------------------------------- /07_CSharpCustomAction/07_MyCSharpCustomAction/07_MyCSharpCustomAction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/07_CSharpCustomAction/07_MyCSharpCustomAction/07_MyCSharpCustomAction.csproj -------------------------------------------------------------------------------- /07_CSharpCustomAction/07_MyCSharpCustomAction/CustomAction.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/07_CSharpCustomAction/07_MyCSharpCustomAction/CustomAction.config -------------------------------------------------------------------------------- /07_CSharpCustomAction/07_MyCSharpCustomAction/CustomAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/07_CSharpCustomAction/07_MyCSharpCustomAction/CustomAction.cs -------------------------------------------------------------------------------- /07_CSharpCustomAction/07_MyCSharpCustomAction/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/07_CSharpCustomAction/07_MyCSharpCustomAction/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /07_CSharpCustomAction/07_MyCSharpCustomAction/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/07_CSharpCustomAction/07_MyCSharpCustomAction/packages.config -------------------------------------------------------------------------------- /07_CSharpCustomAction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/07_CSharpCustomAction/README.md -------------------------------------------------------------------------------- /08_CppCustomAction/08_InstallerWithMyCppCustomAction/08_InstallerWithMyCppCustomAction.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/08_CppCustomAction/08_InstallerWithMyCppCustomAction/08_InstallerWithMyCppCustomAction.wixproj -------------------------------------------------------------------------------- /08_CppCustomAction/08_InstallerWithMyCppCustomAction/FileToInstall.txt: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /08_CppCustomAction/08_InstallerWithMyCppCustomAction/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/08_CppCustomAction/08_InstallerWithMyCppCustomAction/Product.wxs -------------------------------------------------------------------------------- /08_CppCustomAction/08_InstallerWithMyCppCustomAction/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/08_CppCustomAction/08_InstallerWithMyCppCustomAction/packages.config -------------------------------------------------------------------------------- /08_CppCustomAction/08_MyCppCustomAction/08_MyCppCustomAction.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/08_CppCustomAction/08_MyCppCustomAction/08_MyCppCustomAction.vcxproj -------------------------------------------------------------------------------- /08_CppCustomAction/08_MyCppCustomAction/CustomAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/08_CppCustomAction/08_MyCppCustomAction/CustomAction.cpp -------------------------------------------------------------------------------- /08_CppCustomAction/08_MyCppCustomAction/CustomAction.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/08_CppCustomAction/08_MyCppCustomAction/CustomAction.def -------------------------------------------------------------------------------- /08_CppCustomAction/08_MyCppCustomAction/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/08_CppCustomAction/08_MyCppCustomAction/packages.config -------------------------------------------------------------------------------- /08_CppCustomAction/08_MyCppCustomAction/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/08_CppCustomAction/08_MyCppCustomAction/stdafx.cpp -------------------------------------------------------------------------------- /08_CppCustomAction/08_MyCppCustomAction/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/08_CppCustomAction/08_MyCppCustomAction/stdafx.h -------------------------------------------------------------------------------- /08_CppCustomAction/08_MyCppCustomAction/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/08_CppCustomAction/08_MyCppCustomAction/targetver.h -------------------------------------------------------------------------------- /08_CppCustomAction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/08_CppCustomAction/README.md -------------------------------------------------------------------------------- /09_InstallerWithUserInterface/09_InstallerWithUserInterface.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/09_InstallerWithUserInterface/09_InstallerWithUserInterface.wixproj -------------------------------------------------------------------------------- /09_InstallerWithUserInterface/InstallationStages.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/09_InstallerWithUserInterface/InstallationStages.wxi -------------------------------------------------------------------------------- /09_InstallerWithUserInterface/MyAppendScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/09_InstallerWithUserInterface/MyAppendScript.ps1 -------------------------------------------------------------------------------- /09_InstallerWithUserInterface/MyCustomPropertiesDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/09_InstallerWithUserInterface/MyCustomPropertiesDlg.wxs -------------------------------------------------------------------------------- /09_InstallerWithUserInterface/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/09_InstallerWithUserInterface/Product.wxs -------------------------------------------------------------------------------- /09_InstallerWithUserInterface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/09_InstallerWithUserInterface/README.md -------------------------------------------------------------------------------- /09_InstallerWithUserInterface/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/09_InstallerWithUserInterface/packages.config -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/10_WeatherForecast.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/10_WeatherForecast.csproj -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/Program.cs -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/Properties/launchSettings.json -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/Startup.cs -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/WeatherForecast.cs -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/appsettings.Development.json -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecast/appsettings.json -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecastInstaller/10_WeatherForecastInstaller.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecastInstaller/10_WeatherForecastInstaller.wixproj -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecastInstaller/IISHostingFragment.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecastInstaller/IISHostingFragment.wxs -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecastInstaller/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecastInstaller/Product.wxs -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecastInstaller/SetAppPoolManagedRuntimeVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecastInstaller/SetAppPoolManagedRuntimeVersion.ps1 -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecastInstaller/WeatherForecastGenerated.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecastInstaller/WeatherForecastGenerated.wxs -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecastInstaller/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/10_WeatherForecastInstaller/packages.config -------------------------------------------------------------------------------- /10_ASP.NET_Core6_WeatherForecastInstaller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/10_ASP.NET_Core6_WeatherForecastInstaller/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/README.md -------------------------------------------------------------------------------- /WixInstallerExamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/WixInstallerExamples.sln -------------------------------------------------------------------------------- /images/CustomActionType51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/images/CustomActionType51.png -------------------------------------------------------------------------------- /images/Deferred_CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/images/Deferred_CA.png -------------------------------------------------------------------------------- /images/Immediate_CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/images/Immediate_CA.png -------------------------------------------------------------------------------- /images/InstallExecuteSequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/images/InstallExecuteSequence.png -------------------------------------------------------------------------------- /images/InstallUISequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/images/InstallUISequence.png -------------------------------------------------------------------------------- /images/MyCustomPropertiesDlg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/images/MyCustomPropertiesDlg.png -------------------------------------------------------------------------------- /images/Orca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/images/Orca.png -------------------------------------------------------------------------------- /images/PowerShellError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/images/PowerShellError.png -------------------------------------------------------------------------------- /images/SchedulingCustomAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/images/SchedulingCustomAction.png -------------------------------------------------------------------------------- /images/WeatherForecastProjectTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtanr/WiXInstallerExamples/HEAD/images/WeatherForecastProjectTemplate.png --------------------------------------------------------------------------------