Fonts/Directory.Build.props

48 строки
1.8 KiB
Plaintext
Исходник Обычный вид История

<?xml version="1.0" encoding="utf-8"?>
<Project>
<!--
Directory.Build.props is automatically picked up and imported by
Microsoft.Common.props. This file needs to exist, even if empty so that
files in the parent directory tree, with the same name, are not imported
instead. The import fairly early and only Sdk.props will have been imported
beforehand. We also don't need to add ourselves to MSBuildAllProjects, as
that is done by the file that imports us.
-->
<PropertyGroup>
2020-12-13 20:33:42 +03:00
<!-- This MUST be defined before importing props. -->
<SixLaborsSolutionDirectory>$(MSBuildThisFileDirectory)</SixLaborsSolutionDirectory>
</PropertyGroup>
2020-12-13 20:33:42 +03:00
<!-- Import the shared global .props file -->
<Import Project="$(MSBuildThisFileDirectory)shared-infrastructure\msbuild\props\SixLabors.Global.props" />
2023-03-13 14:10:18 +03:00
<!--Add Feedz.io restore sources while we wait for the ability to update shared infrastructure-->
<PropertyGroup>
<RestoreSources>
$(RestoreSources);
https://f.feedz.io/sixlabors/sixlabors/nuget/index.json;
</RestoreSources>
</PropertyGroup>
<!--
https://apisof.net/
2022-02-09 04:10:19 +03:00
+===================+=====================+
| SUPPORTS | NULLABLE_ATTRIBUTES |
+===================+=====================+
| netcoreapp3.1 | Y |
| netstandard2.1 | Y |
| netstandard2.0 | N |
+===================+=====================+
2020-12-13 20:33:42 +03:00
-->
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
2022-02-09 04:10:19 +03:00
<DefineConstants>$(DefineConstants);NULLABLE_ATTRIBUTES</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
2022-02-09 04:10:19 +03:00
<DefineConstants>$(DefineConstants);NULLABLE_ATTRIBUTES</DefineConstants>
</PropertyGroup>
</Project>