main
csproj 20 lines 651 Bytes
Raw
1 <Project Sdk="Microsoft.NET.Sdk">
2 <PropertyGroup>
3 <PackageType>Template</PackageType>
4 <Title>WixToolset Templates</Title>
5 <Description>Project and item template for the WiX Toolset.</Description>
6
7 <TargetFramework>netstandard2.0</TargetFramework>
8 <IncludeBuildOutput>false</IncludeBuildOutput>
9 <NoWarn>$(NoWarn);NU5128</NoWarn>
10
11 <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
12 <IncludeContentInPack>true</IncludeContentInPack>
13 <ContentTargetFolders>content</ContentTargetFolders>
14 </PropertyGroup>
15
16 <ItemGroup>
17 <Compile Remove="**" />
18 <Content Include="templates\**" />
19 </ItemGroup>
20 </Project>