-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathVisualStudio.Tests.csproj
More file actions
26 lines (21 loc) · 816 Bytes
/
VisualStudio.Tests.csproj
File metadata and controls
26 lines (21 loc) · 816 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
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>Devlooped.Tests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DotNetConfig" Version="1.0.6" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VisualStudio\VisualStudio.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>