-
Notifications
You must be signed in to change notification settings - Fork 0
/
TemplatePack.csproj
26 lines (21 loc) · 1 KB
/
TemplatePack.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0</PackageVersion>
<PackageId>JanKnipp.Templates.Net5.Worker.RabbitMQ</PackageId>
<Title>Worker Template for RabbitMQ</Title>
<Authors>Jan Knipp</Authors>
<Description>Template for creating .net 5 services for RabbitMQ</Description>
<PackageTags>dotnet-new;templates;worker;services;net-core;rabbitmq;quartz.net;masstransit</PackageTags>
<TargetFramework>net5.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="**" Exclude="**\bin\**;**\obj\**;**\.vs\**;**\.git\**;**\.github\**;.gitignore;LICENSE;README.md;TemplatePack.csproj;**\.template.config\**;**\*DotSettings.user">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Content>
<Compile Remove="**\*" />
</ItemGroup>
</Project>