-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNexusStack.Template.csproj
More file actions
25 lines (24 loc) · 1.32 KB
/
NexusStack.Template.csproj
File metadata and controls
25 lines (24 loc) · 1.32 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0.0</PackageVersion>
<PackageId>NexusStack.Template</PackageId>
<Title>NexusStack - Modern Microservices Solution Template</Title>
<Authors>Leo Wang</Authors>
<Description>🚀 A modern, production-ready microservices solution template for .NET with SignalR, RabbitMQ, Redis, EF Core and clean architecture.</Description>
<PackageTags>dotnet-new;templates;microservices;signalr;rabbitmq;redis;efcore;nexusstack;clean-architecture</PackageTags>
<PackageProjectUrl>https://github.com/yongpengW/NexusStack</PackageProjectUrl>
<RepositoryUrl>https://github.com/yongpengW/NexusStack</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<ItemGroup>
<Content Include="**\*" Exclude="**\bin\**;**\obj\**;**\.vs\**;**\.git\**;**\.idea\**;**\packages\**;**\*.user;**\*.suo" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>