forked from NuGet/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNuGet.Indexing.csproj
More file actions
20 lines (18 loc) · 834 Bytes
/
NuGet.Indexing.csproj
File metadata and controls
20 lines (18 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>NuGet's indexing library for the Visual Studio client search functionality.</Description>
<TargetFramework>$(NETFXTargetFramework)</TargetFramework>
<NoWarn>$(NoWarn);CS1591;RS0041</NoWarn>
<PackProject>true</PackProject>
<Shipping>true</Shipping>
<IncludeInVsix>true</IncludeInVsix>
<SignWithMicrosoftKey>true</SignWithMicrosoftKey>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\NuGet.Core\NuGet.Protocol\NuGet.Protocol.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Lucene.Net" />
<PackageReference Include="SharpZipLib" ExcludeAssets="all" /> <!-- dependency of Lucene.net. Can delete when Lucene.net has an update with a newer dependency on sharpziplib -->
</ItemGroup>
</Project>