/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v6.0.13
src/Npgsql/Npgsql.csproj
60 строк
2 KB
Shay Rojansky
Remove old package references from netstandard2.0 (#4613)
16 авг 2022, 11:47
16 авг 2022, 11:47
d52e7e5
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <Authors>Shay Rojansky;Nikita Kazmin;Brar Piening;Yoh Deadfall;;Austin Drenski;Emil Lenngren;Francisco Figueiredo Jr.;Kenji Uno</Authors> <Description>Npgsql is the open source .NET data provider for PostgreSQL.</Description> <PackageTags>npgsql;postgresql;postgres;ado;ado.net;database;sql</PackageTags> <PackageReadmeFile>README.md</PackageReadmeFile> <!-- At this point we target netcoreapp3.1 to avoid taking a dependency on System.Text.Json, which is necessary for older TFMs. --> <TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp3.1;net5.0;net6.0</TargetFrameworks> <TargetFrameworks Condition="'$(DeveloperBuild)' == 'True'">net6.0</TargetFrameworks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> <ItemGroup> <PackageReference Include="System.Runtime.CompilerServices.Unsafe" /> </ItemGroup> <ItemGroup> <ProjectReference Include="../Npgsql.SourceGenerators/Npgsql.SourceGenerators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' "> <PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> <PackageReference Include="Microsoft.Bcl.HashCode" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1' "> <PackageReference Include="System.Text.Json" /> <PackageReference Include="System.Threading.Channels" /> <PackageReference Include="System.Collections.Immutable" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1' OR '$(TargetFramework)' == 'netcoreapp3.1' "> <PackageReference Include="System.Diagnostics.DiagnosticSource" /> </ItemGroup> <ItemGroup> <None Include="README.md" Pack="true" PackagePath="\"/> </ItemGroup> <ItemGroup> <EmbeddedResource Update="Properties\NpgsqlStrings.resx"> <Generator>ResXFileCodeGenerator</Generator> <LastGenOutput>NpgsqlStrings.Designer.cs</LastGenOutput> </EmbeddedResource> </ItemGroup> <ItemGroup> <Compile Update="Properties\NpgsqlStrings.Designer.cs"> <DesignTime>True</DesignTime> <AutoGen>True</AutoGen> <DependentUpon>NpgsqlStrings.resx</DependentUpon> </Compile> </ItemGroup> </Project>