/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v9.0.4
src/Npgsql/Npgsql.csproj
51 строка
2 KB
Nino Floris
STJ 9.0 alternative approach (#5941)
19 ноя 2024, 13:57
19 ноя 2024, 13:57
7fa9365
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <Authors>Shay Rojansky;Nikita Kazmin;Brar Piening;Nino Floris;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> <PackageReadmeFile>README.md</PackageReadmeFile> <TargetFrameworks>net6.0;net8.0</TargetFrameworks> <TargetFrameworks Condition="'$(DeveloperBuild)' == 'True'">net8.0</TargetFrameworks> <NoWarn>$(NoWarn);CA2017</NoWarn> <NoWarn>$(NoWarn);NPG9001</NoWarn> <!-- Converter-related APIs are experimental --> <NoWarn>$(NoWarn);NPG9002</NoWarn> <!-- DatabaseInfo-related APIs are experimental --> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" /> </ItemGroup> <ItemGroup> <ProjectReference Include="../Npgsql.SourceGenerators/Npgsql.SourceGenerators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' "> <PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' "> <PackageReference Include="System.Text.Json" /> <PackageReference Include="System.Runtime.CompilerServices.Unsafe" /> <PackageReference Include="System.Diagnostics.DiagnosticSource" /> </ItemGroup> <ItemGroup> <None Include="README.md" Pack="true" PackagePath="\" /> </ItemGroup> <ItemGroup> <EmbeddedResource Update="Properties\NpgsqlStrings.resx"> <Generator>ResXFileCodeGenerator</Generator> <LastGenOutput>NpgsqlStrings.Designer.cs</LastGenOutput> </EmbeddedResource> </ItemGroup> <ItemGroup> <Compile Update="Properties\NpgsqlStrings.Designer.cs"> <DesignTime>True</DesignTime> <AutoGen>True</AutoGen> <DependentUpon>NpgsqlStrings.resx</DependentUpon> </Compile> </ItemGroup> </Project>