microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
d4944c6517c9a96a3c419f827769f518913f1b75

Branches

Tags

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

Clone

HTTPS

Download ZIP

dotnet/autoShell.Tests/autoShell.Tests.csproj

30lines · modecode

1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <TargetFramework>net8.0-windows</TargetFramework>
5 <ImplicitUsings>enable</ImplicitUsings>
6 <Nullable>enable</Nullable>
7 <IsPackable>false</IsPackable>
8 <IsTestProject>true</IsTestProject>
9 <!-- JSON002: raw JSON strings in test assertions are intentional -->
10 <!-- IDE1006: naming convention inherited from main project editorconfig -->
11 <NoWarn>$(NoWarn);JSON002;IDE1006</NoWarn>
12 </PropertyGroup>
13
14 <ItemGroup>
15 <PackageReference Include="coverlet.collector" Version="6.0.0" />
16 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
17 <PackageReference Include="Moq" Version="4.20.72" />
18 <PackageReference Include="xunit" Version="2.5.3" />
19 <PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
20 </ItemGroup>
21
22 <ItemGroup>
23 <ProjectReference Include="..\autoShell\autoShell.csproj" />
24 </ItemGroup>
25
26 <ItemGroup>
27 <Using Include="Xunit" />
28 </ItemGroup>
29
30</Project>
31