diff --git a/scripts/mk_util.py b/scripts/mk_util.py
index 18ed0f74e..f57394f3e 100644
--- a/scripts/mk_util.py
+++ b/scripts/mk_util.py
@@ -1889,20 +1889,12 @@ class DotNetCoreDLLComponent(Component):
key = "%s" % self.key_file
key += "\ntrue"
- if VS_X64:
- platform = 'x64'
- elif VS_ARM:
- platform = 'ARM'
- else:
- platform = 'x86'
-
version = get_version_string(3)
core_csproj_str = """
netstandard1.4
- %s
$(DefineConstants);DOTNET_CORE
portable
Microsoft.Z3
@@ -1923,7 +1915,7 @@ class DotNetCoreDLLComponent(Component):
-""" % (platform, version, key, self.to_src_dir)
+""" % (version, key, self.to_src_dir)
mk_dir(os.path.join(BUILD_DIR, 'dotnet'))
csproj = os.path.join('dotnet', 'z3.csproj')
diff --git a/src/smt/theory_lra.cpp b/src/smt/theory_lra.cpp
index 27362fc77..11a9fa6f7 100644
--- a/src/smt/theory_lra.cpp
+++ b/src/smt/theory_lra.cpp
@@ -1517,7 +1517,7 @@ public:
}
final_check_status final_check_eh() {
- IF_VERBOSE(2, verbose_stream() << "final-check " << m_solver->get_status() << "\n");
+ IF_VERBOSE(12, verbose_stream() << "final-check " << m_solver->get_status() << "\n");
m_use_nra_model = false;
lbool is_sat = l_true;
if (m_solver->get_status() != lp::lp_status::OPTIMAL) {