File tree 4 files changed +190
-40
lines changed
CAMOsoft/CAMOsoft.DbUtils
4 files changed +190
-40
lines changed Original file line number Diff line number Diff line change 115
115
</ItemGroup >
116
116
<ItemGroup >
117
117
<Content Include =" SqlServerTypes\readme.htm" />
118
- <Content Include =" SqlServerTypes\x64\msvcr120.dll" >
119
- <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
120
- </Content >
121
- <Content Include =" SqlServerTypes\x64\SqlServerSpatial140.dll" >
122
- <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
123
- </Content >
124
- <Content Include =" SqlServerTypes\x86\msvcr120.dll" >
125
- <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
126
- </Content >
127
- <Content Include =" SqlServerTypes\x86\SqlServerSpatial140.dll" >
128
- <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
129
- </Content >
130
118
</ItemGroup >
131
119
<ItemGroup >
132
120
<None Include =" packages.config" />
Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ public class Utilities
21
21
/// </param>
22
22
public static void LoadNativeAssemblies ( string rootApplicationPath )
23
23
{
24
- var nativeBinaryPath = IntPtr . Size > 4
25
- ? Path . Combine ( rootApplicationPath , @"SqlServerTypes \x64\" )
26
- : Path . Combine ( rootApplicationPath , @"SqlServerTypes \x86\" ) ;
24
+ // var nativeBinaryPath = IntPtr.Size > 4
25
+ // ? Path.Combine(rootApplicationPath, @"RequiredDLL \x64\")
26
+ // : Path.Combine(rootApplicationPath, @"RequiredDLL \x86\");
27
27
28
- LoadNativeAssembly ( nativeBinaryPath , "msvcr120.dll" ) ;
29
- LoadNativeAssembly ( nativeBinaryPath , "SqlServerSpatial140.dll" ) ;
28
+ // LoadNativeAssembly(nativeBinaryPath, "msvcr120.dll");
29
+ // LoadNativeAssembly(nativeBinaryPath, "SqlServerSpatial140.dll");
30
30
}
31
31
32
32
private static void LoadNativeAssembly ( string nativeBinaryPath , string assemblyName )
You can’t perform that action at this time.
0 commit comments