-
Notifications
You must be signed in to change notification settings - Fork 0
/
DDD.CQRS.ProjectTemplate.csproj
26 lines (23 loc) · 1.11 KB
/
DDD.CQRS.ProjectTemplate.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>
<RepositoryUrl>https://github.com/my-repositories/DDD.CQRS.ProjectTemplate</RepositoryUrl>
<PackageType>Template</PackageType>
<PackageVersion>1.0.0</PackageVersion>
<PackageId>DDD.CQRS.ProjectTemplate</PackageId>
<Title>DDD.CQRS ProjectTemplate</Title>
<!-- <NuspecFile>DDD.CQRS.ProjectTemplate.nuspec</NuspecFile> -->
<Authors>Aleksandr Loktionov</Authors>
<Description>Template to use when creating an .NET Core application.</Description>
<PackageTags>dotnet-new;templates;ddd;cqrs</PackageTags>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoBuild>true</NoBuild>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>NU5128</NoWarn>
</PropertyGroup>
<ItemGroup>
<Content Include="templates/**/*" Exclude="templates/**/.DS_Store;templates/**/.idea/**;templates/**/bin/**;templates/**/obj/**;templates/ddd.cqrs/src/_CompanyName.ProjectName.sln" />
<Compile Remove="**/*" />
</ItemGroup>
</Project>