diff --git a/.gitignore b/.gitignore
index 44a8e0d..709e8cd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,4 +11,6 @@ _ReSharper.*
/Build
NDependOut
.svn
-*.chm
\ No newline at end of file
+*.chm
+/Fohjin.DDD.Example/packages
+/Fohjin.DDD.MakeReusable/Fohjin.EventStore/packages
diff --git a/Fohjin.DDD.Example/Fohjin.DDD.BankApplication/Fohjin.DDD.BankApplication.csproj b/Fohjin.DDD.Example/Fohjin.DDD.BankApplication/Fohjin.DDD.BankApplication.csproj
index 1948ead..f29c5d6 100644
--- a/Fohjin.DDD.Example/Fohjin.DDD.BankApplication/Fohjin.DDD.BankApplication.csproj
+++ b/Fohjin.DDD.Example/Fohjin.DDD.BankApplication/Fohjin.DDD.BankApplication.csproj
@@ -31,6 +31,7 @@
false
false
true
+ e9aeaebd
true
@@ -51,18 +52,54 @@
4
AllRules.ruleset
+
+ true
+ bin\x64\Debug\
+ DEBUG;TRACE
+ full
+ x64
+ prompt
+ AllRules.ruleset
+
+
+ bin\x64\Release\
+ TRACE
+ true
+ pdbonly
+ x64
+ prompt
+ AllRules.ruleset
+
+
+ true
+ bin\x86\Debug\
+ DEBUG;TRACE
+ full
+ x86
+ prompt
+ AllRules.ruleset
+
+
+ bin\x86\Release\
+ TRACE
+ true
+ pdbonly
+ x86
+ prompt
+ AllRules.ruleset
+
-
+
False
- ..\Lib\StructureMap\StructureMap.dll
+ ..\packages\structuremap.2.6.3\lib\StructureMap.dll
3.5
-
+
False
- ..\Lib\sqlite\bin\x64\System.Data.SQLite.DLL
+ ..\packages\System.Data.SQLite.Core.1.0.96.0\lib\net20\System.Data.SQLite.dll
3.5
@@ -131,6 +168,7 @@
Resources.resx
True
+
SettingsSingleFileGenerator
Settings.Designer.cs
@@ -212,6 +250,13 @@
+
+
+
+ This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
+
+
+
-
-
-
-
-
-
- This method is used to set an expression as the last matcher invoked,
- which is used in the SetupSet to allow matchers in the prop = value
- delegate expression. This delegate is executed in "fluent" mode in
- order to capture the value being set, and construct the corresponding
- methodcall.
- This is also used in the MatcherFactory for each argument expression.
- This method ensures that when we execute the delegate, we
- also track the matcher that was invoked, so that when we create the
- methodcall we build the expression using it, rather than the null/default
- value returned from the actual invocation.
-
-
-
-
- Provides legacy API members as extensions so that
- existing code continues to compile, but new code
- doesn't see then.
-
-
-
-
- Obsolete.
-
-
-
-
- Obsolete.
-
-
-
-
- Obsolete.
-
-
-
-
- Tracks the current mock and interception context.
-
-
-
-
- Having an active fluent mock context means that the invocation
- is being performed in "trial" mode, just to gather the
- target method and arguments that need to be matched later
- when the actual invocation is made.
-
-
-
-
- A that returns an empty default value
- for non-mockeable types, and mocks for all other types (interfaces and
- non-sealed classes) that can be mocked.
-
-
-
-
- Provides a typed for a
- specific type of .
-
- The type of event arguments required by the event.
-
- The mocked event can either be a or custom
- event handler which follows .NET practice of providing object sender, EventArgs args
- kind of signature.
-
-
-
-
- Raises the associated event with the given
- event argument data.
-
- Data to pass to the event.
-
-
-
- Provides support for attaching a to
- a generic event.
-
- Event to convert.
-
-
-
- Provided solely to allow the interceptor to determine when the attached
- handler is coming from this mocked event so we can assign the
- corresponding EventInfo for it.
-
-
-
-
- Provides additional methods on mocks.
-
-
- Provided as extension methods as they confuse the compiler
- with the overloads taking Action.
-
-
-
-
- Specifies a setup on the mocked type for a call to
- to a property setter, regardless of its value.
-
-
- If more than one setup is set for the same property setter,
- the latest one wins and is the one that will be executed.
-
- Type of the property. Typically omitted as it can be inferred from the expression.
- Type of the mock.
- The target mock for the setup.
- Lambda expression that specifies the property setter.
-
-
- mock.SetupSet(x => x.Suspended);
-
-
-
- This method is not legacy, but must be on an extension method to avoid
- confusing the compiler with the new Action syntax.
-
-
-
-
- Verifies that a property has been set on the mock, regarless of its value.
-
-
- This example assumes that the mock has been used,
- and later we want to verify that a given invocation
- with specific parameters was performed:
-
- var mock = new Mock<IWarehouse>();
- // exercise mock
- //...
- // Will throw if the test code didn't set the IsClosed property.
- mock.VerifySet(warehouse => warehouse.IsClosed);
-
-
- The invocation was not performed on the mock.
- Expression to verify.
- The mock instance.
- Mocked type.
- Type of the property to verify. Typically omitted as it can
- be inferred from the expression's return type.
-
-
-
- Verifies that a property has been set on the mock, specifying a failure
- error message.
-
-
- This example assumes that the mock has been used,
- and later we want to verify that a given invocation
- with specific parameters was performed:
-
- var mock = new Mock<IWarehouse>();
- // exercise mock
- //...
- // Will throw if the test code didn't set the IsClosed property.
- mock.VerifySet(warehouse => warehouse.IsClosed);
-
-
- The invocation was not performed on the mock.
- Expression to verify.
- Message to show if verification fails.
- The mock instance.
- Mocked type.
- Type of the property to verify. Typically omitted as it can
- be inferred from the expression's return type.
-
-
-
- Verifies that a property has been set on the mock, regardless
- of the value but only the specified number of times.
-
-
- This example assumes that the mock has been used,
- and later we want to verify that a given invocation
- with specific parameters was performed:
-
- var mock = new Mock<IWarehouse>();
- // exercise mock
- //...
- // Will throw if the test code didn't set the IsClosed property.
- mock.VerifySet(warehouse => warehouse.IsClosed);
-
-
- The invocation was not performed on the mock.
- The invocation was not call the times specified by
- .
- The mock instance.
- Mocked type.
- The number of times a method is allowed to be called.
- Expression to verify.
- Type of the property to verify. Typically omitted as it can
- be inferred from the expression's return type.
-
-
-
- Verifies that a property has been set on the mock, regardless
- of the value but only the specified number of times, and specifying a failure
- error message.
-
-
- This example assumes that the mock has been used,
- and later we want to verify that a given invocation
- with specific parameters was performed:
-
- var mock = new Mock<IWarehouse>();
- // exercise mock
- //...
- // Will throw if the test code didn't set the IsClosed property.
- mock.VerifySet(warehouse => warehouse.IsClosed);
-
-
- The invocation was not performed on the mock.
- The invocation was not call the times specified by
- .
- The mock instance.
- Mocked type.
- The number of times a method is allowed to be called.
- Message to show if verification fails.
- Expression to verify.
- Type of the property to verify. Typically omitted as it can
- be inferred from the expression's return type.
-
-
-
- Allows querying the universe of mocks for those that behave
- according to the query specification.
-
-
-
-
- Creates a query for mocks of the given type.
-
- The type of mocked object to query.
-
-
-
- Method that is turned into the actual call from .Query{T}, to
- transform the queryable query into a normal enumerable query.
- This method should not be used by consumers.
-
-
-
-
-
-
- The first method call or member access will be the
- last segment of the expression (depth-first traversal),
- which is the one we have to Setup rather than FluentMock.
- And the last one is the one we have to Mock.Get rather
- than FluentMock.
-
-
-
-
- Helper extensions that are used by the query translator.
-
-
-
-
- Retrieves a fluent mock from the given setup expression.
-
-
-
-
- Legacy Stub stuff, moved to the core API.
-
-
-
-
- Obsolete. Use .
-
-
-
-
- Obsolete. Use .
-
-
-
-
- Obsolete. Use .
-
-
-
-
- Defines the number of invocations allowed by a mocked method.
-
-
-
-
- Specifies that a mocked method should be invoked times as minimum.
-
- The minimun number of times.
- An object defining the allowed number of invocations.
-
-
-
- Specifies that a mocked method should be invoked one time as minimum.
-
- An object defining the allowed number of invocations.
-
-
-
- Specifies that a mocked method should be invoked time as maximun.
-
- The maximun number of times.
- An object defining the allowed number of invocations.
-
-
-
- Specifies that a mocked method should be invoked one time as maximun.
-
- An object defining the allowed number of invocations.
-
-
-
- Specifies that a mocked method should be invoked between and
- times.
-
- The minimun number of times.
- The maximun number of times.
- The kind of range. See .
- An object defining the allowed number of invocations.
-
-
-
- Specifies that a mocked method should be invoked exactly times.
-
- The times that a method or property can be called.
- An object defining the allowed number of invocations.
-
-
-
- Specifies that a mocked method should not be invoked.
-
- An object defining the allowed number of invocations.
-
-
-
- Specifies that a mocked method should be invoked exactly one time.
-
- An object defining the allowed number of invocations.
-
-
-
diff --git a/Fohjin.DDD.Example/Lib/NUnit/nunit.core.dll b/Fohjin.DDD.Example/Lib/NUnit/nunit.core.dll
deleted file mode 100644
index 010e40b..0000000
Binary files a/Fohjin.DDD.Example/Lib/NUnit/nunit.core.dll and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/NUnit/nunit.core.extensions.dll b/Fohjin.DDD.Example/Lib/NUnit/nunit.core.extensions.dll
deleted file mode 100644
index af72165..0000000
Binary files a/Fohjin.DDD.Example/Lib/NUnit/nunit.core.extensions.dll and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/NUnit/nunit.core.interfaces.dll b/Fohjin.DDD.Example/Lib/NUnit/nunit.core.interfaces.dll
deleted file mode 100644
index e22f65e..0000000
Binary files a/Fohjin.DDD.Example/Lib/NUnit/nunit.core.interfaces.dll and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/NUnit/nunit.framework.dll b/Fohjin.DDD.Example/Lib/NUnit/nunit.framework.dll
deleted file mode 100644
index d68d9f2..0000000
Binary files a/Fohjin.DDD.Example/Lib/NUnit/nunit.framework.dll and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/NUnit/nunit.util.dll b/Fohjin.DDD.Example/Lib/NUnit/nunit.util.dll
deleted file mode 100644
index 1737841..0000000
Binary files a/Fohjin.DDD.Example/Lib/NUnit/nunit.util.dll and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/StructureMap/StructureMap.AutoMocking.dll b/Fohjin.DDD.Example/Lib/StructureMap/StructureMap.AutoMocking.dll
deleted file mode 100644
index 40dc423..0000000
Binary files a/Fohjin.DDD.Example/Lib/StructureMap/StructureMap.AutoMocking.dll and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/StructureMap/StructureMap.dll b/Fohjin.DDD.Example/Lib/StructureMap/StructureMap.dll
deleted file mode 100644
index a8e84e5..0000000
Binary files a/Fohjin.DDD.Example/Lib/StructureMap/StructureMap.dll and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/StructureMap/StructureMap.pdb b/Fohjin.DDD.Example/Lib/StructureMap/StructureMap.pdb
deleted file mode 100644
index 901c74a..0000000
Binary files a/Fohjin.DDD.Example/Lib/StructureMap/StructureMap.pdb and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/SQLite.Interop.065.DLL b/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/SQLite.Interop.065.DLL
deleted file mode 100644
index a61052c..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/SQLite.Interop.065.DLL and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/SQLite.Interop.065.exp b/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/SQLite.Interop.065.exp
deleted file mode 100644
index a470b60..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/SQLite.Interop.065.exp and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/SQLite.Interop.065.lib b/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/SQLite.Interop.065.lib
deleted file mode 100644
index 507d709..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/SQLite.Interop.065.lib and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/System.Data.SQLite.dll b/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/System.Data.SQLite.dll
deleted file mode 100644
index bd8a78b..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/System.Data.SQLite.dll and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/testce.exe b/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/testce.exe
deleted file mode 100644
index 20e7635..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/CompactFramework/testce.exe and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/Designer/SQLite.Designer.dll b/Fohjin.DDD.Example/Lib/sqlite/bin/Designer/SQLite.Designer.dll
deleted file mode 100644
index 65a7812..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/Designer/SQLite.Designer.dll and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/Designer/install.exe b/Fohjin.DDD.Example/Lib/sqlite/bin/Designer/install.exe
deleted file mode 100644
index c7515d8..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/Designer/install.exe and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/Designer/install.exe.config b/Fohjin.DDD.Example/Lib/sqlite/bin/Designer/install.exe.config
deleted file mode 100644
index 49cc43e..0000000
--- a/Fohjin.DDD.Example/Lib/sqlite/bin/Designer/install.exe.config
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/ManagedOnly/System.Data.SQLite.dll b/Fohjin.DDD.Example/Lib/sqlite/bin/ManagedOnly/System.Data.SQLite.dll
deleted file mode 100644
index 66f38e7..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/ManagedOnly/System.Data.SQLite.dll and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/ManagedOnly/readme.txt b/Fohjin.DDD.Example/Lib/sqlite/bin/ManagedOnly/readme.txt
deleted file mode 100644
index 666fd34..0000000
--- a/Fohjin.DDD.Example/Lib/sqlite/bin/ManagedOnly/readme.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-This managed version of the ADO.NET provider for SQLite requires the native
-sqlite3.dll or Linux shared library from http://www.sqlite.org
-
-Requires version 3.6.1 or higher.
-
-The test.exe program is a managed C# application (runs on Mono) used to test the provider's capabilities.
\ No newline at end of file
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/ManagedOnly/test.exe b/Fohjin.DDD.Example/Lib/sqlite/bin/ManagedOnly/test.exe
deleted file mode 100644
index b32fb06..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/ManagedOnly/test.exe and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/ManagedOnly/test.exe.config b/Fohjin.DDD.Example/Lib/sqlite/bin/ManagedOnly/test.exe.config
deleted file mode 100644
index 57fdabb..0000000
--- a/Fohjin.DDD.Example/Lib/sqlite/bin/ManagedOnly/test.exe.config
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/System.Data.SQLite.DLL b/Fohjin.DDD.Example/Lib/sqlite/bin/System.Data.SQLite.DLL
deleted file mode 100644
index 8787bed..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/System.Data.SQLite.DLL and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/System.Data.SQLite.Linq.dll b/Fohjin.DDD.Example/Lib/sqlite/bin/System.Data.SQLite.Linq.dll
deleted file mode 100644
index d782313..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/System.Data.SQLite.Linq.dll and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/System.Data.SQLite.exp b/Fohjin.DDD.Example/Lib/sqlite/bin/System.Data.SQLite.exp
deleted file mode 100644
index 7ac9c86..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/System.Data.SQLite.exp and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/System.Data.SQLite.lib b/Fohjin.DDD.Example/Lib/sqlite/bin/System.Data.SQLite.lib
deleted file mode 100644
index a99ee80..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/System.Data.SQLite.lib and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/System.Data.SQLite.DLL b/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/System.Data.SQLite.DLL
deleted file mode 100644
index 1938f61..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/System.Data.SQLite.DLL and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/System.Data.SQLite.exp b/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/System.Data.SQLite.exp
deleted file mode 100644
index ece1aa0..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/System.Data.SQLite.exp and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/System.Data.SQLite.lib b/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/System.Data.SQLite.lib
deleted file mode 100644
index 40b4c22..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/System.Data.SQLite.lib and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/test.exe b/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/test.exe
deleted file mode 100644
index 9b30220..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/test.exe and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/test.exe.config b/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/test.exe.config
deleted file mode 100644
index 57fdabb..0000000
--- a/Fohjin.DDD.Example/Lib/sqlite/bin/itanium/test.exe.config
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/linq/northwindEF.db b/Fohjin.DDD.Example/Lib/sqlite/bin/linq/northwindEF.db
deleted file mode 100644
index 79e64a8..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/linq/northwindEF.db and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/linq/testlinq.exe b/Fohjin.DDD.Example/Lib/sqlite/bin/linq/testlinq.exe
deleted file mode 100644
index 8de1293..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/linq/testlinq.exe and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/linq/testlinq.exe.config b/Fohjin.DDD.Example/Lib/sqlite/bin/linq/testlinq.exe.config
deleted file mode 100644
index f8c6ced..0000000
--- a/Fohjin.DDD.Example/Lib/sqlite/bin/linq/testlinq.exe.config
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/test.exe b/Fohjin.DDD.Example/Lib/sqlite/bin/test.exe
deleted file mode 100644
index f83aa61..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/test.exe and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/test.exe.config b/Fohjin.DDD.Example/Lib/sqlite/bin/test.exe.config
deleted file mode 100644
index 57fdabb..0000000
--- a/Fohjin.DDD.Example/Lib/sqlite/bin/test.exe.config
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/x64/System.Data.SQLite.DLL b/Fohjin.DDD.Example/Lib/sqlite/bin/x64/System.Data.SQLite.DLL
deleted file mode 100644
index 31b231d..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/x64/System.Data.SQLite.DLL and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/x64/System.Data.SQLite.exp b/Fohjin.DDD.Example/Lib/sqlite/bin/x64/System.Data.SQLite.exp
deleted file mode 100644
index 7d92d25..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/x64/System.Data.SQLite.exp and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/x64/System.Data.SQLite.lib b/Fohjin.DDD.Example/Lib/sqlite/bin/x64/System.Data.SQLite.lib
deleted file mode 100644
index 846124a..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/x64/System.Data.SQLite.lib and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/x64/test.exe b/Fohjin.DDD.Example/Lib/sqlite/bin/x64/test.exe
deleted file mode 100644
index ccbf6a8..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/bin/x64/test.exe and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/bin/x64/test.exe.config b/Fohjin.DDD.Example/Lib/sqlite/bin/x64/test.exe.config
deleted file mode 100644
index 57fdabb..0000000
--- a/Fohjin.DDD.Example/Lib/sqlite/bin/x64/test.exe.config
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/Fohjin.DDD.Example/Lib/sqlite/sqlite3.exe b/Fohjin.DDD.Example/Lib/sqlite/sqlite3.exe
deleted file mode 100644
index 1027dd4..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/sqlite3.exe and /dev/null differ
diff --git a/Fohjin.DDD.Example/Lib/sqlite/sqlite3_analyzer.exe b/Fohjin.DDD.Example/Lib/sqlite/sqlite3_analyzer.exe
deleted file mode 100644
index 398cbcb..0000000
Binary files a/Fohjin.DDD.Example/Lib/sqlite/sqlite3_analyzer.exe and /dev/null differ
diff --git a/Fohjin.DDD.Example/Test.Fohjin.DDD/Domain/Repositories/ActiveAccountRepositoryTest.cs b/Fohjin.DDD.Example/Test.Fohjin.DDD/Domain/Repositories/ActiveAccountRepositoryTest.cs
index 842108f..6172a31 100644
--- a/Fohjin.DDD.Example/Test.Fohjin.DDD/Domain/Repositories/ActiveAccountRepositoryTest.cs
+++ b/Fohjin.DDD.Example/Test.Fohjin.DDD/Domain/Repositories/ActiveAccountRepositoryTest.cs
@@ -10,7 +10,7 @@
using Fohjin.DDD.EventStore.Storage;
using Moq;
using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
+//using NUnit.Framework.SyntaxHelpers;
namespace Test.Fohjin.DDD.Domain.Repositories
{
diff --git a/Fohjin.DDD.Example/Test.Fohjin.DDD/Domain/Repositories/ClientRepositoryTest.cs b/Fohjin.DDD.Example/Test.Fohjin.DDD/Domain/Repositories/ClientRepositoryTest.cs
index c349875..fef0794 100644
--- a/Fohjin.DDD.Example/Test.Fohjin.DDD/Domain/Repositories/ClientRepositoryTest.cs
+++ b/Fohjin.DDD.Example/Test.Fohjin.DDD/Domain/Repositories/ClientRepositoryTest.cs
@@ -9,7 +9,6 @@
using Fohjin.DDD.EventStore.Storage;
using Moq;
using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
namespace Test.Fohjin.DDD.Domain.Repositories
{
diff --git a/Fohjin.DDD.Example/Test.Fohjin.DDD/Domain/Repositories/ClosedAccountRepositoryTest.cs b/Fohjin.DDD.Example/Test.Fohjin.DDD/Domain/Repositories/ClosedAccountRepositoryTest.cs
index 7e0a534..eadb16a 100644
--- a/Fohjin.DDD.Example/Test.Fohjin.DDD/Domain/Repositories/ClosedAccountRepositoryTest.cs
+++ b/Fohjin.DDD.Example/Test.Fohjin.DDD/Domain/Repositories/ClosedAccountRepositoryTest.cs
@@ -12,7 +12,6 @@
using Fohjin.DDD.EventStore.Storage.Memento;
using Moq;
using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
namespace Test.Fohjin.DDD.Domain.Repositories
{
diff --git a/Fohjin.DDD.Example/Test.Fohjin.DDD/Presenter/PresenterTest.cs b/Fohjin.DDD.Example/Test.Fohjin.DDD/Presenter/PresenterTest.cs
index 29a4cb1..b45628e 100644
--- a/Fohjin.DDD.Example/Test.Fohjin.DDD/Presenter/PresenterTest.cs
+++ b/Fohjin.DDD.Example/Test.Fohjin.DDD/Presenter/PresenterTest.cs
@@ -3,7 +3,6 @@
using Fohjin.DDD.BankApplication.Presenters;
using Fohjin.DDD.BankApplication.Views;
using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
namespace Test.Fohjin.DDD.Presenter
{
diff --git a/Fohjin.DDD.Example/Test.Fohjin.DDD/Queueing/InMemoryQueue_test.cs b/Fohjin.DDD.Example/Test.Fohjin.DDD/Queueing/InMemoryQueue_test.cs
index bf07808..20906d7 100644
--- a/Fohjin.DDD.Example/Test.Fohjin.DDD/Queueing/InMemoryQueue_test.cs
+++ b/Fohjin.DDD.Example/Test.Fohjin.DDD/Queueing/InMemoryQueue_test.cs
@@ -1,6 +1,5 @@
using Fohjin.DDD.Bus.Direct;
using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
namespace Test.Fohjin.DDD.Queueing
{
diff --git a/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/RepositoryTest.cs b/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/RepositoryTest.cs
index 6dcfa47..62f1dfb 100644
--- a/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/RepositoryTest.cs
+++ b/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/RepositoryTest.cs
@@ -4,7 +4,6 @@
using Fohjin.DDD.Reporting.Dto;
using Fohjin.DDD.Reporting.Infrastructure;
using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
namespace Test.Fohjin.DDD.Reporting.Infrastructure
{
diff --git a/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlCreateBuilderTest.cs b/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlCreateBuilderTest.cs
index fd63c90..e7e0e1f 100644
--- a/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlCreateBuilderTest.cs
+++ b/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlCreateBuilderTest.cs
@@ -1,6 +1,5 @@
using Fohjin.DDD.Reporting.Infrastructure;
using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
namespace Test.Fohjin.DDD.Reporting.Infrastructure
{
diff --git a/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlDeleteBuilderTest.cs b/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlDeleteBuilderTest.cs
index 5fb8e16..ed144db 100644
--- a/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlDeleteBuilderTest.cs
+++ b/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlDeleteBuilderTest.cs
@@ -1,7 +1,6 @@
using System.Collections.Generic;
using Fohjin.DDD.Reporting.Infrastructure;
using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
namespace Test.Fohjin.DDD.Reporting.Infrastructure
{
diff --git a/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlInsertBuilderTest.cs b/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlInsertBuilderTest.cs
index 0dcec0d..b8c7412 100644
--- a/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlInsertBuilderTest.cs
+++ b/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlInsertBuilderTest.cs
@@ -1,6 +1,5 @@
using Fohjin.DDD.Reporting.Infrastructure;
using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
namespace Test.Fohjin.DDD.Reporting.Infrastructure
{
diff --git a/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlSelectBuilderTest.cs b/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlSelectBuilderTest.cs
index 39fbb23..d93ae03 100644
--- a/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlSelectBuilderTest.cs
+++ b/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlSelectBuilderTest.cs
@@ -1,7 +1,6 @@
using System.Collections.Generic;
using Fohjin.DDD.Reporting.Infrastructure;
using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
namespace Test.Fohjin.DDD.Reporting.Infrastructure
{
diff --git a/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlUpdateBuilderTest.cs b/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlUpdateBuilderTest.cs
index ee7a9f9..ce3ab1e 100644
--- a/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlUpdateBuilderTest.cs
+++ b/Fohjin.DDD.Example/Test.Fohjin.DDD/Reporting/Infrastructure/SqlUpdateBuilderTest.cs
@@ -1,7 +1,6 @@
using System;
using Fohjin.DDD.Reporting.Infrastructure;
using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
namespace Test.Fohjin.DDD.Reporting.Infrastructure
{
diff --git a/Fohjin.DDD.Example/Test.Fohjin.DDD/Test.Fohjin.DDD.csproj b/Fohjin.DDD.Example/Test.Fohjin.DDD/Test.Fohjin.DDD.csproj
index d1cbfa4..fbe3d5a 100644
--- a/Fohjin.DDD.Example/Test.Fohjin.DDD/Test.Fohjin.DDD.csproj
+++ b/Fohjin.DDD.Example/Test.Fohjin.DDD/Test.Fohjin.DDD.csproj
@@ -31,6 +31,7 @@
false
false
true
+ 49cbed7b
true
@@ -51,27 +52,75 @@
4
AllRules.ruleset
+
+ true
+ bin\x64\Debug\
+ DEBUG;TRACE
+ full
+ x64
+ prompt
+ AllRules.ruleset
+
+
+ bin\x64\Release\
+ TRACE
+ true
+ pdbonly
+ x64
+ prompt
+ AllRules.ruleset
+
+
+ true
+ bin\x86\Debug\
+ DEBUG;TRACE
+ full
+ x86
+ prompt
+ AllRules.ruleset
+
+
+ bin\x86\Release\
+ TRACE
+ true
+ pdbonly
+ x86
+ prompt
+ AllRules.ruleset
+
-
+
False
- ..\Lib\Moq\Moq.dll
+ ..\packages\Moq.4.2.1502.0911\lib\net35\Moq.dll
-
+
+ ..\packages\NUnitTestAdapter.1.2\lib\nunit.core.dll
+ False
+
+
+ ..\packages\NUnitTestAdapter.1.2\lib\nunit.core.interfaces.dll
+ False
+
+
False
- ..\Lib\NUnit\nunit.framework.dll
+ ..\packages\NUnit.2.6.4\lib\nunit.framework.dll
+
+
+ ..\packages\NUnitTestAdapter.1.2\lib\nunit.util.dll
+ False
+
+
+ ..\packages\NUnitTestAdapter.1.2\lib\NUnit.VisualStudio.TestAdapter.dll
+ False
-
+
False
- ..\Lib\StructureMap\StructureMap.dll
+ ..\packages\structuremap.2.6.3\lib\StructureMap.dll
3.5
-
- False
- ..\Lib\sqlite\bin\System.Data.SQLite.DLL
-
3.5
@@ -305,6 +354,9 @@
+
+
+