Skip to content

Commit bbfca27

Browse files
authored
Merge pull request #17339 from iterate-ch/bugfix/GH-17338
Use broadly supported PackagePath API
2 parents 2692481 + ddee7aa commit bbfca27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/main/csharp/Cyberduck.Core.Native.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<PropertyGroup>
1919
<TargetFrameworks>net472;net8.0-windows10.0.22621.0</TargetFrameworks>
20-
<TargetPlatformMinVersion>10.0.14393.0</TargetPlatformMinVersion>
20+
<SupportedOSPlatformVersion>10.0.14393.0</SupportedOSPlatformVersion>
2121
<Platforms>x64</Platforms>
2222
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2323
</PropertyGroup>

core/src/main/csharp/ch/cyberduck/core/EnvironmentInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ static EnvironmentInfo()
6969
}
7070

7171
[MethodImpl(MethodImplOptions.NoInlining)]
72-
static string PackagePath() => Package.Current.InstalledPath;
72+
static string PackagePath() => Package.Current.InstalledLocation.Path;
7373
}
7474

7575
public static void AssemblyInfo<T>()

0 commit comments

Comments
 (0)