/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Directory.Build.BeforeCommonTargets.targets
25 строк
1 KB
Jeremy Koritzinsky
Convert ref and runtime packs to use the SharedFramework SDK and Arcade's installer tooling (#58612)
06 дек 2024, 03:37
Не верифицирован
06 дек 2024, 03:37
7949421
Код
Авторство
О чём код?
<Project> <PropertyGroup> <!-- Only build Microsoft.AspNetCore.App, Microsoft.AspNetCore.App.Ref, ref/ assemblies, and ProjectTemplates in source build. --> <!-- Analyzer package are needed in source build for WebSDK --> <ExcludeFromSourceOnlyBuild Condition="'$(ExcludeFromSourceOnlyBuild)' == '' and '$(DotNetBuildSourceOnly)' == 'true' and '$(IsAspNetCoreApp)' != 'true' and '$(UsingMicrosoftDotNetSharedFrameworkSdk)' != 'true' and '$(IsAnalyzersProject)' != 'true' and '$(IsProjectTemplateProject)' != 'true'">true</ExcludeFromSourceOnlyBuild> <!-- If the user has specified that they want to skip building any test related projects with SkipTestBuild, suppress all targets for TestProjects using ExcludeFromBuild. --> <ExcludeFromBuild Condition="'$(IsPackable)' != 'true' and ('$(SkipTestBuild)' == 'true' or ('$(DotNetBuild)' == 'true' and '$(DotNetBuildTests)' != 'true')) and ($(IsTestProject) or '$(IsPublishedAppTestProject)' == 'true' or '$(IsTestAssetProject)' == 'true' or '$(IsBenchmarkProject)' == 'true' or '$(IsSampleProject)' == 'true' or '$(IsSpecificationTestProject)' == 'true' or '$(IsMicrobenchmarksProject)' == 'true')">true</ExcludeFromBuild> </PropertyGroup> </Project>