Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Microsoft.DotNet.Arcade.Sdk/tools/BuildTasks.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
<Project>

<!-- Import the BundledVersions.props file from SDK to light-up Runtime="NET" task support.
Avoid importing for C++ projects.
Only import when NETCoreSdkBundledVersionsProps is not defined (non SDK style projects).
Remove when https://github.com/dotnet/msbuild/issues/12895 is implemented. -->
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.BundledVersions.props" Condition="'$(MSBuildRuntimeType)' == 'Full' and '$(NETCoreSdkBundledVersionsProps)' == ''" />
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.BundledVersions.props" Condition="'$(MSBuildRuntimeType)' == 'Full' and '$(MSBuildProjectExtension)' != '.vcxproj' and '$(NETCoreSdkBundledVersionsProps)' == ''" />
<!-- Set required RuntimeIdentifierGraphPath property for Runtime="NET" support. Remove when
a desktop msbuild (via VS) with https://github.com/dotnet/msbuild/pull/13176 is consumed. -->
<PropertyGroup Condition="'$(MSBuildRuntimeType)' == 'Full' and '$(UsingMicrosoftNETSdk)' != 'true' and '$(RuntimeIdentifierGraphPath)' == ''">
Expand Down
Loading