From 462d3e8e8b6ac0f8319bd0f8e73aa82e85d02e1a Mon Sep 17 00:00:00 2001 From: Dan Liew Date: Mon, 17 Oct 2016 18:15:31 +0100 Subject: [PATCH] [CMake] Unbreak building the .NET bindings. 7fefe40f210300dc073c93b2889be274bd92da62 broke building the .NET bindings by renaming the signing key without updating the CMake build. --- contrib/cmake/src/api/dotnet/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/cmake/src/api/dotnet/CMakeLists.txt b/contrib/cmake/src/api/dotnet/CMakeLists.txt index 7440f021b..93f5929d9 100644 --- a/contrib/cmake/src/api/dotnet/CMakeLists.txt +++ b/contrib/cmake/src/api/dotnet/CMakeLists.txt @@ -156,7 +156,7 @@ elseif (DOTNET_TOOLCHAIN_IS_MONO) # We need to give the assembly a strong name so that it can be installed # into the GAC. list(APPEND CSC_FLAGS - "/keyfile:${CMAKE_CURRENT_SOURCE_DIR}/Microsoft.Z3.mono.snk" + "/keyfile:${CMAKE_CURRENT_SOURCE_DIR}/Microsoft.Z3.snk" ) else() message(FATAL_ERROR "Unknown .NET toolchain")