/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
eng/common/native/NativeAotSupported.props
28 строк
922 B
dotnet-maestro[bot]
[main] Source code updates from dotnet/dotnet (#67642)
09 июл 2026, 01:31
Не верифицирован
09 июл 2026, 01:31
cf0040c
Код
Авторство
О чём код?
<Project> <PropertyGroup> <!-- Reject unsupported OS via RID prefix match --> <_NativeAotSupportedOS Condition=" '$(TargetOS)' != 'browser' and '$(TargetOS)' != 'haiku' and '$(TargetOS)' != 'illumos' and '$(TargetOS)' != 'netbsd' and '$(TargetOS)' != 'solaris' ">true</_NativeAotSupportedOS> <!-- Reject unsupported architectures via RID suffix match --> <_NativeAotSupportedArch Condition=" '$(TargetArchitecture)' != 'wasm' and '$(TargetArchitecture)' != 's390x' and '$(TargetArchitecture)' != 'ppc64le' and ('$(TargetArchitecture)' != 'x86' or '$(TargetOS)' == 'windows') ">true</_NativeAotSupportedArch> <NativeAotSupported Condition=" '$(NativeAotSupported)' == '' and '$(_NativeAotSupportedOS)' == 'true' and '$(_NativeAotSupportedArch)' == 'true' ">true</NativeAotSupported> </PropertyGroup> </Project>