-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsharp-ddd-template.csproj
57 lines (53 loc) · 2.55 KB
/
csharp-ddd-template.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0.3</PackageVersion>
<PackageId>CSharp.DDD.Template</PackageId>
<Title>CSharp DDD Template</Title>
<Authors>郭明</Authors>
<Description>Templates to use when creating an application.</Description>
<PackageTags>dotnet-new;templates;contoso</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<PackOnBuild>true</PackOnBuild>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
<Content Include="readme.md" />
</ItemGroup>
<ItemGroup>
<None Remove="readme.md" />
</ItemGroup>
<ItemGroup>
<Content Update="templates\csharp-ddd-template\src\CSharp.DDD.Template.API\Config\appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="templates\csharp-ddd-template\src\CSharp.DDD.Template.API\Config\tracing.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="templates\csharp-ddd-template\src\CSharp.DDD.Template.API\Config\rabbitmq.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="templates\csharp-ddd-template\src\CSharp.DDD.Template.API\Config\logging.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="templates\csharp-ddd-template\src\CSharp.DDD.Template.API\Config\metrics.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="templates\csharp-ddd-template\src\CSharp.DDD.Template.API\Config\mysql.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="templates\csharp-ddd-template\src\CSharp.DDD.Template.API\Config\service.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="templates\csharp-ddd-template\src\CSharp.DDD.Template.API\Config\redis.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="templates\csharp-ddd-template\src\CSharp.DDD.Template.API\Config\log4net.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>