| <?xml version="1.0" encoding="utf-8"?> |
| <Project> |
| <Import Sdk="Microsoft.NET.Sdk" Project="Sdk.props" /> |
| |
| <PropertyGroup> |
| <TargetFramework>net472</TargetFramework> |
| <RootNamespace>Lucene.Net.CodeAnalysis.Dev.Vsix</RootNamespace> |
| <AssemblyName>Lucene.Net.CodeAnalysis.Dev.Vsix</AssemblyName> |
| </PropertyGroup> |
| |
| <PropertyGroup> |
| <GeneratePkgDefFile>false</GeneratePkgDefFile> |
| <IncludeAssemblyInVSIXContainer>false</IncludeAssemblyInVSIXContainer> |
| <IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer> |
| <IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment> |
| <CopyBuildOutputToOutputDirectory>false</CopyBuildOutputToOutputDirectory> |
| <CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory> |
| <VSSDKTargetPlatformRegRootSuffix>Roslyn</VSSDKTargetPlatformRegRootSuffix> |
| </PropertyGroup> |
| |
| <ItemGroup> |
| <PackageReference Include="Microsoft.VSSDK.BuildTools" Version="16.9.1050" PrivateAssets="all" /> |
| </ItemGroup> |
| |
| <PropertyGroup> |
| <StartAction>Program</StartAction> |
| <StartProgram>$(DevEnvDir)devenv.exe</StartProgram> |
| <StartArguments>/rootsuffix $(VSSDKTargetPlatformRegRootSuffix)</StartArguments> |
| </PropertyGroup> |
| |
| <Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" /> |
| |
| <Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="Exists('$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets')" /> |
| |
| <ItemGroup> |
| <ProjectReference Include="..\Lucene.Net.CodeAnalysis.Dev.Package\Lucene.Net.CodeAnalysis.Dev.Package.csproj" /> |
| <ProjectReference Include="..\Lucene.Net.CodeAnalysis.Dev\Lucene.Net.CodeAnalysis.Dev.csproj" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <!-- https://github.com/dotnet/sdk/issues/433 --> |
| <ProjectReference Update="@(ProjectReference)" AdditionalProperties="TargetFramework=netstandard2.0" /> |
| |
| <!-- https://github.com/Microsoft/extendvs/issues/57 --> |
| <ProjectReference Update="@(ProjectReference)" Name="%(Filename)" /> |
| </ItemGroup> |
| |
| </Project> |