File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 1
1
<Project DefaultTargets =" Build" ToolsVersion =" 4.0" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
2
2
<PropertyGroup >
3
- <_LibZipSharpNugetVersion >1.0.17 </_LibZipSharpNugetVersion >
3
+ <_LibZipSharpNugetVersion >1.0.18 </_LibZipSharpNugetVersion >
4
4
</PropertyGroup >
5
5
</Project >
Original file line number Diff line number Diff line change @@ -415,9 +415,7 @@ static Native ()
415
415
{
416
416
if ( Environment . OSVersion . Platform == PlatformID . Win32NT ) {
417
417
string executingDirectory = System . IO . Path . GetDirectoryName ( typeof ( Native ) . Assembly . Location ) ;
418
- if ( Environment . Is64BitProcess ) {
419
- SetDllDirectory ( System . IO . Path . Combine ( executingDirectory , "lib64" ) ) ;
420
- }
418
+ SetDllDirectory ( Environment . Is64BitProcess ? System . IO . Path . Combine ( executingDirectory , "lib64" ) : executingDirectory ) ;
421
419
}
422
420
}
423
421
}
You can’t perform that action at this time.
0 commit comments