-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathWhipstaff.Testing.csproj
More file actions
25 lines (21 loc) · 1.1 KB
/
Whipstaff.Testing.csproj
File metadata and controls
25 lines (21 loc) · 1.1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp8.0</TargetFramework>
<DebugType>full</DebugType>
<DebugSymbols>True</DebugSymbols>
<IsPackable>False</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.8" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta7.25380.108" />
<PackageReference Include="xunit.v3.extensibility.core" Version="3.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Whipstaff.AspNetCore\Whipstaff.AspNetCore.csproj" />
<ProjectReference Include="..\Whipstaff.CommandLine\Whipstaff.CommandLine.csproj" />
<ProjectReference Include="..\Whipstaff.Entityframework.Relational\Whipstaff.EntityFramework.Relational.csproj" />
<ProjectReference Include="..\Whipstaff.EntityFramework\Whipstaff.EntityFramework.csproj" />
</ItemGroup>
</Project>