-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplatepack.csproj
More file actions
23 lines (20 loc) · 918 Bytes
/
templatepack.csproj
File metadata and controls
23 lines (20 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>0.4.2-beta.1</PackageVersion>
<PackageId>LogoFX.Templates</PackageId>
<Title>LogoFX Templates</Title>
<Authors>Dmitry Bublik, Gennady Verdel, David Kossoglyad</Authors>
<Owners>Gennady Verdel, David Kossoglyad</Owners>
<Description>Templates to use when creating a LogoFX-based application</Description>
<PackageTags>dotnet;dotnet-new;templates;logofx</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="generated\**\*" Exclude="generated\**\bin\**;generated\**\obj\**;generated\**\.vs\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>