-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPowerCSharp.CleanArchitecture.Template.csproj
More file actions
46 lines (43 loc) · 2.17 KB
/
Copy pathPowerCSharp.CleanArchitecture.Template.csproj
File metadata and controls
46 lines (43 loc) · 2.17 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageId>PowerCSharp.CleanArchitecture.Template</PackageId>
<PackageVersion>1.0.0</PackageVersion>
<Title>PowerCSharp Clean Architecture Template</Title>
<Description>Production-ready Clean Architecture .NET 8 WebApi starter template powered by PowerCSharp. Includes CQRS, FluentValidation, feature flags, caching, resilience, health checks, Docker, and a full test suite.</Description>
<Authors>Mario Alberto Arce</Authors>
<PackageProjectUrl>https://github.com/marioarce/PowerCSharp.CleanArchitecture</PackageProjectUrl>
<RepositoryUrl>https://github.com/marioarce/PowerCSharp.CleanArchitecture</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>dotnet-new;template;clean-architecture;webapi;powercsharp;csharp;mediatr;cqrs</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<!-- Template pack settings -->
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
</PropertyGroup>
<ItemGroup>
<Content Include=".template.config/**" />
<Content Include=".github/**" />
<Content Include=".editorconfig" />
<Content Include=".gitattributes" />
<Content Include=".gitignore" />
<Content Include="Directory.Build.props" />
<Content Include="NuGet.Config" />
<Content Include="global.json" />
<Content Include="Dockerfile" />
<Content Include="docker-compose.yml" />
<Content Include="LICENSE" />
<Content Include="*.sln" />
<Content Include="src/**"
Exclude="**/bin/**;**/obj/**;**/.mono/**;**/.DS_Store;**/*.user" />
<Content Include="tests/**"
Exclude="**/bin/**;**/obj/**;**/.mono/**;**/.DS_Store;**/*.user" />
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>