-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathSearchService.Tests.csproj
More file actions
54 lines (48 loc) · 2.15 KB
/
SearchService.Tests.csproj
File metadata and controls
54 lines (48 loc) · 2.15 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
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>Unicorn.Web.SearchService.Tests</AssemblyName>
<RootNamespace>Unicorn.Web.SearchService.Tests</RootNamespace>
</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="AWSSDK.DynamoDBv2" Version="4.0.15" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.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>
<Folder Include="events" />
</ItemGroup>
<ItemGroup>
<None Update="events\search_by_city.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="events\search_by_full_address.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="events\search_by_full_address_declined.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="events\search_by_full_address_new.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="events\search_by_full_address_not_found.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="events\search_by_street_event.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SearchService\SearchService.csproj" />
</ItemGroup>
</Project>