/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
eng/targets/VisualStudio.FastUpToDateCheckWorkarounds.targets
15 строк
973 B
Jason Malinowski
Move comment
15 сен 2025, 23:29
15 сен 2025, 23:29
f94071d
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <!-- 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> <!-- Add a workaround for https://github.com/dotnet/project-system/issues/9651 until we decide what we want to do there long term. --> <PropertyGroup> <CollectUpToDateCheckInputDesignTimeDependsOn>$(CollectUpToDateCheckInputDesignTimeDependsOn);RemoveBuildOutputSourceItems</CollectUpToDateCheckInputDesignTimeDependsOn> </PropertyGroup> <Target Name="RemoveBuildOutputSourceItems" DependsOnTargets="AddUpToDateCheckVSIXSourceItems" Condition="'$(CreateVsixContainer)' == 'true'"> <ItemGroup> <_ItemsInObjDirectory Include="$(IntermediateOutputPath)\**\*" Set="VsixItems" /> <UpToDateCheckInput Remove="@(_ItemsInObjDirectory)" MatchOnMetadata="Set" /> </ItemGroup> </Target> </Project>