Skip to content

Commit a9aa577

Browse files
committed
Made error dialog for native core more understandable, also
1 parent 4601141 commit a9aa577

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

NativeCore/Windows/NativeCore.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<ProjectGuid>{22CA6FDB-7622-4F94-8FC2-2E7AB481C86F}</ProjectGuid>
2323
<Keyword>Win32Proj</Keyword>
2424
<RootNamespace>NativeCore</RootNamespace>
25-
<WindowsTargetPlatformVersion>10.0.14393.0</WindowsTargetPlatformVersion>
25+
<WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
2626
</PropertyGroup>
2727
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2828
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

ReClass.NET/Core/InternalCoreFunctions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static InternalCoreFunctions Create()
5151
var handle = NativeMethods.LoadLibrary(libraryPath);
5252
if (handle.IsNull())
5353
{
54-
throw new FileNotFoundException(libraryPath);
54+
throw new FileNotFoundException($"Failed to load native core functions! Couldnt find at location {libraryPath}");
5555
}
5656

5757
return new InternalCoreFunctions(handle);

0 commit comments

Comments
 (0)