Skip to content

Commit 46a3b93

Browse files
Add StringTools to do-not-deploy list (#354)
* Add StringTools to do-not-deploy list An internal tool recently had trouble updating to .NET 10 because it deployed a stale local copy of `Microsoft.NET.StringTools.dll` that was working (by coincidence) throughout .NET 9 but failed after dotnet/msbuild#12100 added some API surface to StringTools and used it. * Add nuget dependency as well --------- Co-authored-by: Chet Husk <baronfel@users.noreply.github.com>
1 parent e3d4d0d commit 46a3b93

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/MSBuildLocator/build/Microsoft.Build.Locator.targets

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
'%(PackageReference.Identity)' == 'Microsoft.Build.Conversion.Core' or
1414
'%(PackageReference.Identity)' == 'Microsoft.Build.Runtime' or
1515
'%(PackageReference.Identity)' == 'Microsoft.Build.Localization' or
16-
'%(PackageReference.Identity)' == 'Microsoft.Build.Engine'
16+
'%(PackageReference.Identity)' == 'Microsoft.Build.Engine' or
17+
'%(PackageReference.Identity)' == 'Microsoft.NET.StringTools' or
18+
'%(PackageReference.Identity)' == 'NuGet.Frameworks'
1719
)"/>
1820
</ItemGroup>
1921
<Error

0 commit comments

Comments
 (0)