forked from NuGet/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NuGet.VisualStudio.Implementation.csproj
76 lines (74 loc) · 3.91 KB
/
NuGet.VisualStudio.Implementation.csproj
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<Project>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'NuGet.sln'))\build\common.props" />
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<PropertyGroup>
<TargetFramework>$(NETFXTargetFramework)</TargetFramework>
<Shipping>true</Shipping>
<IncludeInVSIX>true</IncludeInVSIX>
<Description>Implementation of the NuGet.VisualStudio extensibility APIs.</Description>
<Guid>9623cf30-192c-4864-b419-29649169ae30</Guid>
<ImportedFromTypeLib>NuGet.VisualStudio.Implementation</ImportedFromTypeLib>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.IO.Compression" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Net.Http.WebRequest" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Security" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(NuGetClientsSrcDirectory)NuGet.PackageManagement.VisualStudio\NuGet.PackageManagement.VisualStudio.csproj" />
<ProjectReference Include="$(NuGetClientsSrcDirectory)NuGet.VisualStudio.Contracts\NuGet.VisualStudio.Contracts.csproj" />
<ProjectReference Include="$(NuGetClientsSrcDirectory)NuGet.VisualStudio\NuGet.VisualStudio.csproj" />
<ProjectReference Include="$(NuGetClientsSrcDirectory)NuGet.VisualStudio.Common\NuGet.VisualStudio.Common.csproj" />
</ItemGroup>
<ItemGroup>
<PackageDownload Include="Microsoft.VisualStudio.ProjectSystem.Managed" />
<PackageDownload Include="Microsoft.VisualStudio.ProjectSystem.Managed.VS" />
<PackageReference Include="Microsoft.VisualStudio.Sdk" />
<PackageReference Include="Microsoft.VSSDK.BuildTools" GeneratePathProperty="true" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.VisualStudio.ProjectSystem.VS">
<HintPath>$(NuGetPackageRoot)microsoft.visualstudio.projectsystem\16.7.156-pre\lib\net472\Microsoft.VisualStudio.ProjectSystem.VS.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.ProjectSystem.Managed">
<HintPath>$(NuGetPackageRoot)microsoft.visualstudio.projectsystem.managed\$(ProjectSystemManagedVersion)\lib\net472\Microsoft.VisualStudio.ProjectSystem.Managed.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.ProjectSystem.Managed.VS">
<HintPath>$(NuGetPackageRoot)microsoft.visualstudio.projectsystem.managed.vs\$(ProjectSystemManagedVersion)\lib\net472\Microsoft.VisualStudio.ProjectSystem.Managed.VS.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.ExtensionEngine">
<HintPath>$(PkgMicrosoft_VSSDK_BuildTools)\tools\vssdk\Microsoft.VisualStudio.ExtensionEngine.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="CommonResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>CommonResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Resources\VsResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>VsResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<Compile Update="CommonResources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>CommonResources.resx</DependentUpon>
</Compile>
<Compile Update="Resources\VsResources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>VsResources.resx</DependentUpon>
</Compile>
</ItemGroup>
<Import Project="$(BuildCommonDirectory)common.targets" />
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
</Project>