mirror of
https://github.com/nushell/nushell.git
synced 2025-08-14 07:58:50 +02:00
Add wix/main.wixproj for wix toolset 6.0
This commit is contained in:
34
wix/main.wixproj
Normal file
34
wix/main.wixproj
Normal file
@ -0,0 +1,34 @@
|
||||
<Project Sdk="WixToolset.Sdk/6.0.0">
|
||||
<PropertyGroup>
|
||||
<OutputType>Package</OutputType>
|
||||
<OutputName>nu-$(Platform)</OutputName>
|
||||
<UpgradeCode>82D756D2-19FA-4F09-B10F-64942E89F364</UpgradeCode>
|
||||
<DefineConstants>
|
||||
SourceDir=$(MSBuildProjectDirectory)\nu
|
||||
</DefineConstants>
|
||||
<SuppressValidation>true</SuppressValidation>
|
||||
<SuppressIces>ICE80</SuppressIces>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(Platform)' == 'x64' ">
|
||||
<InstallerPlatform>x64</InstallerPlatform>
|
||||
<DefineConstants>$(DefineConstants)</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(Platform)' == 'arm64' ">
|
||||
<InstallerPlatform>arm64</InstallerPlatform>
|
||||
<DefineConstants>$(DefineConstants)</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="WixToolset.UI.wixext" Version="6.0.0" />
|
||||
<PackageReference Include="WixToolset.Util.wixext" Version="6.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<BindPath Include="." />
|
||||
<Content Include="nu.ico" />
|
||||
<Content Include="License.rtf" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
Reference in New Issue
Block a user