-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJPMC.OrderManagement.Stack.csproj
More file actions
29 lines (24 loc) · 1014 Bytes
/
JPMC.OrderManagement.Stack.csproj
File metadata and controls
29 lines (24 loc) · 1014 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Amazon.CDK.Lib" Version="2.250.0" />
<PackageReference Include="Constructs" Version="10.6.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.6" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.6" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="10.0.6" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\JPMC.OrderManagement.Common\JPMC.OrderManagement.Common.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>