-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPainKiller.PowerCommands.KubernetesCommands.csproj
41 lines (35 loc) · 1.57 KB
/
PainKiller.PowerCommands.KubernetesCommands.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
<LangVersion>10.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Commands\Templates\**" />
<EmbeddedResource Remove="Commands\Templates\**" />
<None Remove="Commands\Templates\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\PainKiller.PowerCommands.Configuration\PainKiller.PowerCommands.Configuration.csproj" />
<ProjectReference Include="..\Core\PainKiller.PowerCommands.Core\PainKiller.PowerCommands.Core.csproj" />
<ProjectReference Include="..\Core\PainKiller.PowerCommands.ReadLine\PainKiller.PowerCommands.ReadLine.csproj" />
<ProjectReference Include="..\Core\PainKiller.PowerCommands.Security\PainKiller.PowerCommands.Security.csproj" />
<ProjectReference Include="..\Core\PainKiller.PowerCommands.Shared\PainKiller.PowerCommands.Shared.csproj" />
<ProjectReference Include="..\Third party components\PainKiller.SerilogExtensions\PainKiller.SerilogExtensions.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="ArtifactPathsConfiguration.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="PowerCommandsConfiguration.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SealedSecretController.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="DomainObjects\" />
</ItemGroup>
</Project>