generated from amazon-archives/__template_MIT-0
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathApprovalService.Tests.csproj
More file actions
53 lines (48 loc) · 2.34 KB
/
ApprovalService.Tests.csproj
File metadata and controls
53 lines (48 loc) · 2.34 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
43
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>Unicorn.Web.ApprovalService.Tests</AssemblyName>
<RootNamespace>Unicorn.Web.ApprovalService.Tests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.1" />
<PackageReference Include="Amazon.Lambda.Core" Version="2.3.0" />
<PackageReference Include="Amazon.Lambda.DynamoDBEvents" Version="3.1.1" />
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.3" />
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.402" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="NBuilder" Version="6.1.0" />
<PackageReference Include="NSubstitute" Version="5.1.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Update="events\property_approved.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="events\request_already_approved.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="events\request_approval_bad_input.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="events\request_approval_event.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="events\request_invalid_property_id.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="events\request_non_existent_property.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ApprovalService\ApprovalService.csproj" />
</ItemGroup>
</Project>