diff --git a/DynamORM.Tests/DynamORM.Tests.csproj b/DynamORM.Tests/DynamORM.Tests.csproj
index cb4aeca..4a77af6 100644
--- a/DynamORM.Tests/DynamORM.Tests.csproj
+++ b/DynamORM.Tests/DynamORM.Tests.csproj
@@ -13,11 +13,16 @@
v4.0
512
+ False
+ False
+ False
+ False
+ obj\$(Configuration)\
true
- full
- false
+ Full
+ False
bin\Debug\
DEBUG;TRACE
prompt
@@ -31,6 +36,17 @@
prompt
4
+
+ False
+ obj\
+
+
+ 4194304
+ AnyCPU
+ False
+ Auto
+ False
+
@@ -45,10 +61,12 @@
+
+
@@ -61,7 +79,9 @@
True
Resources.resx
+
+
diff --git a/DynamORM.Tests/Helpers/AttachToDebugger.cs b/DynamORM.Tests/Helpers/AttachToDebugger.cs
index 18ede23..d920611 100644
--- a/DynamORM.Tests/Helpers/AttachToDebugger.cs
+++ b/DynamORM.Tests/Helpers/AttachToDebugger.cs
@@ -45,7 +45,7 @@ namespace DynamORM.Tests.Helpers
Debugger.Launch();
}
- /// Test anonymous type compatybility.
+ /// Test anonymous type compatibility.
[Test]
public void TestAnonType()
{
@@ -59,14 +59,14 @@ namespace DynamORM.Tests.Helpers
[Test]
public void TestAnonTypeValue()
{
- var a = new { x = 1, y = "bla bla" };
+ var a = new { x = 1, y = "bla bla" };
var b = new { x = 1, y = "bla bla" };
Assert.AreEqual(a, b);
Assert.IsTrue(a.Equals(b));
-
+
Dictionary