/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v8.0.5
src/Npgsql.GeoJSON/Npgsql.GeoJSON.csproj
20 строк
1003 B
Shay Rojansky
Add [Experimental] to converter-related APIs (#5668)
12 апр 2024, 21:12
12 апр 2024, 21:12
4e5fb5a
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <Authors>Yoh Deadfall;Shay Rojansky</Authors> <Description>GeoJSON plugin for Npgsql, allowing mapping of PostGIS geometry types to GeoJSON types.</Description> <PackageTags>npgsql;postgresql;postgres;postgis;geojson;spatial;ado;ado.net;database;sql</PackageTags> <TargetFramework>netstandard2.0</TargetFramework> <TargetFramework Condition="'$(DeveloperBuild)' == 'True'">net8.0</TargetFramework> <NoWarn>$(NoWarn);NPG9001</NoWarn> <!-- Converter-related APIs are experimental --> </PropertyGroup> <ItemGroup> <PackageReference Include="GeoJSON.Net" /> <PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" /> </ItemGroup> <ItemGroup> <ProjectReference Include="../Npgsql/Npgsql.csproj" /> <ProjectReference Include="../Npgsql.SourceGenerators/Npgsql.SourceGenerators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" /> </ItemGroup> </Project>