/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
eng/targets/PackageProject.targets
19 строк
854 B
Sam Harwell
Fix incremental build failure for package projects
20 дек 2021, 21:41
20 дек 2021, 21:41
bf2895f
Код
Авторство
О чём код?
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. --> <Project> <!-- Include this targets file in projects that build meta-packages. --> <!-- Projects that import this targets file do not produce binaries, they are only used to generate packages. The Build target only needs to build the project's dependencies (via ResolveProjectReferences). --> <Target Name="CoreBuild" DependsOnTargets="ResolveProjectReferences"> <MakeDir Directories="$(IntermediateOutputPath)" ContinueOnError="True"/> </Target> <ItemGroup> <!-- These projects will not create intermediate assemblies --> <IntermediateAssembly Remove="@(IntermediateAssembly)"/> </ItemGroup> </Project>