This repository was archived by the owner on Apr 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathMicrosoft.Python.Analysis.Caching.Tests.csproj
More file actions
42 lines (42 loc) · 1.84 KB
/
Microsoft.Python.Analysis.Caching.Tests.csproj
File metadata and controls
42 lines (42 loc) · 1.84 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
<Project>
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>Microsoft.Python.Analysis.Caching.Tests</RootNamespace>
<AssemblyName>Microsoft.Python.Analysis.Caching.Tests</AssemblyName>
</PropertyGroup>
<PropertyGroup>
<!--
1701, 1702 - "You may need to supply assembly policy"
-->
<NoWarn>1701;1702$(NoWarn)</NoWarn>
<LangVersion>7.2</LangVersion>
</PropertyGroup>
<Import Project="..\..\..\build\NetStandard.settings" />
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<ItemGroup>
<None Remove="app.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
<PackageReference Include="MicroBuild.Core" Version="0.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="NSubstitute" Version="4.2.2" />
<PackageReference Include="NewtonSoft.Json" Version="12.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Analysis\Ast\Impl\Microsoft.Python.Analysis.csproj" />
<ProjectReference Include="..\..\Analysis\Ast\Test\Microsoft.Python.Analysis.Tests.csproj" />
<ProjectReference Include="..\..\Analysis\Core\Impl\Microsoft.Python.Analysis.Core.csproj" />
<ProjectReference Include="..\..\Core\Impl\Microsoft.Python.Core.csproj" />
<ProjectReference Include="..\Impl\Microsoft.Python.Analysis.Caching.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Files\" />
</ItemGroup>
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
<Import Project="..\..\..\build\NetStandard.targets" />
</Project>