/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v9.0.5
src/Npgsql.Json.NET/Npgsql.Json.NET.csproj
20 строк
892 B
Shay Rojansky
Add [Experimental] to converter-related APIs (#5668)
12 апр 2024, 21:10
Не верифицирован
12 апр 2024, 21:10
c86e5ef
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <Authors>Shay Rojansky</Authors> <Description>Json.NET plugin for Npgsql, allowing transparent serialization/deserialization of JSON objects directly to and from the database.</Description> <PackageTags>npgsql;postgresql;json;postgres;ado;ado.net;database;sql</PackageTags> <TargetFramework>net6.0</TargetFramework> <TargetFramework Condition="'$(DeveloperBuild)' == 'True'">net8.0</TargetFramework> <Nullable>enable</Nullable> <NoWarn>$(NoWarn);NPG9001</NoWarn> <!-- Converter-related APIs are experimental --> </PropertyGroup> <ItemGroup> <PackageReference Include="Newtonsoft.Json" /> <PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Npgsql\Npgsql.csproj" /> </ItemGroup> </Project>