forked from eventuate-tram/eventuate-tram-core-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIO.Eventuate.Tram.IntegrationTests.csproj
39 lines (31 loc) · 1.22 KB
/
IO.Eventuate.Tram.IntegrationTests.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
<StartupObject></StartupObject>
</PropertyGroup>
<ItemGroup>
<None Remove="nlog.config" />
<None Remove="testsettings.json" />
</ItemGroup>
<ItemGroup>
<Content Include="nlog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="testsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.4" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Confluent.Kafka" Version="2.3.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\IO.Eventuate.Tram\IO.Eventuate.Tram.csproj" />
</ItemGroup>
</Project>