Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1161 Bingo unable to index on SQL Server #1204

Merged
merged 1 commit into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bingo/sqlserver/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ else()

include(CSharpUtilities)

file (GLOB ${PROJECT_NAME}_SOURCES CONFIGURE_DEPENDS Source/*.cs)
file (GLOB ${PROJECT_NAME}_SOURCES CONFIGURE_DEPENDS Source/*.cs ${CMAKE_CURRENT_SOURCE_DIR}/../../api/dotnet/src/IndigoException.cs)

add_custom_target(before-${PROJECT_NAME}
COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_FILE:bingo-core-c> ${CMAKE_CURRENT_SOURCE_DIR}/Resources/
Expand All @@ -27,6 +27,7 @@ else()
VS_GLOBAL_AllowUnsafeBlocks true
VS_GLOBAL_AssemblyOriginatorKeyFile ${CMAKE_CURRENT_SOURCE_DIR}/indigo.snk
VS_GLOBAL_SignAssembly true
VS_GLOBAL_RootNamespace indigo
VS_DOTNET_REFERENCES "System;System.Data;System.Xml"
DOTNET_TARGET_FRAMEWORK_VERSION v3.5
)
Expand Down
2 changes: 1 addition & 1 deletion bingo/sqlserver/Source/BingoCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static BingoCoreLib lib
{
if (_lib == null)
{
BingoDllLoader.Instance.loadLibrary(null, "bingo-core-c.dll", "resource", false);
BingoDllLoader.Instance.loadLibrary(null, "bingo-core-c.dll", "indigo.resource", false);
_lib = BingoDllLoader.Instance.getInterface<BingoCoreLib>("bingo-core-c.dll");
}
return _lib;
Expand Down
72 changes: 40 additions & 32 deletions bingo/sqlserver/resource.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading