generated from Avanade/avanade-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNTangle.Template.csproj
51 lines (46 loc) · 2.09 KB
/
NTangle.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>NTangle.Template</RootNamespace>
<Product>NTangle Template</Product>
<Title>NTangle Template.</Title>
<Description>NTangle template solution for use with 'dotnet new'.</Description>
<PackageTags>untangle ntangle cdc change-data-capture sqlserver codegen</PackageTags>
</PropertyGroup>
<ItemGroup>
<Compile Remove="content\**\*" />
<EmbeddedResource Remove="content\**\*" />
<None Include="content\**\*" />
<Content Include="content\**">
<Pack>true</Pack>
<PackagePath>contentFiles\any\any\Schema\</PackagePath>
<PackageCopyToOutput>true</PackageCopyToOutput>
</Content>
</ItemGroup>
<ItemGroup>
<None Remove="content\AppName.CodeGen\ntangle.yaml" />
<None Remove="content\AppName.CodeGen\Program.cs" />
<None Remove="content\AppName.Database\AppName.Database.csproj" />
<None Remove="content\AppName.SidecarDb\AppName.SidecarDb.csproj" />
<None Remove="content\AppName.SidecarDb\Program.cs" />
<None Remove="content\AppName.Database\Program.cs" />
<None Remove="content\AppName.Publisher\AppName.Publisher.csproj" />
<None Remove="content\AppName.Publisher\appsettings.json" />
<None Remove="content\AppName.Publisher\DomainNameSettings.cs" />
<None Remove="content\AppName.Publisher\Functions\ContactFunction.cs" />
<None Remove="content\AppName.Publisher\Functions\RelayFunction.cs" />
<None Remove="content\AppName.Publisher\GlobalUsings.cs" />
<None Remove="content\AppName.Publisher\host.json" />
<None Remove="content\AppName.Publisher\local.settings.json" />
<None Remove="content\AppName.sln" />
</ItemGroup>
<ItemGroup>
<Content Update="content\AppName.Publisher\host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="content\AppName.Publisher\local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="..\..\Common.targets" />
</Project>