/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v8.0.9
src/Npgsql.GeoJSON/Npgsql.GeoJSON.csproj
23 строки
1 KB
Shay Rojansky
Some dependency versions changes to get rid of transitive CVE errors
18 ноя 2024, 19:18
18 ноя 2024, 19:18
c607726
Код
Авторство
О чём код?
<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" /> <!-- Take direct reference on Newtonsoft.Json since the version referenced by GeoJSON.Net 1.2.19 (10.0.2) has CVEs against it --> <PackageReference Include="Newtonsoft.Json" /> </ItemGroup> <ItemGroup> <ProjectReference Include="../Npgsql/Npgsql.csproj" /> <ProjectReference Include="../Npgsql.SourceGenerators/Npgsql.SourceGenerators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" /> </ItemGroup> </Project>