Anyone experience with creating dotnet templates? I am using the csproj as the source for all data to pack but that forces me to have an itemgroup to add everything as content (see below). Is there a way to make sure that doesn't propagate into the installed templated, or do I have to use a nuspec file for file includes?
<ItemGroup>
<Content Include="**\*" Exclude="**\bin\**;**\obj\**" />
</ItemGroup>