/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4.1.13
src/VSIX/VSIX.csproj
126 строк
6 KB
Shay Rojansky
Make VSIX support VS2022
23 июн 2022, 12:36
23 июн 2022, 12:36
dfe187e
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion> <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> </PropertyGroup> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> <PropertyGroup> <!-- Generic options copied from VSIX project templates --> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <SchemaVersion>2.0</SchemaVersion> <ProjectTypeGuids>{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> <ProjectGuid>{ECFD8615-DEAD-4498-B262-85A4D0230229}</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>Npgsql.VSIX</RootNamespace> <AssemblyName>Npgsql.VSIX</AssemblyName> <TargetVsixContainerName>Npgsql.vsix</TargetVsixContainerName> <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion> <GeneratePkgDefFile>true</GeneratePkgDefFile> <UseCodebase>true</UseCodebase> <IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer> <IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer> <IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment> <CopyBuildOutputToOutputDirectory>true</CopyBuildOutputToOutputDirectory> <CopyOutputSymbolsToOutputDirectory>true</CopyOutputSymbolsToOutputDirectory> <StartAction>Program</StartAction> <StartProgram Condition="'$(DevEnvDir)' != ''">$(DevEnvDir)devenv.exe</StartProgram> <StartArguments>/rootsuffix Exp</StartArguments> <RuntimeIdentifiers>win</RuntimeIdentifiers> <!-- Specific options added in Npgsql --> <!-- See http://comealive.io/AppVeyor-Times-Out-VSIX/ for the following line --> <DeployExtension Condition="'$(AppVeyor)' != ''">False</DeployExtension> <NullableContextOptions>disable</NullableContextOptions> <!-- https://stackoverflow.com/questions/45938814/the-version-of-microsoft-net-sdk-used-by-this-project-is-insufficient-to-support --> <DependsOnNETStandard>false</DependsOnNETStandard> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>../../Npgsql.snk</AssemblyOriginatorKeyFile> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug\</OutputPath> <DefineConstants>DEBUG;TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> <OutputPath>bin\Release\</OutputPath> <DefineConstants>TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> <ItemGroup> <Compile Include="Constants.cs" /> <Compile Include="NpgsqlConnectionEquivalencyComparer.cs" /> <Compile Include="NpgsqlConnectionProperties.cs" /> <Compile Include="NpgsqlConnectionUIControl.cs"> <SubType>UserControl</SubType> </Compile> <Compile Include="NpgsqlConnectionUIControl.Designer.cs"> <DependentUpon>NpgsqlConnectionUIControl.cs</DependentUpon> </Compile> <Compile Include="NpgsqlProviderRegistration.cs" /> <Compile Include="NpgsqlProviderObjectFactory.cs" /> <Compile Include="NpgsqlSourceInformation.cs" /> <Compile Include="NpgsqlVSPackage.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Resources.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>Resources.resx</DependentUpon> </Compile> </ItemGroup> <ItemGroup> <None Include="source.extension.vsixmanifest"> <SubType>Designer</SubType> </None> </ItemGroup> <ItemGroup> <EmbeddedResource Include="NpgsqlDataViewSupport.xml" /> <EmbeddedResource Include="NpgsqlDataObjectSupport.xml" /> <EmbeddedResource Include="NpgsqlConnectionUIControl.resx"> <DependentUpon>NpgsqlConnectionUIControl.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="Resources.resx"> <Generator>ResXFileCodeGenerator</Generator> <LastGenOutput>Resources.Designer.cs</LastGenOutput> </EmbeddedResource> <EmbeddedResource Include="VSPackage.resx"> <MergeWithCTO>true</MergeWithCTO> <ManifestResourceName>VSPackage</ManifestResourceName> </EmbeddedResource> <Content Include="Resources\License.txt"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> <IncludeInVSIX>true</IncludeInVSIX> </Content> <Content Include="Resources\PostgreSQL.ico"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> <IncludeInVSIX>true</IncludeInVSIX> </Content> </ItemGroup> <ItemGroup> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Configuration" /> <Reference Include="System.Windows.Forms" /> </ItemGroup> <ItemGroup> <PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.2.32505.173" ExcludeAssets="runtime" /> <PackageReference Include="Microsoft.VisualStudio.Data.Framework" Version="17.2.32505.113" ExcludeAssets="runtime" /> <PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.2.2186" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Npgsql\Npgsql.csproj" /> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" /> </Project>