-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathContractsService.Tests.csproj
More file actions
executable file
·37 lines (32 loc) · 1.54 KB
/
ContractsService.Tests.csproj
File metadata and controls
executable file
·37 lines (32 loc) · 1.54 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<AssemblyName>Unicorn.Contracts.ContractService.Tests</AssemblyName>
<RootNamespace>Unicorn.Contracts.ContractService.Tests</RootNamespace>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.Core" Version="2.8.1" />
<PackageReference Include="Amazon.Lambda.DynamoDBEvents" Version="3.1.2" />
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="3.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="NBuilder" Version="6.1.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ContractsService\ContractsService.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="events\create_contract_valid_payload_1.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="events\update_contract_valid_payload_1.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>