-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTests.csproj
More file actions
46 lines (38 loc) · 1.62 KB
/
Tests.csproj
File metadata and controls
46 lines (38 loc) · 1.62 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<RootNamespace>CodeParserTests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="NUnit" Version="4.5.1" />
<PackageReference Include="NUnit.Analyzers" Version="4.12.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CodeParser\CodeParser.csproj" />
<ProjectReference Include="..\CodeGraph\CodeGraph.csproj" />
<ProjectReference Include="..\CSharpCodeAnalyst\CSharpCodeAnalyst.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.Msagl">
<HintPath>..\ReferencedAssemblies\Microsoft.Msagl.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Msagl.Drawing">
<HintPath>..\ReferencedAssemblies\Microsoft.Msagl.Drawing.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Using Include="NUnit.Framework" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.Build.Framework" Version="18.4.0" />
</ItemGroup>
</Project>