21 lines
841 B
XML
21 lines
841 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="WixToolset.Sdk/5.0.0">
|
|
<PropertyGroup>
|
|
<Platform>x64</Platform>
|
|
<OutputName>InventorySuite-$(Version)</OutputName>
|
|
<!-- Define variables to pass into the WiX authoring -->
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Add a reference to the WiX UI extension -->
|
|
<PackageReference Include="WixToolset.UI.wixext" Version="5.0.0" />
|
|
<PackageReference Include="WixToolset.Util.wixext" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Add project references to ensure other projects are built first -->
|
|
<ProjectReference Include="..\Inventory.Core\Inventory.Core.csproj" />
|
|
<ProjectReference Include="..\Inventory.Agent\Inventory.Agent.csproj" />
|
|
<ProjectReference Include="..\Inventory.AdminTool\Inventory.AdminTool.csproj" />
|
|
</ItemGroup>
|
|
</Project> |