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.csproj
More file actions
44 lines (44 loc) · 1.66 KB
/
Microsoft.Python.Analysis.Caching.csproj
File metadata and controls
44 lines (44 loc) · 1.66 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
<Project>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Microsoft.Python.Analysis.Caching</RootNamespace>
<AssemblyName>Microsoft.Python.Analysis.Caching</AssemblyName>
</PropertyGroup>
<PropertyGroup>
<!--
1701, 1702 - "You may need to supply assembly policy"
-->
<NoWarn>1701;1702;$(NoWarn)</NoWarn>
<TieredCompilation>true</TieredCompilation>
</PropertyGroup>
<Import Project="..\..\..\build\NetStandard.settings" />
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<ItemGroup>
<Compile Remove="Readers\**" />
<Compile Remove="Writers\**" />
<EmbeddedResource Remove="Readers\**" />
<EmbeddedResource Remove="Writers\**" />
<None Remove="Readers\**" />
<None Remove="Writers\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Models\GenericParameterModel.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LiteDB" Version="5.0.8" />
<PackageReference Include="MicroBuild.Core" Version="0.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Analysis\Ast\Impl\Microsoft.Python.Analysis.csproj" />
<ProjectReference Include="..\..\Analysis\Core\Impl\Microsoft.Python.Analysis.Core.csproj" />
<ProjectReference Include="..\..\Core\Impl\Microsoft.Python.Core.csproj" />
</ItemGroup>
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
<Import Project="..\..\..\build\NetStandard.targets" />
</Project>