Skip to content

Commit 5cae77e

Browse files
committed
refs
1 parent 44543d0 commit 5cae77e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/DiffEngine/DiffTools_TryFind.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static bool TryFindForInputFilePath(
4949
return tool != null;
5050
}
5151

52-
var extension = PathPolyfill.GetExtension(path).ToString();
52+
var extension = Path.GetExtension(path).ToString();
5353
return ExtensionLookup.TryGetValue(extension, out tool);
5454
}
5555

src/DiffEngine/OsSettingsResolver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ static bool TryResolveForOs(
5858
{
5959
path = null;
6060

61-
if (os == null || !OperatingSystemPolyfill.IsOSPlatform(platform))
61+
if (os == null || !OperatingSystem.IsOSPlatform(platform))
6262
{
6363
return false;
6464
}

src/Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PackageVersion Include="MarkdownSnippets.MsBuild" Version="28.0.0-beta.2" />
1212
<PackageVersion Include="Microsoft.Sbom.Targets" Version="4.0.3" />
1313
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
14-
<PackageVersion Include="Polyfill" Version="8.0.1" />
14+
<PackageVersion Include="Polyfill" Version="9.0.0-beta.2" />
1515
<PackageVersion Include="ProjectDefaults" Version="1.0.156" />
1616
<PackageVersion Include="Resourcer.Fody" Version="1.8.1" />
1717
<PackageVersion Include="System.Collections.Immutable" Version="8.0.0" />

src/global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.301",
3+
"version": "10.0.100-preview.7.25323.104",
44
"allowPrerelease": true,
55
"rollForward": "latestFeature"
66
}

0 commit comments

Comments
 (0)