You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.3 KiB
30 lines
1.3 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework> <!-- 或其他适合的框架 -->
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageId>LINGYUN.Abp.MicroService.Templates</PackageId>
|
|
<Version>8.1.3</Version>
|
|
<Authors>colin.in@foxmail.com</Authors>
|
|
<Description>Abp framework micro-service template</Description>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
|
<PackageProjectUrl>https://github.com/colinin/abp-next-admin</PackageProjectUrl>
|
|
<PackageTags>micro webapi cloud</PackageTags>
|
|
<PackageType>Template</PackageType>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/colinin/abp-next-admin</RepositoryUrl>
|
|
<DevelopmentDependency>true</DevelopmentDependency>
|
|
<IsPackable>true</IsPackable>
|
|
<IsShipping>true</IsShipping>
|
|
<IsShippingPackage>true</IsShippingPackage>
|
|
<IncludeBuildOutput>False</IncludeBuildOutput>
|
|
<IncludeSource>False</IncludeSource>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="content\**" Exclude="**/bin/**;**/obj/**;**/LocalNuget/**;**/.vs/**;**/.vscode/**;">
|
|
<Pack>true</Pack>
|
|
<PackagePath>content</PackagePath>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|