-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPack.csproj
More file actions
49 lines (49 loc) · 2.28 KB
/
Pack.csproj
File metadata and controls
49 lines (49 loc) · 2.28 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<Version>1.2.7</Version>
<PackageId>Perigon.templates</PackageId>
<Title>Perigon Templates</Title>
<Authors>Ater.NilTor</Authors>
<Description>
Well-structured fast development template based on ASP.NET Core / EF Core / Aspire
</Description>
<PackageTags>dotnet-new;templates;webapi;framework;efcore;aspire;ai</PackageTags>
<TargetFramework>netstandard2.1</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<PackageOutputPath>nuget</PackageOutputPath>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Product>Perigon.templates</Product>
<PackageProjectUrl>https://github.com/AterDev/Perigon.template</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/AterDev/Perigon.template</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>1. upgrade Aspire and core dependencies to the latest stable versions.
2. migrate Excel helper to MiniExcel and remove EPPlus.
3. refresh frontend styles and template scripts.
</PackageReleaseNotes>
<NoWarn>$(NoWarn);NU5128;NU5110;NU5111</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<PropertyGroup>
<!-- 定义通用排除模式 -->
<StandardExcludes>
**\bin\**;**\obj\**;**\.vs\**;**\node_modules\**;**\.angular\**;**\*.lock;**\pnpm-lock.yaml;**\dist\**</StandardExcludes>
</PropertyGroup>
<ItemGroup>
<Content Include="ApiStandard\**\*"
Exclude="$(StandardExcludes);ApiStandard\templates\**;ApiStandard\src\Modules\**;ApiStandard\test\ManagerBaseTests\**" />
<Compile Remove="**\*" />
<None Update="logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>