-
Notifications
You must be signed in to change notification settings - Fork 488
/
Copy pathEventsTests.NET6.csproj
74 lines (63 loc) · 4.13 KB
/
EventsTests.NET6.csproj
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<PackageId>EventsTests31</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<RootNamespace>EventsTests.NET6</RootNamespace>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="../EventsTests.Shared/*.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Remove="ecs-container-state-change-event.json" />
<None Remove="ecs-task-state-change-event.json" />
<None Remove="kinesis-analytics-inputpreprocessing-event.json" />
<None Remove="kinesis-analytics-inputpreprocessing-response.json" />
<None Remove="kinesis-analytics-outputdelivery-event.json" />
<None Remove="kinesis-analytics-outputdelivery-response.json" />
<None Remove="simple-email-event-s3.json" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Amazon.Lambda.MQEvents\Amazon.Lambda.MQEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.CloudWatchEvents\Amazon.Lambda.CloudWatchEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.ApplicationLoadBalancerEvents\Amazon.Lambda.ApplicationLoadBalancerEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.CloudWatchLogsEvents\Amazon.Lambda.CloudWatchLogsEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.ConnectEvents\Amazon.Lambda.ConnectEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.Core\Amazon.Lambda.Core.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.KafkaEvents\Amazon.Lambda.KafkaEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.KinesisAnalyticsEvents\Amazon.Lambda.KinesisAnalyticsEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.KinesisFirehoseEvents\Amazon.Lambda.KinesisFirehoseEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.LexEvents\Amazon.Lambda.LexEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.LexV2Events\Amazon.Lambda.LexV2Events.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.Serialization.Json\Amazon.Lambda.Serialization.Json.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.CognitoEvents\Amazon.Lambda.CognitoEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.ConfigEvents\Amazon.Lambda.ConfigEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.DynamoDBEvents\Amazon.Lambda.DynamoDBEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.KinesisEvents\Amazon.Lambda.KinesisEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.S3Events\Amazon.Lambda.S3Events.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.SimpleEmailEvents\Amazon.Lambda.SimpleEmailEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.SNSEvents\Amazon.Lambda.SNSEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.APIGatewayEvents\Amazon.Lambda.APIGatewayEvents.csproj" />
<ProjectReference Include="..\..\src\Amazon.Lambda.SQSEvents\Amazon.Lambda.SQSEvents.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Amazon.Lambda.Serialization.SystemTextJson\Amazon.Lambda.Serialization.SystemTextJson.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.301.14" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="AWSSDK.Core" Version="3.7.302.13" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<Import Project="..\EventsTests.Shared\EventsTests.Shared.projitems" Label="Shared" />
</Project>