-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathItmo.Dev.Templates.csproj
42 lines (35 loc) · 1.37 KB
/
Itmo.Dev.Templates.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageId>Itmo.Dev.Templates</PackageId>
<Title>Itmo.Dev.Templates</Title>
<Authors>itmo-is-dev</Authors>
<Description>Common project templates for itmo-is-dev services</Description>
<PackageTags>dotnet-new;templates;itmo-is-dev</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<PatchVersion>0</PatchVersion>
<PackageVersion>1.1.$(PatchVersion)</PackageVersion>
<PackageReleaseNotes>
Added Slim template
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**"/>
<Compile Remove="**\*"/>
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>