-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuget.csproj
41 lines (39 loc) · 1.91 KB
/
nuget.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<EnableDefaultItems>false</EnableDefaultItems>
<NoDefaultExcludes>true</NoDefaultExcludes>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageOutputPath>.</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<Content Include="src\**\*" Exclude="**\bin\**\*;**\obj\**\*;**\node_modules\**\*;"/>
<Compile Remove="**\*"/>
<None Include="README.md" Pack="true" PackagePath="\"/>
<!-- <None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers\dotnet\cs" Visible="false" />-->
</ItemGroup>
<PropertyGroup>
<PackageType>Template</PackageType>
<Version>4.0.0</Version>
<TargetFramework>net9.0</TargetFramework>
<PackageId>Klean</PackageId>
<Title>Klean Architecture</Title>
<Description>
A ready-to-use template for ASP.NET Core with Domain Driven Design - clean architecture, CQRS pattern,
StyleCop, and Blazor WASM front-end
</Description>
<Company>ddjerqq</Company>
<Authors>ddjerqq <[email protected]></Authors>
<Copyright>ddjerqq © 2024-2030</Copyright>
<PackageTags>c#;asp.net;core;template;web;clean architecture;ddd</PackageTags>
<PackageCopyright>ddjerqq © 2024-2030</PackageCopyright>
<PackageProjectUrl>https://github.com/ddjerqq/klean</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/ddjerqq/klean</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
</Project>