/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v8.0.9
test/Directory.Build.props
26 строк
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> <Import Project="../Directory.Build.props" /> <PropertyGroup> <TargetFrameworks Condition="'$(DeveloperBuild)' != 'True'">net8.0;netcoreapp3.1</TargetFrameworks> <TargetFramework Condition="'$(DeveloperBuild)' == 'True'">net8.0</TargetFramework> <IsPackable>false</IsPackable> <!-- Suppress warnings for [RequiresPreviewFeatures] (<EnablePreviewFeatures> doesn't seem to work across <ProjectReference>) --> <NoWarn>$(NoWarn);CA2252</NoWarn> <WarningsNotAsErrors>$(WarningsNotAsErrors);NU1901;NU1902;NU1903</WarningsNotAsErrors> </PropertyGroup> <!-- We use the netcoreapp3.1 TFM to tests compatibility with netstandard2.0 but may of the the packages issue warnings because they have not been tested with netcoreapp3.1. Since testing for compatibility is exactly what we want to do here, we disable the warnings. --> <PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1'"> <SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings> </PropertyGroup> <ItemGroup> <PackageReference Include="GitHubActionsTestLogger" /> </ItemGroup> </Project>