-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypeScriptParser.Tests.csproj
More file actions
34 lines (27 loc) · 1.11 KB
/
TypeScriptParser.Tests.csproj
File metadata and controls
34 lines (27 loc) · 1.11 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<!-- 测试项目不需要XML文档注释 -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TypeScriptParser\TypeScriptParser.csproj" />
</ItemGroup>
<!-- 导入Native库构建目标 - 必须在项目末尾 -->
<Import Project="..\TypeScriptParser\build\TypeScriptParser.props" />
<Import Project="..\TypeScriptParser\build\TypeScriptParser.targets" />
<!-- Native libraries now managed automatically via NuGet packages -->
</Project>