├── .gitignore ├── CQRSGui ├── CQRSGui.csproj ├── Content │ └── Site.css ├── Controllers │ └── HomeController.cs ├── Global.asax ├── Global.asax.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── MicrosoftAjax.debug.js │ ├── MicrosoftAjax.js │ ├── MicrosoftMvcAjax.debug.js │ ├── MicrosoftMvcAjax.js │ ├── MicrosoftMvcValidation.debug.js │ ├── MicrosoftMvcValidation.js │ ├── jquery-1.4.1-vsdoc.js │ ├── jquery-1.4.1.js │ ├── jquery-1.4.1.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ └── jquery.validate.min.js ├── ServiceLocator.cs ├── Views │ ├── Home │ │ ├── Add.aspx │ │ ├── ChangeName.aspx │ │ ├── CheckIn.aspx │ │ ├── Details.aspx │ │ ├── Index.aspx │ │ ├── Ledgers.aspx │ │ └── Remove.aspx │ ├── Shared │ │ ├── Error.aspx │ │ └── Site.Master │ └── Web.config ├── Web.Debug.config ├── Web.Release.config └── Web.config ├── SimpleCQRS.Domain ├── Bootstrapper.fs ├── CommandHandlers.fs ├── Commands.fs ├── Domain.fs ├── Events.fs ├── ReadModel.fs └── SimpleCQRS.Domain.fsproj ├── SimpleCQRS.FS ├── Aggregate.fs ├── EventStore.fs ├── Exceptions.fs ├── FakeBus.fs ├── Messages.fs ├── Repository.fs ├── SimpleCQRS.FS.fsproj └── packages.config ├── SimplestPossibleThing.sln ├── SimplestPossibleThing.userprefs └── packages ├── Newtonsoft.Json.4.0.2 ├── Newtonsoft.Json.4.0.2.nupkg └── lib │ ├── net20 │ ├── Newtonsoft.Json.Net20.dll │ └── Newtonsoft.Json.Net20.xml │ ├── net35 │ ├── Newtonsoft.Json.Net35.dll │ └── Newtonsoft.Json.Net35.xml │ ├── net40 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── sl3-wp │ ├── Newtonsoft.Json.WindowsPhone.dll │ └── Newtonsoft.Json.WindowsPhone.xml │ └── sl4 │ ├── Newtonsoft.Json.Silverlight.dll │ └── Newtonsoft.Json.Silverlight.xml ├── RavenDB.1.0.0.397 ├── RavenDB.1.0.0.397.nupkg ├── content │ └── Web.config.transform ├── lib │ ├── net35 │ │ ├── MissingBitsFromClientProfile.dll │ │ ├── Raven.Abstractions-3.5.dll │ │ ├── Raven.Client.Lightweight-3.5.XML │ │ ├── Raven.Client.Lightweight-3.5.dll │ │ └── Raven.Json-3.5.dll │ ├── net40 │ │ ├── AsyncCtpLibrary.dll │ │ ├── MissingBitsFromClientProfile.dll │ │ ├── Raven.Abstractions.dll │ │ ├── Raven.Client.Debug.dll │ │ ├── Raven.Client.Lightweight.XML │ │ ├── Raven.Client.Lightweight.dll │ │ └── Raven.Json.dll │ └── sl40 │ │ ├── AsyncCtpLibrary_Silverlight.dll │ │ ├── MissingBitFromSilverlight.dll │ │ └── Raven.Client.Silverlight.dll └── server │ ├── Esent.Interop.dll │ ├── Esent.Interop.xml │ ├── ICSharpCode.NRefactory.dll │ ├── Lucene.Net.dll │ ├── Lucene.Net.xml │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.xml │ ├── Raven.Abstractions.dll │ ├── Raven.Database.dll │ ├── Raven.Http.dll │ ├── Raven.Json.dll │ ├── Raven.Munin.dll │ ├── Raven.Server.exe.config │ ├── Raven.Storage.Esent.dll │ ├── Raven.Storage.Managed.dll │ ├── Raven.Studio.xap │ ├── Rhino.Licensing.dll │ ├── Spatial.Net.dll │ ├── SpellChecker.Net.dll │ ├── SpellChecker.Net.xml │ ├── log4net.dll │ └── log4net.xml └── repositories.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/.gitignore -------------------------------------------------------------------------------- /CQRSGui/CQRSGui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/CQRSGui.csproj -------------------------------------------------------------------------------- /CQRSGui/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Content/Site.css -------------------------------------------------------------------------------- /CQRSGui/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Controllers/HomeController.cs -------------------------------------------------------------------------------- /CQRSGui/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Global.asax -------------------------------------------------------------------------------- /CQRSGui/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Global.asax.cs -------------------------------------------------------------------------------- /CQRSGui/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CQRSGui/Scripts/MicrosoftAjax.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Scripts/MicrosoftAjax.debug.js -------------------------------------------------------------------------------- /CQRSGui/Scripts/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Scripts/MicrosoftAjax.js -------------------------------------------------------------------------------- /CQRSGui/Scripts/MicrosoftMvcAjax.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Scripts/MicrosoftMvcAjax.debug.js -------------------------------------------------------------------------------- /CQRSGui/Scripts/MicrosoftMvcAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Scripts/MicrosoftMvcAjax.js -------------------------------------------------------------------------------- /CQRSGui/Scripts/MicrosoftMvcValidation.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Scripts/MicrosoftMvcValidation.debug.js -------------------------------------------------------------------------------- /CQRSGui/Scripts/MicrosoftMvcValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Scripts/MicrosoftMvcValidation.js -------------------------------------------------------------------------------- /CQRSGui/Scripts/jquery-1.4.1-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Scripts/jquery-1.4.1-vsdoc.js -------------------------------------------------------------------------------- /CQRSGui/Scripts/jquery-1.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Scripts/jquery-1.4.1.js -------------------------------------------------------------------------------- /CQRSGui/Scripts/jquery-1.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Scripts/jquery-1.4.1.min.js -------------------------------------------------------------------------------- /CQRSGui/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /CQRSGui/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /CQRSGui/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /CQRSGui/ServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/ServiceLocator.cs -------------------------------------------------------------------------------- /CQRSGui/Views/Home/Add.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Views/Home/Add.aspx -------------------------------------------------------------------------------- /CQRSGui/Views/Home/ChangeName.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Views/Home/ChangeName.aspx -------------------------------------------------------------------------------- /CQRSGui/Views/Home/CheckIn.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Views/Home/CheckIn.aspx -------------------------------------------------------------------------------- /CQRSGui/Views/Home/Details.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Views/Home/Details.aspx -------------------------------------------------------------------------------- /CQRSGui/Views/Home/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Views/Home/Index.aspx -------------------------------------------------------------------------------- /CQRSGui/Views/Home/Ledgers.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Views/Home/Ledgers.aspx -------------------------------------------------------------------------------- /CQRSGui/Views/Home/Remove.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Views/Home/Remove.aspx -------------------------------------------------------------------------------- /CQRSGui/Views/Shared/Error.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Views/Shared/Error.aspx -------------------------------------------------------------------------------- /CQRSGui/Views/Shared/Site.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Views/Shared/Site.Master -------------------------------------------------------------------------------- /CQRSGui/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Views/Web.config -------------------------------------------------------------------------------- /CQRSGui/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Web.Debug.config -------------------------------------------------------------------------------- /CQRSGui/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Web.Release.config -------------------------------------------------------------------------------- /CQRSGui/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/CQRSGui/Web.config -------------------------------------------------------------------------------- /SimpleCQRS.Domain/Bootstrapper.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.Domain/Bootstrapper.fs -------------------------------------------------------------------------------- /SimpleCQRS.Domain/CommandHandlers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.Domain/CommandHandlers.fs -------------------------------------------------------------------------------- /SimpleCQRS.Domain/Commands.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.Domain/Commands.fs -------------------------------------------------------------------------------- /SimpleCQRS.Domain/Domain.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.Domain/Domain.fs -------------------------------------------------------------------------------- /SimpleCQRS.Domain/Events.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.Domain/Events.fs -------------------------------------------------------------------------------- /SimpleCQRS.Domain/ReadModel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.Domain/ReadModel.fs -------------------------------------------------------------------------------- /SimpleCQRS.Domain/SimpleCQRS.Domain.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.Domain/SimpleCQRS.Domain.fsproj -------------------------------------------------------------------------------- /SimpleCQRS.FS/Aggregate.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.FS/Aggregate.fs -------------------------------------------------------------------------------- /SimpleCQRS.FS/EventStore.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.FS/EventStore.fs -------------------------------------------------------------------------------- /SimpleCQRS.FS/Exceptions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.FS/Exceptions.fs -------------------------------------------------------------------------------- /SimpleCQRS.FS/FakeBus.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.FS/FakeBus.fs -------------------------------------------------------------------------------- /SimpleCQRS.FS/Messages.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.FS/Messages.fs -------------------------------------------------------------------------------- /SimpleCQRS.FS/Repository.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.FS/Repository.fs -------------------------------------------------------------------------------- /SimpleCQRS.FS/SimpleCQRS.FS.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.FS/SimpleCQRS.FS.fsproj -------------------------------------------------------------------------------- /SimpleCQRS.FS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimpleCQRS.FS/packages.config -------------------------------------------------------------------------------- /SimplestPossibleThing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimplestPossibleThing.sln -------------------------------------------------------------------------------- /SimplestPossibleThing.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/SimplestPossibleThing.userprefs -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.0.2/Newtonsoft.Json.4.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/Newtonsoft.Json.4.0.2/Newtonsoft.Json.4.0.2.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.0.2/lib/net20/Newtonsoft.Json.Net20.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/Newtonsoft.Json.4.0.2/lib/net20/Newtonsoft.Json.Net20.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.0.2/lib/net20/Newtonsoft.Json.Net20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/Newtonsoft.Json.4.0.2/lib/net20/Newtonsoft.Json.Net20.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.0.2/lib/net35/Newtonsoft.Json.Net35.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/Newtonsoft.Json.4.0.2/lib/net35/Newtonsoft.Json.Net35.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.0.2/lib/net35/Newtonsoft.Json.Net35.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/Newtonsoft.Json.4.0.2/lib/net35/Newtonsoft.Json.Net35.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.0.2/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/Newtonsoft.Json.4.0.2/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.0.2/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/Newtonsoft.Json.4.0.2/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.0.2/lib/sl3-wp/Newtonsoft.Json.WindowsPhone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/Newtonsoft.Json.4.0.2/lib/sl3-wp/Newtonsoft.Json.WindowsPhone.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.0.2/lib/sl3-wp/Newtonsoft.Json.WindowsPhone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/Newtonsoft.Json.4.0.2/lib/sl3-wp/Newtonsoft.Json.WindowsPhone.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.0.2/lib/sl4/Newtonsoft.Json.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/Newtonsoft.Json.4.0.2/lib/sl4/Newtonsoft.Json.Silverlight.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.0.2/lib/sl4/Newtonsoft.Json.Silverlight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/Newtonsoft.Json.4.0.2/lib/sl4/Newtonsoft.Json.Silverlight.xml -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/RavenDB.1.0.0.397.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/RavenDB.1.0.0.397.nupkg -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/content/Web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/content/Web.config.transform -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/net35/MissingBitsFromClientProfile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/net35/MissingBitsFromClientProfile.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/net35/Raven.Abstractions-3.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/net35/Raven.Abstractions-3.5.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/net35/Raven.Client.Lightweight-3.5.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/net35/Raven.Client.Lightweight-3.5.XML -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/net35/Raven.Client.Lightweight-3.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/net35/Raven.Client.Lightweight-3.5.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/net35/Raven.Json-3.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/net35/Raven.Json-3.5.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/net40/AsyncCtpLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/net40/AsyncCtpLibrary.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/net40/MissingBitsFromClientProfile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/net40/MissingBitsFromClientProfile.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/net40/Raven.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/net40/Raven.Abstractions.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/net40/Raven.Client.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/net40/Raven.Client.Debug.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/net40/Raven.Client.Lightweight.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/net40/Raven.Client.Lightweight.XML -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/net40/Raven.Client.Lightweight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/net40/Raven.Client.Lightweight.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/net40/Raven.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/net40/Raven.Json.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/sl40/AsyncCtpLibrary_Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/sl40/AsyncCtpLibrary_Silverlight.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/sl40/MissingBitFromSilverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/sl40/MissingBitFromSilverlight.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/lib/sl40/Raven.Client.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/lib/sl40/Raven.Client.Silverlight.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Esent.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Esent.Interop.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Esent.Interop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Esent.Interop.xml -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/ICSharpCode.NRefactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/ICSharpCode.NRefactory.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Lucene.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Lucene.Net.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Lucene.Net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Lucene.Net.xml -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Raven.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Raven.Abstractions.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Raven.Database.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Raven.Database.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Raven.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Raven.Http.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Raven.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Raven.Json.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Raven.Munin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Raven.Munin.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Raven.Server.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Raven.Server.exe.config -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Raven.Storage.Esent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Raven.Storage.Esent.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Raven.Storage.Managed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Raven.Storage.Managed.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Raven.Studio.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Raven.Studio.xap -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Rhino.Licensing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Rhino.Licensing.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/Spatial.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/Spatial.Net.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/SpellChecker.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/SpellChecker.Net.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/SpellChecker.Net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/SpellChecker.Net.xml -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/log4net.dll -------------------------------------------------------------------------------- /packages/RavenDB.1.0.0.397/server/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/RavenDB.1.0.0.397/server/log4net.xml -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forki/m-r/HEAD/packages/repositories.config --------------------------------------------------------------------------------