-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathAWS.Deploy.Recipes.csproj
More file actions
42 lines (36 loc) · 1.43 KB
/
AWS.Deploy.Recipes.csproj
File metadata and controls
42 lines (36 loc) · 1.43 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>AWS.Deploy.Recipes</AssemblyName>
<RootNamespace>AWS.Deploy.Recipes</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Include="RecipeDefinitions\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="CdkTemplates\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Compile Remove="CdkTemplates\**" />
<Content Remove="CdkTemplates\.idea\**" />
<Content Remove="CdkTemplates\.vs\**" />
<EmbeddedResource Remove="CdkTemplates\.idea\**" />
<EmbeddedResource Remove="CdkTemplates\.vs\**" />
<None Remove="CdkTemplates\.idea\**" />
<None Remove="CdkTemplates\.vs\**" />
</ItemGroup>
<ItemGroup>
<None Remove="DeploymentBundleDefinitions\Container.deploymentbundle" />
<None Remove="DeploymentBundleDefinitions\DotnetPublishZipFile.deploymentbundle" />
</ItemGroup>
<ItemGroup>
<Content Include="DeploymentBundleDefinitions\Container.deploymentbundle">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="DeploymentBundleDefinitions\DotnetPublishZipFile.deploymentbundle">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>