-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathAnto.Abp.Microservice.Template.csproj
28 lines (25 loc) · 1.19 KB
/
Anto.Abp.Microservice.Template.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<Version>1.3.1</Version>
<TargetFramework>net8.0</TargetFramework>
<PackageId>Anto.Abp.Microservice.Template</PackageId>
<Title>Abp Microservice Template</Title>
<Authors>Anto Subash</Authors>
<Description>Abp Microservice Template</Description>
<PackageTags>abp;microservice;template;yarp;tye</PackageTags>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<NoDefaultExcludes>true</NoDefaultExcludes>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/antosubash/AbpMicroservice</PackageProjectUrl>
<RepositoryUrl>https://github.com/antosubash/AbpMicroservice</RepositoryUrl>
<PackageReadmeFile>readme.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="**\*" />
<Content Include="src\**\*" Exclude="src\**\bin\**;src\**\obj\**" />
<Content Include="readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>