-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Wangkanai.Architecture.Templates.csproj
63 lines (52 loc) · 2.82 KB
/
Wangkanai.Architecture.Templates.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Wangkanai.Architecture.Templates</PackageId>
<Title>Clean Architecture Solutions</Title>
<Authors>wangkanai</Authors>
<Description>Unleash the power of .NET 8 with our Clean Architecture NuGet package: a versatile template tailored for Blazor, Maui, and future ASP.NET Core MVC and Razor Page applications. Designed with Domain-Driven Design principles, it provides a modular foundation for building scalable, maintainable web and mobile applications. Benefit from an enhanced Blazor Identity UI, seamless Tabler admin portal integration, and a curated selection of wangkanai tools and extensions for accelerated development. Perfect for developers seeking a robust, ready-to-implement architecture that adapts to evolving project needs.</Description>
<PackageTags>clean;architecture;project;template;csharp;dotnet;blazor;maui;</PackageTags>
<PackageProjectUrl>https://github.com/wangkanai/architecture</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git://github.com/wangkanai/architecture</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<PackageType>Template</PackageType>
<TargetFramework>net8.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128;NU5110;NU5111;</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
<SuppressDependenciesWhenPacking>True</SuppressDependenciesWhenPacking>
<IsPackable>true</IsPackable>
<IsShipping>true</IsShipping>
<IsShippingPackage>true</IsShippingPackage>
</PropertyGroup>
<PropertyGroup>
<LocalizeTemplates>false</LocalizeTemplates>
</PropertyGroup>
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.TemplateEngine.Tasks" Version="*" PrivateAssets="all" IsImplicitlyDefined="true" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="assets\icon.png" Pack="true" PackagePath="\" />
<None Include="tools\**" Pack="true" PackagePath="\tools\" />
</ItemGroup>
<ItemGroup>
<Content Include="content\**\*" Exclude="content\**\node_modules\**;content\**\bin\**;content\**\obj\**;content\**\.vs\**;content\**\.vscode\**;content\**\.idea\**;content\**\wwwroot\dist\**;content\**\.git\**;content\**\demo\**;" />
<Compile Remove="**\*" />
</ItemGroup>
<ItemGroup>
<None Remove="artifacts\**" />
<None Remove="signed\**" />
<None Remove="demo\**\*" />
<Compile Remove="assets\**" />
<Compile Remove="content\**" />
<EmbeddedResource Remove="assets\**" />
</ItemGroup>
</Project>