Skip to content

Commit 50ddfbb

Browse files
author
Livar
authored
Merge pull request #2290 from jeffkl/commontargets
Set default value for LanguageTargets to Microsoft.Common.targets instead of Microsoft.Common.CurrentVersion.targets
2 parents d6198f9 + e38e62d commit 50ddfbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tasks/Microsoft.NET.Build.Tasks/sdk/Sdk.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Copyright (c) .NET Foundation. All rights reserved.
3333
<!-- If LanguageTargets isn't otherwise set, then just import the common targets. This should allow the restore target to run,
3434
which could bring in NuGet packages that set the LanguageTargets to something else. This means support for different
3535
languages could either be supplied via an SDK or via a NuGet package. -->
36-
<LanguageTargets Condition="'$(LanguageTargets)' == ''">$(MSBuildToolsPath)\Microsoft.Common.CurrentVersion.targets</LanguageTargets>
36+
<LanguageTargets Condition="'$(LanguageTargets)' == ''">$(MSBuildToolsPath)\Microsoft.Common.targets</LanguageTargets>
3737
</PropertyGroup>
3838

3939
<!-- REMARK: Dont remove/rename, the LanguageTargets property is used by F# to hook inside the project's sdk

0 commit comments

Comments
 (0)