diff --git a/src/Tests/DotVVM.Framework.Tests.csproj b/src/Tests/DotVVM.Framework.Tests.csproj
index e9c7067ff5..fa3ee599c0 100644
--- a/src/Tests/DotVVM.Framework.Tests.csproj
+++ b/src/Tests/DotVVM.Framework.Tests.csproj
@@ -17,7 +17,8 @@
net6.0
- True
+ true
+ true
dotvvmwizard.snk
diff --git a/src/Tests/Parser/Binding/BindingParserTests.cs b/src/Tests/Parser/Binding/BindingParserTests.cs
index 550ee53584..4db7414a04 100644
--- a/src/Tests/Parser/Binding/BindingParserTests.cs
+++ b/src/Tests/Parser/Binding/BindingParserTests.cs
@@ -803,7 +803,7 @@ public void BindingParser_GenericExpression_MultipleInside()
var parser = bindingParserNodeFactory.SetupParser(originalString);
var node = parser.ReadExpression();
- Assert.IsTrue(node is TypeOrFunctionReferenceBindingParserNode);
+ Assert.IsInstanceOfType(node, typeof(TypeOrFunctionReferenceBindingParserNode));
Assert.IsTrue(string.Equals(originalString, node.ToDisplayString()));
}
diff --git a/src/Tests/Runtime/config-tests/ConfigurationSerializationTests.SerializeDefaultConfig.json b/src/Tests/Runtime/config-tests/ConfigurationSerializationTests.SerializeDefaultConfig.json
index 803a7b58c2..192cc06a4c 100644
--- a/src/Tests/Runtime/config-tests/ConfigurationSerializationTests.SerializeDefaultConfig.json
+++ b/src/Tests/Runtime/config-tests/ConfigurationSerializationTests.SerializeDefaultConfig.json
@@ -564,8 +564,7 @@
},
"IncludeInPage": {
"type": "System.Boolean",
- "defaultValue": true,
- "onlyBindings": true
+ "defaultValue": true
}
},
"DotVVM.Framework.Controls.EmptyData": {
@@ -1016,8 +1015,7 @@
},
"Visible": {
"type": "System.Boolean",
- "defaultValue": true,
- "onlyBindings": true
+ "defaultValue": true
}
},
"DotVVM.Framework.Controls.HtmlLiteral": {
@@ -1720,6 +1718,9 @@
}
},
"DotVVM.Framework.Controls.RouteLink": {
+ "RouteLinkCapability": {
+ "type": "DotVVM.Framework.Controls.RouteLinkCapability, DotVVM.Framework"
+ },
"TextOrContentCapability": {
"type": "DotVVM.Framework.Controls.TextOrContentCapability, DotVVM.Framework"
}