<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<PackageType>Template</PackageType>
<PackageId>Microsoft.TemplateEngine.TestTemplates</PackageId>
<Authors>Microsoft</Authors>
<Description>Test Templates</Description>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<IsPackable>true</IsPackable>
<IsShipping>false</IsShipping>
<NoDefaultExcludes>true</NoDefaultExcludes>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<Compile Remove="**\*" />
<Content Include="test_templates\**\*" Exclude="test_templates\**\bin\**;test_templates\**\obj\**" />
<None Include="test_templates\**\*" CopyToOutputDirectory="Always" />
<Content Include="nupkg_templates\**" />
<None Include="nupkg_templates\**" CopyToOutputDirectory="Always" />
</ItemGroup>
</Project>
|