-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmicroservicestemplate.csproj
More file actions
26 lines (23 loc) · 1.04 KB
/
microservicestemplate.csproj
File metadata and controls
26 lines (23 loc) · 1.04 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- edit this value to change the current MAJOR.MINOR version -->
<VersionPrefix>0.1</VersionPrefix>
</PropertyGroup>
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageId>Finaps.Templates.AspNetCore</PackageId>
<Title>Finaps ASP.NET API Microservice Template</Title>
<Authors>Finaps B.V.</Authors>
<VersionPrefix>$(VersionPrefix).$(BUILD_BUILDID.PadLeft(1, '0'))</VersionPrefix>
<Description>Templates to use when creating an API Microservice for A Finaps Project.</Description>
<PackageTags>dotnet-new;templates;finaps</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>