-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAws.csproj
More file actions
23 lines (20 loc) · 762 Bytes
/
Aws.csproj
File metadata and controls
23 lines (20 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace>$(RootNamespace).Aws</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\K8s\K8s.csproj" />
<ProjectReference Include="..\Library\Library.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="IPNetwork2" Version="3.6.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.15" />
<PackageReference Include="Pulumi" Version="3.38.0" />
<PackageReference Include="Pulumi.Aws" Version="5.11.0" />
<PackageReference Include="Pulumi.Tls" Version="4.6.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\*" />
</ItemGroup>
</Project>