This repository has been archived by the owner on Nov 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPack.csproj
44 lines (44 loc) · 1.75 KB
/
Pack.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
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>8.2.3</PackageVersion>
<PackageId>ater.web.templates</PackageId>
<Title>Ater Web Templates</Title>
<Authors>ater.niltor</Authors>
<Description>
Templates to create ater.web framework.
基于ASP.NET Core的Web开发模板.
</Description>
<PackageTags>dotnet-new;templates;webapi;framework</PackageTags>
<TargetFramework>netstandard2.1</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<PackageOutputPath>nuget</PackageOutputPath>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Product>ater.web</Product>
<PackageProjectUrl>https://github.com/AterDev/ater.web</PackageProjectUrl>
<PackageIcon>logo.jpg</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/AterDev/ater.web</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>- manager中的Query和Command不在为public,避免在控制器中滥用!
</PackageReleaseNotes>
<NoWarn>$(NoWarn);NU5128;NU5110;NU5111</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**;templates\**\.vs\**;templates\**\node_modules\**;templates\**\.angular\**;templates\**\*.lock;templates\**\src\Modules\**;templates\**\.tmp\**" />
<Compile Remove="**\*" />
</ItemGroup>
<ItemGroup>
<None Update="logo.jpg">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>