generated from projectoperations/container-template-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.csproj
22 lines (19 loc) · 795 Bytes
/
.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0.0</PackageVersion>
<PackageId>MyTechRamblings.Templates</PackageId>
<Title>>Dotnet Templates</Title>
<Authors>officialmofabs</Authors>
<Description>Templates to use when creating an application</Description>
<PackageTags>dotnet;templates;foo</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="src\**\*" Exclude="src\**\bin\**;src\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>