forked from NuGet/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNuGet.VisualStudio.Interop.csproj
More file actions
33 lines (30 loc) · 1.21 KB
/
NuGet.VisualStudio.Interop.csproj
File metadata and controls
33 lines (30 loc) · 1.21 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NETFXTargetFramework)</TargetFramework>
<Shipping>true</Shipping>
<IncludeInVsix>true</IncludeInVsix>
<Description>NuGet's Visual Studio client Template Wizard interop implementation.</Description>
<RootNamespace>NuGet.VisualStudio</RootNamespace>
<!-- Override common.project assembly metadata -->
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NuGet.VisualStudio\NuGet.VisualStudio.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Shell.15.0" />
<PackageReference Include="Newtonsoft.Json" ExcludeAssets="all" />
</ItemGroup>
<ItemGroup Label="transitive package pinning">
<!--
These packages are dependencies of Microsoft.VisualStudio.Shell.15.0
When it is upgraded to a newer version, try deleting the below PackageReferences
-->
<PackageReference Include="Microsoft.IO.Redist" />
<PackageReference Include="System.Text.Json" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.ComponentModel.Composition" />
</ItemGroup>
</Project>