/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v8.0.9
src/Npgsql.NodaTime/Npgsql.NodaTime.csproj
43 строки
2 KB
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>Shay Rojansky</Authors> <Description>NodaTime plugin for Npgsql, allowing mapping of PostgreSQL date/time types to NodaTime types.</Description> <PackageTags>npgsql;postgresql;postgres;nodatime;date;time;ado;ado;net;database;sql</PackageTags> <PackageReadmeFile>README.md</PackageReadmeFile> <TargetFrameworks Condition="'$(DeveloperBuild)' != 'True'">netstandard2.0;net6.0</TargetFrameworks> <TargetFrameworks Condition="'$(DeveloperBuild)' == 'True'">net8.0</TargetFrameworks> <NoWarn>$(NoWarn);NPG9001</NoWarn> <!-- Converter-related APIs are experimental --> </PropertyGroup> <ItemGroup> <PackageReference Include="NodaTime" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' "> <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> <ItemGroup> <None Include="README.md" Pack="true" PackagePath="\" /> </ItemGroup> <ItemGroup> <EmbeddedResource Update="Properties\NpgsqlNodaTimeStrings.resx"> <Generator>ResXFileCodeGenerator</Generator> <LastGenOutput>NpgsqlNodaTimeStrings.Designer.cs</LastGenOutput> </EmbeddedResource> </ItemGroup> <ItemGroup> <Compile Update="Properties\NpgsqlNodaTimeStrings.Designer.cs"> <DesignTime>True</DesignTime> <AutoGen>True</AutoGen> <DependentUpon>NpgsqlNodaTimeStrings.resx</DependentUpon> </Compile> </ItemGroup> </Project>