/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4.1.15
src/Npgsql/Npgsql.csproj
32 строки
2 KB
Shay Rojansky
Restrict PublicApiAnalyzer to Npgsql only
15 ноя 2020, 20:34
15 ноя 2020, 20:34
d6e9375
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <Authors>Shay Rojansky;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> <!-- At this point we target netcoreapp3.0 to avoid taking a dependency on System.Text.Json, which is necessary for all other TFMs. --> <TargetFrameworks>net461;netstandard2.0;netstandard2.1;netcoreapp3.0</TargetFrameworks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> <ItemGroup> <PackageReference Include="System.Runtime.CompilerServices.Unsafe" /> <PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> <Reference Include="System.Transactions" Pack="false" /> <Reference Include="System.DirectoryServices" Pack="false" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'net461' OR '$(TargetFramework)' == 'netstandard2.0' "> <PackageReference Include="System.Memory" Version="4.5.3" /> <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.3" /> <PackageReference Include="System.ValueTuple" Version="4.5.0" /> <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="1.1.0" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'net461' OR '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1' "> <PackageReference Include="System.Text.Json" Version="4.6.0" /> </ItemGroup> <ItemGroup> <AdditionalFiles Include="PublicAPI/$(TargetFramework)/PublicAPI.Shipped.txt" /> <AdditionalFiles Include="PublicAPI/$(TargetFramework)/PublicAPI.Unshipped.txt" /> </ItemGroup> </Project>