/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.0.18
src/Npgsql/Npgsql.csproj
22 строки
1 KB
Shay Rojansky
Remove old package references from netstandard2.0 (#4613)
17 сен 2022, 01:03
17 сен 2022, 01:03
ac8e13c
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <Authors>Shay Rojansky;Yoh Deadfall;Brar Piening;Nikita Kazmin;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> <!-- 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</TargetFrameworks> <TargetFrameworks Condition="'$(DeveloperBuild)' == 'True'">net5.0</TargetFrameworks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> <ItemGroup> <PackageReference Include="System.Runtime.CompilerServices.Unsafe" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'net5.0' "> <PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1' "> <PackageReference Include="System.Text.Json" Version="4.6.0" /> <PackageReference Include="System.Threading.Channels" Version="4.7.0" /> </ItemGroup> </Project>