microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-shell-and-cli-windows-job

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

dotnet/typeagent/common.test/common.test.csproj

28lines · modecode

1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <TargetFramework>net8.0</TargetFramework>
5 <ImplicitUsings>enable</ImplicitUsings>
6 <Nullable>enable</Nullable>
7
8 <IsPackable>false</IsPackable>
9 <IsTestProject>true</IsTestProject>
10 </PropertyGroup>
11
12 <ItemGroup>
13 <PackageReference Include="coverlet.collector" Version="6.0.0" />
14 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
15 <PackageReference Include="xunit" Version="2.5.3" />
16 <PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
17 </ItemGroup>
18
19 <ItemGroup>
20 <ProjectReference Include="..\src\common\common.csproj" />
21 <ProjectReference Include="..\src\knowpro\knowpro.csproj" />
22 </ItemGroup>
23
24 <ItemGroup>
25 <Using Include="Xunit" />
26 </ItemGroup>
27
28</Project>
29