-
Notifications
You must be signed in to change notification settings - Fork 414
Expand file tree
/
Copy pathVisualStudioEditorsSetup.csproj
More file actions
53 lines (43 loc) · 2.41 KB
/
VisualStudioEditorsSetup.csproj
File metadata and controls
53 lines (43 loc) · 2.41 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
45
46
47
48
49
50
51
52
53
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE.md file in the project root for more information. -->
<Project Sdk="Microsoft.NET.Sdk">
<!-- Note: VSIX signing is handled via AddVsixForSigning in Directory.Build.targets. -->
<Import Project="..\..\eng\imports\VisualStudioDesigner.props" />
<!-- Local properties -->
<PropertyGroup>
<_EditorsProjectName>Microsoft.VisualStudio.Editors</_EditorsProjectName>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Microsoft.VisualStudio</RootNamespace>
<TargetFramework>net472</TargetFramework>
<!-- VSIX -->
<ExtensionInstallationRoot>CommonExtensions</ExtensionInstallationRoot>
<ExtensionInstallationFolder>Microsoft\VisualStudio\Editors</ExtensionInstallationFolder>
<TargetVsixContainerName>$(AssemblyName).vsix</TargetVsixContainerName>
<TargetVsixContainer>$(VisualStudioSetupInsertionPath)$(TargetVsixContainerName)</TargetVsixContainer>
<!-- Set's the JSON manifest name for GetVsixPrimaryOutputs in Directory.Build.targets -->
<VsixManifestPackageId>$(_EditorsProjectName)</VsixManifestPackageId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VSSDK.BuildTools" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Microsoft.VisualStudio.AppDesigner\Microsoft.VisualStudio.AppDesigner.vbproj">
<IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup;GetCopyToOutputDirectoryItems;SatelliteDllsProjectOutputGroup</IncludeOutputGroupsInVSIX>
</ProjectReference>
<ProjectReference Include="..\..\src\$(_EditorsProjectName)\$(_EditorsProjectName).vbproj">
<IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup;GetCopyToOutputDirectoryItems;SatelliteDllsProjectOutputGroup;PkgdefProjectOutputGroup</IncludeOutputGroupsInVSIX>
</ProjectReference>
<ProjectReference Update="@(ProjectReference)">
<Name>%(Filename)</Name>
<IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup</IncludeOutputGroupsInVSIXLocalOnly>
<Ngen>true</Ngen>
<NgenArchitecture>All</NgenArchitecture>
<NgenPriority>3</NgenPriority>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\Common\ProvideCodeBaseBindingRedirection.cs">
<Link>ProvideCodeBaseBindingRedirection.cs</Link>
</Compile>
</ItemGroup>
</Project>