-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathCoreWiki.Test.csproj
More file actions
25 lines (20 loc) · 945 Bytes
/
CoreWiki.Test.csproj
File metadata and controls
25 lines (20 loc) · 945 Bytes
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>netcoreapp2.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
<PackageReference Include="Moq" Version="4.15.2" />
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
<PackageReference Include="XunitXml.TestLogger" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CoreWiki.Core\CoreWiki.Core.csproj" />
<ProjectReference Include="..\CoreWiki.Notifications\CoreWiki.Notifications.csproj" />
<ProjectReference Include="..\CoreWiki\CoreWiki.csproj" />
</ItemGroup>
</Project>