rebrand installer from TeamsISO to Dragon-ISO - Rename TeamsISO.Installer.wixproj to Dragon-ISO.Installer.wixproj - Update Package.wxs: product name, shortcuts, registry keys, ARP metadata, install directory, and icon all updated to Dragon-ISO - Switch UI from WixUI_InstallDir to WixUI_Minimal (no dir picker) - Add .NET 8 Desktop Runtime detection (registry band key + Version) - Fix release.yml: signing step referenced Dragon-ISO.exe but AssemblyName=DragonISO so exe is DragonISO.exe (no hyphen) - Fix release.yml: upload-artifact@v3 to @v4, add signtool null-guard to MSI signing step Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> @
35 lines
No EOL
1.3 KiB
XML
35 lines
No EOL
1.3 KiB
XML
<Project Sdk="WixToolset.Sdk/5.0.2">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Package</OutputType>
|
|
<OutputName>Dragon-ISO-Setup-$(Version)</OutputName>
|
|
|
|
<!-- 64-bit MSI; suppresses ICE80 on components in Program Files (x64). -->
|
|
<Platform>x64</Platform>
|
|
<InstallerPlatform>x64</InstallerPlatform>
|
|
|
|
<!--
|
|
Built artifact location. The installer expects a published build of
|
|
Dragon-ISO.App rooted here. CI / local script:
|
|
dotnet publish src/Dragon-ISO.App/Dragon-ISO.App.csproj
|
|
-c Release -r win-x64 -self-contained false
|
|
-o $(SolutionDir)publish/Dragon-ISO
|
|
-->
|
|
<PublishDir>$(MSBuildThisFileDirectory)..\publish\Dragon-ISO\</PublishDir>
|
|
|
|
<!-- Pass MSBuild values into WiX preprocessor. -->
|
|
<DefineConstants>PublishDir=$(PublishDir);AssetsDir=$(MSBuildThisFileDirectory)..\src\Dragon-ISO.App\Assets\</DefineConstants>
|
|
|
|
<!-- Code-signing hook (set externally for release builds; left empty for dev). -->
|
|
<SignOutput Condition=" '$(SignOutput)' == '' ">false</SignOutput>
|
|
</PropertyGroup>
|
|
|
|
<!--
|
|
Reference the WiX UI extension so the MSI shows a friendly progress UI
|
|
instead of the silent default.
|
|
-->
|
|
<ItemGroup>
|
|
<PackageReference Include="WixToolset.UI.wixext" Version="5.0.2" />
|
|
</ItemGroup>
|
|
|
|
</Project> |