-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathK8s.csproj
24 lines (21 loc) · 838 Bytes
/
K8s.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace>$(RootNamespace).K8s</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Library\Library.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Flurl.Http" Version="4.0.2" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.1" />
<PackageReference Include="Polly" Version="8.5.2" />
<PackageReference Include="Pulumi" Version="3.38.0" />
<PackageReference Include="Pulumi.Aws" Version="6.72.0" />
<PackageReference Include="Pulumi.Kubernetes" Version="4.21.1" />
<PackageReference Include="Pulumi.Random" Version="4.8.2" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\*" />
</ItemGroup>
</Project>