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