├── CSharp ├── .gitignore ├── BookingApi.Sql │ ├── BookingApi.Sql.csproj │ ├── BookingDbSchema.sql │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SqlReservationsProgramVisitor.cs ├── BookingApi.SqlTests │ ├── BookingApi.SqlTests.csproj │ ├── ConnectionStrings.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SqlReservationsProgramVisitorTests.cs │ ├── UseDatabaseAttribute.cs │ └── packages.config ├── BookingApi.UnitTests │ ├── BookingApi.UnitTests.csproj │ ├── BookingApiTestConventionsAttribute.cs │ ├── MaîtreDTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StubReservationsVisitor.cs │ ├── app.config │ └── packages.config ├── BookingApi.sln ├── BookingApi │ ├── BookingApi.csproj │ ├── Create.cs │ ├── Free.cs │ ├── IMaybe.cs │ ├── IMaybeVisitor.cs │ ├── IMaîtreD.cs │ ├── IReservationsInstruction.cs │ ├── IReservationsInstructionVisitor.cs │ ├── IReservationsProgram.cs │ ├── IReservationsProgramVisitor.cs │ ├── IsReservationInFuture.cs │ ├── Just.cs │ ├── Maybe.cs │ ├── MaîtreD.cs │ ├── Nothing.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Pure.cs │ ├── ReadReservations.cs │ ├── Reservation.cs │ ├── ReservationsInstruction.cs │ ├── ReservationsMaybe.cs │ ├── ReservationsProgram.cs │ ├── Unit.cs │ └── packages.config ├── Build.fsx ├── build.sh └── packages │ ├── AutoFixture.4.0.1 │ ├── AutoFixture.4.0.1.nupkg │ └── lib │ │ ├── net452 │ │ ├── AutoFixture.dll │ │ ├── AutoFixture.pdb │ │ └── AutoFixture.xml │ │ └── netstandard1.5 │ │ ├── AutoFixture.dll │ │ ├── AutoFixture.pdb │ │ └── AutoFixture.xml │ ├── AutoFixture.Xunit2.4.0.1 │ ├── AutoFixture.Xunit2.4.0.1.nupkg │ └── lib │ │ ├── net452 │ │ ├── AutoFixture.Xunit2.dll │ │ ├── AutoFixture.Xunit2.pdb │ │ └── AutoFixture.Xunit2.xml │ │ └── netstandard1.5 │ │ ├── AutoFixture.Xunit2.dll │ │ ├── AutoFixture.Xunit2.pdb │ │ └── AutoFixture.Xunit2.xml │ ├── FAKE.4.64.4 │ ├── FAKE.4.64.4.nupkg │ └── tools │ │ ├── Argu.dll │ │ ├── Argu.pdb │ │ ├── Argu.xml │ │ ├── FAKE.FSharp.Compiler.Service.dll │ │ ├── FAKE.exe │ │ ├── FAKE.exe.config │ │ ├── FAKE.pdb │ │ ├── FAKE.pdb.srcsrv │ │ ├── FSharp.Core.dll │ │ ├── FSharp.Core.optdata │ │ ├── FSharp.Core.sigdata │ │ ├── FSharp.Core.xml │ │ ├── Fake.Deploy.Lib.dll │ │ ├── Fake.Deploy.Lib.dll.config │ │ ├── Fake.Deploy.Lib.pdb │ │ ├── Fake.Deploy.Lib.pdb.srcsrv │ │ ├── Fake.Deploy.Lib.xml │ │ ├── Fake.Deploy.exe │ │ ├── Fake.Deploy.exe.config │ │ ├── Fake.Deploy.pdb │ │ ├── Fake.Deploy.pdb.srcsrv │ │ ├── Fake.Experimental.XML │ │ ├── Fake.Experimental.dll │ │ ├── Fake.Experimental.dll.config │ │ ├── Fake.Experimental.pdb │ │ ├── Fake.Experimental.pdb.srcsrv │ │ ├── Fake.FluentMigrator.XML │ │ ├── Fake.FluentMigrator.dll │ │ ├── Fake.FluentMigrator.pdb │ │ ├── Fake.FluentMigrator.pdb.srcsrv │ │ ├── Fake.Gallio.XML │ │ ├── Fake.Gallio.dll │ │ ├── Fake.Gallio.dll.config │ │ ├── Fake.Gallio.pdb │ │ ├── Fake.Gallio.pdb.srcsrv │ │ ├── Fake.IIS.XML │ │ ├── Fake.IIS.dll │ │ ├── Fake.IIS.dll.config │ │ ├── Fake.IIS.pdb │ │ ├── Fake.IIS.pdb.srcsrv │ │ ├── Fake.SQL.XML │ │ ├── Fake.SQL.dll │ │ ├── Fake.SQL.dll.config │ │ ├── Fake.SQL.pdb │ │ ├── Fake.SQL.pdb.srcsrv │ │ ├── FakeLib.XML │ │ ├── FakeLib.dll │ │ ├── FakeLib.dll.config │ │ ├── FakeLib.pdb │ │ ├── FakeLib.pdb.srcsrv │ │ ├── FluentMigrator.Runner.dll │ │ ├── FluentMigrator.Runner.pdb │ │ ├── FluentMigrator.dll │ │ ├── FluentMigrator.pdb │ │ ├── FluentMigrator.xml │ │ ├── HashLib.dll │ │ ├── ICSharpCode.SharpZipLib.dll │ │ ├── License.txt │ │ ├── Microsoft.Build.Utilities.v3.5.dll │ │ ├── Microsoft.Build.Utilities.v3.5.resources.dll │ │ ├── Microsoft.Build.Utilities.v3.5.xml │ │ ├── Microsoft.SqlServer.ConnectionInfo.dll │ │ ├── Microsoft.SqlServer.Management.Sdk.Sfc.dll │ │ ├── Microsoft.SqlServer.Smo.dll │ │ ├── Microsoft.Web.Administration.dll │ │ ├── Microsoft.Web.XmlTransform.dll │ │ ├── Mono.Cecil.Mdb.dll │ │ ├── Mono.Cecil.Pdb.dll │ │ ├── Mono.Cecil.Rocks.dll │ │ ├── Mono.Cecil.dll │ │ ├── NLog.dll │ │ ├── NLog.xml │ │ ├── Nancy.Authentication.Stateless.dll │ │ ├── Nancy.Authentication.Stateless.xml │ │ ├── Nancy.Hosting.Self.dll │ │ ├── Nancy.Hosting.Self.xml │ │ ├── Nancy.Serialization.JsonNet.dll │ │ ├── Nancy.dll │ │ ├── Nancy.xml │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── NuGet.Core.dll │ │ ├── README.markdown │ │ ├── RELEASE_NOTES.md │ │ ├── Renci.SshNet.dll │ │ ├── Renci.SshNet.xml │ │ ├── Serilog.FullNetFx.dll │ │ ├── Serilog.FullNetFx.pdb │ │ ├── Serilog.FullNetFx.xml │ │ ├── Serilog.Sinks.NLog.dll │ │ ├── Serilog.Sinks.NLog.xml │ │ ├── Serilog.dll │ │ ├── Serilog.pdb │ │ ├── Serilog.xml │ │ ├── StyleCop.CSharp.Rules.dll │ │ ├── StyleCop.CSharp.dll │ │ ├── StyleCop.dll │ │ ├── System.Buffers.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.Diagnostics.DiagnosticSource.xml │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Extensions.xml │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.Primitives.xml │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ ├── System.Threading.Tasks.Extensions.dll │ │ ├── System.Threading.Tasks.Extensions.xml │ │ ├── System.ValueTuple.dll │ │ ├── VSFile.dll │ │ └── VSFile.xml │ ├── System.Threading.Tasks.Extensions.4.3.0 │ ├── System.Threading.Tasks.Extensions.4.3.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ └── lib │ │ ├── netstandard1.0 │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml │ │ └── portable-net45+win8+wp8+wpa81 │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml │ ├── System.ValueTuple.4.3.0 │ ├── System.ValueTuple.4.3.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ └── lib │ │ ├── netstandard1.0 │ │ ├── .xml │ │ └── System.ValueTuple.dll │ │ └── portable-net40+sl4+win8+wp8 │ │ ├── .xml │ │ └── System.ValueTuple.dll │ ├── xunit.2.3.1 │ └── xunit.2.3.1.nupkg │ ├── xunit.abstractions.2.0.1 │ ├── lib │ │ ├── net35 │ │ │ ├── xunit.abstractions.dll │ │ │ └── xunit.abstractions.xml │ │ └── netstandard1.0 │ │ │ ├── xunit.abstractions.dll │ │ │ └── xunit.abstractions.xml │ └── xunit.abstractions.2.0.1.nupkg │ ├── xunit.analyzers.0.7.0 │ ├── analyzers │ │ └── dotnet │ │ │ └── cs │ │ │ └── xunit.analyzers.dll │ ├── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ └── xunit.analyzers.0.7.0.nupkg │ ├── xunit.assert.2.3.1 │ ├── lib │ │ └── netstandard1.1 │ │ │ ├── xunit.assert.dll │ │ │ └── xunit.assert.xml │ └── xunit.assert.2.3.1.nupkg │ ├── xunit.core.2.3.1 │ ├── build │ │ ├── xunit.core.props │ │ ├── xunit.core.targets │ │ └── xunit.execution.desktop.dll │ ├── buildMultiTargeting │ │ ├── xunit.core.props │ │ └── xunit.core.targets │ └── xunit.core.2.3.1.nupkg │ ├── xunit.extensibility.core.2.3.1 │ ├── lib │ │ └── netstandard1.1 │ │ │ ├── xunit.core.dll │ │ │ ├── xunit.core.dll.tdnet │ │ │ ├── xunit.core.xml │ │ │ ├── xunit.runner.tdnet.dll │ │ │ └── xunit.runner.utility.net452.dll │ └── xunit.extensibility.core.2.3.1.nupkg │ ├── xunit.extensibility.execution.2.3.1 │ ├── lib │ │ ├── net452 │ │ │ ├── xunit.execution.desktop.dll │ │ │ └── xunit.execution.desktop.xml │ │ └── netstandard1.1 │ │ │ ├── xunit.execution.dotnet.dll │ │ │ └── xunit.execution.dotnet.xml │ └── xunit.extensibility.execution.2.3.1.nupkg │ └── xunit.runner.console.2.3.1 │ ├── build │ └── xunit.runner.console.props │ ├── tools │ ├── net452 │ │ ├── xunit.abstractions.dll │ │ ├── xunit.console.exe │ │ ├── xunit.console.exe.config │ │ ├── xunit.console.x86.exe │ │ ├── xunit.console.x86.exe.config │ │ ├── xunit.runner.reporters.net452.dll │ │ └── xunit.runner.utility.net452.dll │ ├── netcoreapp1.0 │ │ ├── xunit.abstractions.dll │ │ ├── xunit.console.deps.json │ │ ├── xunit.console.dll │ │ ├── xunit.console.dll.config │ │ ├── xunit.console.runtimeconfig.json │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ └── xunit.runner.utility.netcoreapp10.xml │ └── netcoreapp2.0 │ │ ├── xunit.abstractions.dll │ │ ├── xunit.console.deps.json │ │ ├── xunit.console.dll │ │ ├── xunit.console.dll.config │ │ ├── xunit.console.runtimeconfig.json │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ └── xunit.runner.utility.netcoreapp10.xml │ └── xunit.runner.console.2.3.1.nupkg ├── FSharp ├── .gitignore ├── BookingApi.UnitTests │ ├── AssemblyInfo.fs │ ├── BookingApi.UnitTests.fsproj │ ├── Gen.fs │ ├── Tests.fs │ └── packages.config ├── BookingApi.sln ├── BookingApi │ ├── AssemblyInfo.fs │ ├── Booking.fs │ ├── BookingApi.fsproj │ ├── Reservations.fs │ ├── ReservationsOption.fs │ └── packages.config └── packages │ ├── FSharp.Core.4.3.4 │ ├── FSharp.Core.4.3.4.nupkg │ └── lib │ │ ├── net45 │ │ ├── FSharp.Core.dll │ │ ├── FSharp.Core.optdata │ │ ├── FSharp.Core.sigdata │ │ ├── FSharp.Core.xml │ │ ├── UnitTests │ │ │ └── MockTypeProviders │ │ │ │ ├── cs │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ ├── de │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ ├── en │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ ├── es │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ ├── fr │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ ├── it │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ ├── ja │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ ├── ko │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ ├── pl │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ ├── pt-BR │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ ├── ru │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ ├── tr │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ ├── zh-Hans │ │ │ │ └── FSharp.Core.resources.dll │ │ │ │ └── zh-Hant │ │ │ │ └── FSharp.Core.resources.dll │ │ ├── cs │ │ │ └── FSharp.Core.resources.dll │ │ ├── de │ │ │ └── FSharp.Core.resources.dll │ │ ├── en │ │ │ └── FSharp.Core.resources.dll │ │ ├── es │ │ │ └── FSharp.Core.resources.dll │ │ ├── fr │ │ │ └── FSharp.Core.resources.dll │ │ ├── it │ │ │ └── FSharp.Core.resources.dll │ │ ├── ja │ │ │ └── FSharp.Core.resources.dll │ │ ├── ko │ │ │ └── FSharp.Core.resources.dll │ │ ├── pl │ │ │ └── FSharp.Core.resources.dll │ │ ├── pt-BR │ │ │ └── FSharp.Core.resources.dll │ │ ├── ru │ │ │ └── FSharp.Core.resources.dll │ │ ├── tr │ │ │ └── FSharp.Core.resources.dll │ │ ├── zh-Hans │ │ │ └── FSharp.Core.resources.dll │ │ └── zh-Hant │ │ │ └── FSharp.Core.resources.dll │ │ └── netstandard1.6 │ │ ├── FSharp.Core.dll │ │ ├── FSharp.Core.optdata │ │ ├── FSharp.Core.sigdata │ │ ├── FSharp.Core.xml │ │ ├── cs │ │ └── FSharp.Core.resources.dll │ │ ├── de │ │ └── FSharp.Core.resources.dll │ │ ├── en │ │ └── FSharp.Core.resources.dll │ │ ├── es │ │ └── FSharp.Core.resources.dll │ │ ├── fr │ │ └── FSharp.Core.resources.dll │ │ ├── it │ │ └── FSharp.Core.resources.dll │ │ ├── ja │ │ └── FSharp.Core.resources.dll │ │ ├── ko │ │ └── FSharp.Core.resources.dll │ │ ├── pl │ │ └── FSharp.Core.resources.dll │ │ ├── pt-BR │ │ └── FSharp.Core.resources.dll │ │ ├── ru │ │ └── FSharp.Core.resources.dll │ │ ├── tr │ │ └── FSharp.Core.resources.dll │ │ ├── zh-Hans │ │ └── FSharp.Core.resources.dll │ │ └── zh-Hant │ │ └── FSharp.Core.resources.dll │ ├── Hedgehog.0.7.0.0 │ ├── Hedgehog.0.7.0.0.nupkg │ └── lib │ │ └── netstandard1.6 │ │ ├── Hedgehog.XML │ │ └── Hedgehog.dll │ ├── System.Collections.Specialized.4.0.1 │ ├── System.Collections.Specialized.4.0.1.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Collections.Specialized.dll │ │ ├── netstandard1.3 │ │ │ └── System.Collections.Specialized.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── ref │ │ ├── MonoAndroid10 │ │ └── _._ │ │ ├── MonoTouch10 │ │ └── _._ │ │ ├── net46 │ │ └── System.Collections.Specialized.dll │ │ ├── netstandard1.3 │ │ ├── System.Collections.Specialized.dll │ │ ├── System.Collections.Specialized.xml │ │ ├── de │ │ │ └── System.Collections.Specialized.xml │ │ ├── es │ │ │ └── System.Collections.Specialized.xml │ │ ├── fr │ │ │ └── System.Collections.Specialized.xml │ │ ├── it │ │ │ └── System.Collections.Specialized.xml │ │ ├── ja │ │ │ └── System.Collections.Specialized.xml │ │ ├── ko │ │ │ └── System.Collections.Specialized.xml │ │ ├── ru │ │ │ └── System.Collections.Specialized.xml │ │ ├── zh-hans │ │ │ └── System.Collections.Specialized.xml │ │ └── zh-hant │ │ │ └── System.Collections.Specialized.xml │ │ ├── xamarinios10 │ │ └── _._ │ │ ├── xamarinmac20 │ │ └── _._ │ │ ├── xamarintvos10 │ │ └── _._ │ │ └── xamarinwatchos10 │ │ └── _._ │ ├── System.ValueTuple.4.3.1 │ ├── System.ValueTuple.4.3.1.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── netstandard1.0 │ │ │ ├── .xml │ │ │ └── System.ValueTuple.dll │ │ ├── portable-net40+sl4+win8+wp8 │ │ │ ├── .xml │ │ │ └── System.ValueTuple.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── ref │ │ ├── MonoAndroid10 │ │ └── _._ │ │ ├── MonoTouch10 │ │ └── _._ │ │ ├── xamarinios10 │ │ └── _._ │ │ ├── xamarinmac20 │ │ └── _._ │ │ ├── xamarintvos10 │ │ └── _._ │ │ └── xamarinwatchos10 │ │ └── _._ │ ├── Unquote.4.0.0 │ ├── Unquote.4.0.0.nupkg │ └── lib │ │ ├── net45 │ │ ├── Unquote.dll │ │ └── Unquote.xml │ │ └── netstandard2.0 │ │ ├── Unquote.dll │ │ └── Unquote.xml │ ├── xunit.abstractions.2.0.1 │ ├── lib │ │ ├── net35 │ │ │ ├── xunit.abstractions.dll │ │ │ └── xunit.abstractions.xml │ │ └── netstandard1.0 │ │ │ ├── xunit.abstractions.dll │ │ │ └── xunit.abstractions.xml │ └── xunit.abstractions.2.0.1.nupkg │ ├── xunit.core.2.3.1 │ ├── build │ │ ├── xunit.core.props │ │ ├── xunit.core.targets │ │ └── xunit.execution.desktop.dll │ ├── buildMultiTargeting │ │ ├── xunit.core.props │ │ └── xunit.core.targets │ └── xunit.core.2.3.1.nupkg │ ├── xunit.extensibility.core.2.3.1 │ ├── lib │ │ └── netstandard1.1 │ │ │ ├── xunit.core.dll │ │ │ ├── xunit.core.dll.tdnet │ │ │ ├── xunit.core.xml │ │ │ ├── xunit.runner.tdnet.dll │ │ │ └── xunit.runner.utility.net452.dll │ └── xunit.extensibility.core.2.3.1.nupkg │ └── xunit.extensibility.execution.2.3.1 │ ├── lib │ ├── net452 │ │ ├── xunit.execution.desktop.dll │ │ └── xunit.execution.desktop.xml │ └── netstandard1.1 │ │ ├── xunit.execution.dotnet.dll │ │ └── xunit.execution.dotnet.xml │ └── xunit.extensibility.execution.2.3.1.nupkg ├── Haskell ├── .gitignore ├── BookingApi.cabal ├── Setup.hs ├── app │ └── Main.hs ├── src │ └── BookingApi.hs ├── stack.yaml └── test │ └── Spec.hs ├── LICENSE └── README.md /CSharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/.gitignore -------------------------------------------------------------------------------- /CSharp/BookingApi.Sql/BookingApi.Sql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.Sql/BookingApi.Sql.csproj -------------------------------------------------------------------------------- /CSharp/BookingApi.Sql/BookingDbSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.Sql/BookingDbSchema.sql -------------------------------------------------------------------------------- /CSharp/BookingApi.Sql/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.Sql/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/BookingApi.Sql/SqlReservationsProgramVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.Sql/SqlReservationsProgramVisitor.cs -------------------------------------------------------------------------------- /CSharp/BookingApi.SqlTests/BookingApi.SqlTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.SqlTests/BookingApi.SqlTests.csproj -------------------------------------------------------------------------------- /CSharp/BookingApi.SqlTests/ConnectionStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.SqlTests/ConnectionStrings.cs -------------------------------------------------------------------------------- /CSharp/BookingApi.SqlTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.SqlTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/BookingApi.SqlTests/SqlReservationsProgramVisitorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.SqlTests/SqlReservationsProgramVisitorTests.cs -------------------------------------------------------------------------------- /CSharp/BookingApi.SqlTests/UseDatabaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.SqlTests/UseDatabaseAttribute.cs -------------------------------------------------------------------------------- /CSharp/BookingApi.SqlTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.SqlTests/packages.config -------------------------------------------------------------------------------- /CSharp/BookingApi.UnitTests/BookingApi.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.UnitTests/BookingApi.UnitTests.csproj -------------------------------------------------------------------------------- /CSharp/BookingApi.UnitTests/BookingApiTestConventionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.UnitTests/BookingApiTestConventionsAttribute.cs -------------------------------------------------------------------------------- /CSharp/BookingApi.UnitTests/MaîtreDTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.UnitTests/MaîtreDTests.cs -------------------------------------------------------------------------------- /CSharp/BookingApi.UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/BookingApi.UnitTests/StubReservationsVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.UnitTests/StubReservationsVisitor.cs -------------------------------------------------------------------------------- /CSharp/BookingApi.UnitTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.UnitTests/app.config -------------------------------------------------------------------------------- /CSharp/BookingApi.UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.UnitTests/packages.config -------------------------------------------------------------------------------- /CSharp/BookingApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi.sln -------------------------------------------------------------------------------- /CSharp/BookingApi/BookingApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/BookingApi.csproj -------------------------------------------------------------------------------- /CSharp/BookingApi/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/Create.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/Free.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/Free.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/IMaybe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/IMaybe.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/IMaybeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/IMaybeVisitor.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/IMaîtreD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/IMaîtreD.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/IReservationsInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/IReservationsInstruction.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/IReservationsInstructionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/IReservationsInstructionVisitor.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/IReservationsProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/IReservationsProgram.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/IReservationsProgramVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/IReservationsProgramVisitor.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/IsReservationInFuture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/IsReservationInFuture.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/Just.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/Just.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/Maybe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/Maybe.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/MaîtreD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/MaîtreD.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/Nothing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/Nothing.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/Pure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/Pure.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/ReadReservations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/ReadReservations.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/Reservation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/Reservation.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/ReservationsInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/ReservationsInstruction.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/ReservationsMaybe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/ReservationsMaybe.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/ReservationsProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/ReservationsProgram.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/Unit.cs -------------------------------------------------------------------------------- /CSharp/BookingApi/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/BookingApi/packages.config -------------------------------------------------------------------------------- /CSharp/Build.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/Build.fsx -------------------------------------------------------------------------------- /CSharp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/build.sh -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.4.0.1/AutoFixture.4.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.4.0.1/AutoFixture.4.0.1.nupkg -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.4.0.1/lib/net452/AutoFixture.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.4.0.1/lib/net452/AutoFixture.dll -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.4.0.1/lib/net452/AutoFixture.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.4.0.1/lib/net452/AutoFixture.pdb -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.4.0.1/lib/net452/AutoFixture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.4.0.1/lib/net452/AutoFixture.xml -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.4.0.1/lib/netstandard1.5/AutoFixture.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.4.0.1/lib/netstandard1.5/AutoFixture.dll -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.4.0.1/lib/netstandard1.5/AutoFixture.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.4.0.1/lib/netstandard1.5/AutoFixture.pdb -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.4.0.1/lib/netstandard1.5/AutoFixture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.4.0.1/lib/netstandard1.5/AutoFixture.xml -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.Xunit2.4.0.1/AutoFixture.Xunit2.4.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.Xunit2.4.0.1/AutoFixture.Xunit2.4.0.1.nupkg -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.Xunit2.4.0.1/lib/net452/AutoFixture.Xunit2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.Xunit2.4.0.1/lib/net452/AutoFixture.Xunit2.dll -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.Xunit2.4.0.1/lib/net452/AutoFixture.Xunit2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.Xunit2.4.0.1/lib/net452/AutoFixture.Xunit2.pdb -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.Xunit2.4.0.1/lib/net452/AutoFixture.Xunit2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.Xunit2.4.0.1/lib/net452/AutoFixture.Xunit2.xml -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.Xunit2.4.0.1/lib/netstandard1.5/AutoFixture.Xunit2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.Xunit2.4.0.1/lib/netstandard1.5/AutoFixture.Xunit2.dll -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.Xunit2.4.0.1/lib/netstandard1.5/AutoFixture.Xunit2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.Xunit2.4.0.1/lib/netstandard1.5/AutoFixture.Xunit2.pdb -------------------------------------------------------------------------------- /CSharp/packages/AutoFixture.Xunit2.4.0.1/lib/netstandard1.5/AutoFixture.Xunit2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/AutoFixture.Xunit2.4.0.1/lib/netstandard1.5/AutoFixture.Xunit2.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/FAKE.4.64.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/FAKE.4.64.4.nupkg -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Argu.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Argu.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Argu.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Argu.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Argu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Argu.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FAKE.FSharp.Compiler.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FAKE.FSharp.Compiler.Service.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FAKE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FAKE.exe -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FAKE.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FAKE.exe.config -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FAKE.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FAKE.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FAKE.pdb.srcsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FAKE.pdb.srcsrv -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FSharp.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FSharp.Core.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FSharp.Core.optdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FSharp.Core.optdata -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FSharp.Core.sigdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FSharp.Core.sigdata -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FSharp.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FSharp.Core.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.Lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.Lib.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.Lib.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.Lib.dll.config -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.Lib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.Lib.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.Lib.pdb.srcsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.Lib.pdb.srcsrv -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.Lib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.Lib.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.exe -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.exe.config -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.pdb.srcsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Deploy.pdb.srcsrv -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Experimental.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Experimental.XML -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Experimental.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Experimental.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Experimental.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Experimental.dll.config -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Experimental.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Experimental.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Experimental.pdb.srcsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Experimental.pdb.srcsrv -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.FluentMigrator.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.FluentMigrator.XML -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.FluentMigrator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.FluentMigrator.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.FluentMigrator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.FluentMigrator.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.FluentMigrator.pdb.srcsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.FluentMigrator.pdb.srcsrv -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Gallio.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Gallio.XML -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Gallio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Gallio.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Gallio.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Gallio.dll.config -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Gallio.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Gallio.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.Gallio.pdb.srcsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.Gallio.pdb.srcsrv -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.IIS.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.IIS.XML -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.IIS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.IIS.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.IIS.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.IIS.dll.config -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.IIS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.IIS.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.IIS.pdb.srcsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.IIS.pdb.srcsrv -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.SQL.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.SQL.XML -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.SQL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.SQL.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.SQL.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.SQL.dll.config -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.SQL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.SQL.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Fake.SQL.pdb.srcsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Fake.SQL.pdb.srcsrv -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FakeLib.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FakeLib.XML -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FakeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FakeLib.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FakeLib.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FakeLib.dll.config -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FakeLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FakeLib.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FakeLib.pdb.srcsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FakeLib.pdb.srcsrv -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FluentMigrator.Runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FluentMigrator.Runner.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FluentMigrator.Runner.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FluentMigrator.Runner.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FluentMigrator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FluentMigrator.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FluentMigrator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FluentMigrator.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/FluentMigrator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/FluentMigrator.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/HashLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/HashLib.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/License.txt -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Microsoft.Build.Utilities.v3.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Microsoft.Build.Utilities.v3.5.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Microsoft.Build.Utilities.v3.5.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Microsoft.Build.Utilities.v3.5.resources.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Microsoft.Build.Utilities.v3.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Microsoft.Build.Utilities.v3.5.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Microsoft.SqlServer.ConnectionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Microsoft.SqlServer.ConnectionInfo.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Microsoft.SqlServer.Management.Sdk.Sfc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Microsoft.SqlServer.Management.Sdk.Sfc.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Microsoft.SqlServer.Smo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Microsoft.SqlServer.Smo.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Microsoft.Web.Administration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Microsoft.Web.Administration.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Microsoft.Web.XmlTransform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Microsoft.Web.XmlTransform.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Mono.Cecil.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/NLog.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/NLog.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Nancy.Authentication.Stateless.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Nancy.Authentication.Stateless.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Nancy.Authentication.Stateless.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Nancy.Authentication.Stateless.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Nancy.Hosting.Self.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Nancy.Hosting.Self.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Nancy.Hosting.Self.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Nancy.Hosting.Self.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Nancy.Serialization.JsonNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Nancy.Serialization.JsonNet.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Nancy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Nancy.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Nancy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Nancy.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/NuGet.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/NuGet.Core.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/README.markdown -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/RELEASE_NOTES.md -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Renci.SshNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Renci.SshNet.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Renci.SshNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Renci.SshNet.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Serilog.FullNetFx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Serilog.FullNetFx.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Serilog.FullNetFx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Serilog.FullNetFx.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Serilog.FullNetFx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Serilog.FullNetFx.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Serilog.Sinks.NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Serilog.Sinks.NLog.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Serilog.Sinks.NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Serilog.Sinks.NLog.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Serilog.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Serilog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Serilog.pdb -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/Serilog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/Serilog.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/StyleCop.CSharp.Rules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/StyleCop.CSharp.Rules.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/StyleCop.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/StyleCop.CSharp.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/StyleCop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/StyleCop.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/System.Buffers.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/System.Net.Http.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/System.Net.Http.Extensions.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/System.Net.Http.Primitives.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/System.Threading.Tasks.Extensions.xml -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/System.ValueTuple.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/VSFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/VSFile.dll -------------------------------------------------------------------------------- /CSharp/packages/FAKE.4.64.4/tools/VSFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/FAKE.4.64.4/tools/VSFile.xml -------------------------------------------------------------------------------- /CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/System.Threading.Tasks.Extensions.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/System.Threading.Tasks.Extensions.4.3.0.nupkg -------------------------------------------------------------------------------- /CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml -------------------------------------------------------------------------------- /CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.Threading.Tasks.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml -------------------------------------------------------------------------------- /CSharp/packages/System.ValueTuple.4.3.0/System.ValueTuple.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.ValueTuple.4.3.0/System.ValueTuple.4.3.0.nupkg -------------------------------------------------------------------------------- /CSharp/packages/System.ValueTuple.4.3.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.ValueTuple.4.3.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /CSharp/packages/System.ValueTuple.4.3.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.ValueTuple.4.3.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /CSharp/packages/System.ValueTuple.4.3.0/lib/netstandard1.0/.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.ValueTuple.4.3.0/lib/netstandard1.0/.xml -------------------------------------------------------------------------------- /CSharp/packages/System.ValueTuple.4.3.0/lib/netstandard1.0/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.ValueTuple.4.3.0/lib/netstandard1.0/System.ValueTuple.dll -------------------------------------------------------------------------------- /CSharp/packages/System.ValueTuple.4.3.0/lib/portable-net40+sl4+win8+wp8/.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.ValueTuple.4.3.0/lib/portable-net40+sl4+win8+wp8/.xml -------------------------------------------------------------------------------- /CSharp/packages/System.ValueTuple.4.3.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/System.ValueTuple.4.3.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.2.3.1/xunit.2.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.2.3.1/xunit.2.3.1.nupkg -------------------------------------------------------------------------------- /CSharp/packages/xunit.abstractions.2.0.1/lib/net35/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.abstractions.2.0.1/lib/net35/xunit.abstractions.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.abstractions.2.0.1/lib/net35/xunit.abstractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.abstractions.2.0.1/lib/net35/xunit.abstractions.xml -------------------------------------------------------------------------------- /CSharp/packages/xunit.abstractions.2.0.1/lib/netstandard1.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.abstractions.2.0.1/lib/netstandard1.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.abstractions.2.0.1/lib/netstandard1.0/xunit.abstractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.abstractions.2.0.1/lib/netstandard1.0/xunit.abstractions.xml -------------------------------------------------------------------------------- /CSharp/packages/xunit.abstractions.2.0.1/xunit.abstractions.2.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.abstractions.2.0.1/xunit.abstractions.2.0.1.nupkg -------------------------------------------------------------------------------- /CSharp/packages/xunit.analyzers.0.7.0/analyzers/dotnet/cs/xunit.analyzers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.analyzers.0.7.0/analyzers/dotnet/cs/xunit.analyzers.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.analyzers.0.7.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.analyzers.0.7.0/tools/install.ps1 -------------------------------------------------------------------------------- /CSharp/packages/xunit.analyzers.0.7.0/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.analyzers.0.7.0/tools/uninstall.ps1 -------------------------------------------------------------------------------- /CSharp/packages/xunit.analyzers.0.7.0/xunit.analyzers.0.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.analyzers.0.7.0/xunit.analyzers.0.7.0.nupkg -------------------------------------------------------------------------------- /CSharp/packages/xunit.assert.2.3.1/lib/netstandard1.1/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.assert.2.3.1/lib/netstandard1.1/xunit.assert.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.assert.2.3.1/lib/netstandard1.1/xunit.assert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.assert.2.3.1/lib/netstandard1.1/xunit.assert.xml -------------------------------------------------------------------------------- /CSharp/packages/xunit.assert.2.3.1/xunit.assert.2.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.assert.2.3.1/xunit.assert.2.3.1.nupkg -------------------------------------------------------------------------------- /CSharp/packages/xunit.core.2.3.1/build/xunit.core.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.core.2.3.1/build/xunit.core.props -------------------------------------------------------------------------------- /CSharp/packages/xunit.core.2.3.1/build/xunit.core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.core.2.3.1/build/xunit.core.targets -------------------------------------------------------------------------------- /CSharp/packages/xunit.core.2.3.1/build/xunit.execution.desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.core.2.3.1/build/xunit.execution.desktop.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.core.2.3.1/buildMultiTargeting/xunit.core.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.core.2.3.1/buildMultiTargeting/xunit.core.props -------------------------------------------------------------------------------- /CSharp/packages/xunit.core.2.3.1/buildMultiTargeting/xunit.core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.core.2.3.1/buildMultiTargeting/xunit.core.targets -------------------------------------------------------------------------------- /CSharp/packages/xunit.core.2.3.1/xunit.core.2.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.core.2.3.1/xunit.core.2.3.1.nupkg -------------------------------------------------------------------------------- /CSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.core.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.core.dll.tdnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.core.dll.tdnet -------------------------------------------------------------------------------- /CSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.core.xml -------------------------------------------------------------------------------- /CSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.runner.tdnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.runner.tdnet.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.runner.utility.net452.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.runner.utility.net452.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.extensibility.core.2.3.1/xunit.extensibility.core.2.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.extensibility.core.2.3.1/xunit.extensibility.core.2.3.1.nupkg -------------------------------------------------------------------------------- /CSharp/packages/xunit.extensibility.execution.2.3.1/lib/net452/xunit.execution.desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.extensibility.execution.2.3.1/lib/net452/xunit.execution.desktop.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.extensibility.execution.2.3.1/lib/net452/xunit.execution.desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.extensibility.execution.2.3.1/lib/net452/xunit.execution.desktop.xml -------------------------------------------------------------------------------- /CSharp/packages/xunit.extensibility.execution.2.3.1/lib/netstandard1.1/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.extensibility.execution.2.3.1/lib/netstandard1.1/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.extensibility.execution.2.3.1/lib/netstandard1.1/xunit.execution.dotnet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.extensibility.execution.2.3.1/lib/netstandard1.1/xunit.execution.dotnet.xml -------------------------------------------------------------------------------- /CSharp/packages/xunit.extensibility.execution.2.3.1/xunit.extensibility.execution.2.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.extensibility.execution.2.3.1/xunit.extensibility.execution.2.3.1.nupkg -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/build/xunit.runner.console.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/build/xunit.runner.console.props -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.abstractions.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.console.exe -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.console.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.console.exe.config -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.console.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.console.x86.exe -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.console.x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.console.x86.exe.config -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.runner.reporters.net452.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.runner.reporters.net452.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.runner.utility.net452.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/net452/xunit.runner.utility.net452.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.console.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.console.deps.json -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.console.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.console.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.console.dll.config -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.console.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.console.runtimeconfig.json -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.console.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.console.deps.json -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.console.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.console.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.console.dll.config -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.console.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.console.runtimeconfig.json -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.runner.reporters.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.runner.reporters.netcoreapp10.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.dll -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.xml -------------------------------------------------------------------------------- /CSharp/packages/xunit.runner.console.2.3.1/xunit.runner.console.2.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/CSharp/packages/xunit.runner.console.2.3.1/xunit.runner.console.2.3.1.nupkg -------------------------------------------------------------------------------- /FSharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/.gitignore -------------------------------------------------------------------------------- /FSharp/BookingApi.UnitTests/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/BookingApi.UnitTests/AssemblyInfo.fs -------------------------------------------------------------------------------- /FSharp/BookingApi.UnitTests/BookingApi.UnitTests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/BookingApi.UnitTests/BookingApi.UnitTests.fsproj -------------------------------------------------------------------------------- /FSharp/BookingApi.UnitTests/Gen.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/BookingApi.UnitTests/Gen.fs -------------------------------------------------------------------------------- /FSharp/BookingApi.UnitTests/Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/BookingApi.UnitTests/Tests.fs -------------------------------------------------------------------------------- /FSharp/BookingApi.UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/BookingApi.UnitTests/packages.config -------------------------------------------------------------------------------- /FSharp/BookingApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/BookingApi.sln -------------------------------------------------------------------------------- /FSharp/BookingApi/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/BookingApi/AssemblyInfo.fs -------------------------------------------------------------------------------- /FSharp/BookingApi/Booking.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/BookingApi/Booking.fs -------------------------------------------------------------------------------- /FSharp/BookingApi/BookingApi.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/BookingApi/BookingApi.fsproj -------------------------------------------------------------------------------- /FSharp/BookingApi/Reservations.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/BookingApi/Reservations.fs -------------------------------------------------------------------------------- /FSharp/BookingApi/ReservationsOption.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/BookingApi/ReservationsOption.fs -------------------------------------------------------------------------------- /FSharp/BookingApi/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/BookingApi/packages.config -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/FSharp.Core.4.3.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/FSharp.Core.4.3.4.nupkg -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/FSharp.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/FSharp.Core.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/FSharp.Core.optdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/FSharp.Core.optdata -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/FSharp.Core.sigdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/FSharp.Core.sigdata -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/FSharp.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/FSharp.Core.xml -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/cs/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/cs/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/de/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/de/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/en/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/en/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/es/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/es/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/fr/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/fr/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/it/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/it/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/ja/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/ja/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/ko/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/ko/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/pl/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/pl/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/pt-BR/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/pt-BR/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/ru/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/ru/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/tr/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/tr/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/zh-Hans/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/zh-Hans/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/zh-Hant/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/UnitTests/MockTypeProviders/zh-Hant/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/cs/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/cs/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/de/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/de/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/en/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/en/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/es/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/es/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/fr/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/fr/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/it/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/it/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/ja/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/ja/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/ko/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/ko/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/pl/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/pl/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/pt-BR/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/pt-BR/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/ru/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/ru/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/tr/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/tr/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/zh-Hans/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/zh-Hans/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/net45/zh-Hant/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/net45/zh-Hant/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/FSharp.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/FSharp.Core.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/FSharp.Core.optdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/FSharp.Core.optdata -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/FSharp.Core.sigdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/FSharp.Core.sigdata -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/FSharp.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/FSharp.Core.xml -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/cs/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/cs/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/de/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/de/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/en/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/en/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/es/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/es/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/fr/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/fr/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/it/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/it/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/ja/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/ja/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/ko/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/ko/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/pl/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/pl/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/pt-BR/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/pt-BR/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/ru/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/ru/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/tr/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/tr/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/zh-Hans/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/zh-Hans/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/zh-Hant/FSharp.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/FSharp.Core.4.3.4/lib/netstandard1.6/zh-Hant/FSharp.Core.resources.dll -------------------------------------------------------------------------------- /FSharp/packages/Hedgehog.0.7.0.0/Hedgehog.0.7.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/Hedgehog.0.7.0.0/Hedgehog.0.7.0.0.nupkg -------------------------------------------------------------------------------- /FSharp/packages/Hedgehog.0.7.0.0/lib/netstandard1.6/Hedgehog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/Hedgehog.0.7.0.0/lib/netstandard1.6/Hedgehog.XML -------------------------------------------------------------------------------- /FSharp/packages/Hedgehog.0.7.0.0/lib/netstandard1.6/Hedgehog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/Hedgehog.0.7.0.0/lib/netstandard1.6/Hedgehog.dll -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/System.Collections.Specialized.4.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/System.Collections.Specialized.4.0.1.nupkg -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/dotnet_library_license.txt -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/lib/net46/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/lib/net46/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/lib/netstandard1.3/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/lib/netstandard1.3/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/net46/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ref/net46/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/System.Collections.Specialized.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/System.Collections.Specialized.xml -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/de/System.Collections.Specialized.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/de/System.Collections.Specialized.xml -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/es/System.Collections.Specialized.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/es/System.Collections.Specialized.xml -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/fr/System.Collections.Specialized.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/fr/System.Collections.Specialized.xml -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/it/System.Collections.Specialized.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/it/System.Collections.Specialized.xml -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/ja/System.Collections.Specialized.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/ja/System.Collections.Specialized.xml -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/ko/System.Collections.Specialized.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/ko/System.Collections.Specialized.xml -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/ru/System.Collections.Specialized.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/ru/System.Collections.Specialized.xml -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.Collections.Specialized.4.0.1/ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.Collections.Specialized.4.0.1/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/System.ValueTuple.4.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.ValueTuple.4.3.1/System.ValueTuple.4.3.1.nupkg -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.ValueTuple.4.3.1/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.ValueTuple.4.3.1/dotnet_library_license.txt -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/lib/netstandard1.0/.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.ValueTuple.4.3.1/lib/netstandard1.0/.xml -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/lib/netstandard1.0/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.ValueTuple.4.3.1/lib/netstandard1.0/System.ValueTuple.dll -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/lib/portable-net40+sl4+win8+wp8/.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.ValueTuple.4.3.1/lib/portable-net40+sl4+win8+wp8/.xml -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/System.ValueTuple.4.3.1/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/System.ValueTuple.4.3.1/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FSharp/packages/Unquote.4.0.0/Unquote.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/Unquote.4.0.0/Unquote.4.0.0.nupkg -------------------------------------------------------------------------------- /FSharp/packages/Unquote.4.0.0/lib/net45/Unquote.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/Unquote.4.0.0/lib/net45/Unquote.dll -------------------------------------------------------------------------------- /FSharp/packages/Unquote.4.0.0/lib/net45/Unquote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/Unquote.4.0.0/lib/net45/Unquote.xml -------------------------------------------------------------------------------- /FSharp/packages/Unquote.4.0.0/lib/netstandard2.0/Unquote.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/Unquote.4.0.0/lib/netstandard2.0/Unquote.dll -------------------------------------------------------------------------------- /FSharp/packages/Unquote.4.0.0/lib/netstandard2.0/Unquote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/Unquote.4.0.0/lib/netstandard2.0/Unquote.xml -------------------------------------------------------------------------------- /FSharp/packages/xunit.abstractions.2.0.1/lib/net35/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.abstractions.2.0.1/lib/net35/xunit.abstractions.dll -------------------------------------------------------------------------------- /FSharp/packages/xunit.abstractions.2.0.1/lib/net35/xunit.abstractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.abstractions.2.0.1/lib/net35/xunit.abstractions.xml -------------------------------------------------------------------------------- /FSharp/packages/xunit.abstractions.2.0.1/lib/netstandard1.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.abstractions.2.0.1/lib/netstandard1.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /FSharp/packages/xunit.abstractions.2.0.1/lib/netstandard1.0/xunit.abstractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.abstractions.2.0.1/lib/netstandard1.0/xunit.abstractions.xml -------------------------------------------------------------------------------- /FSharp/packages/xunit.abstractions.2.0.1/xunit.abstractions.2.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.abstractions.2.0.1/xunit.abstractions.2.0.1.nupkg -------------------------------------------------------------------------------- /FSharp/packages/xunit.core.2.3.1/build/xunit.core.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.core.2.3.1/build/xunit.core.props -------------------------------------------------------------------------------- /FSharp/packages/xunit.core.2.3.1/build/xunit.core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.core.2.3.1/build/xunit.core.targets -------------------------------------------------------------------------------- /FSharp/packages/xunit.core.2.3.1/build/xunit.execution.desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.core.2.3.1/build/xunit.execution.desktop.dll -------------------------------------------------------------------------------- /FSharp/packages/xunit.core.2.3.1/buildMultiTargeting/xunit.core.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.core.2.3.1/buildMultiTargeting/xunit.core.props -------------------------------------------------------------------------------- /FSharp/packages/xunit.core.2.3.1/buildMultiTargeting/xunit.core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.core.2.3.1/buildMultiTargeting/xunit.core.targets -------------------------------------------------------------------------------- /FSharp/packages/xunit.core.2.3.1/xunit.core.2.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.core.2.3.1/xunit.core.2.3.1.nupkg -------------------------------------------------------------------------------- /FSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.core.dll -------------------------------------------------------------------------------- /FSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.core.dll.tdnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.core.dll.tdnet -------------------------------------------------------------------------------- /FSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.core.xml -------------------------------------------------------------------------------- /FSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.runner.tdnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.runner.tdnet.dll -------------------------------------------------------------------------------- /FSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.runner.utility.net452.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.extensibility.core.2.3.1/lib/netstandard1.1/xunit.runner.utility.net452.dll -------------------------------------------------------------------------------- /FSharp/packages/xunit.extensibility.core.2.3.1/xunit.extensibility.core.2.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.extensibility.core.2.3.1/xunit.extensibility.core.2.3.1.nupkg -------------------------------------------------------------------------------- /FSharp/packages/xunit.extensibility.execution.2.3.1/lib/net452/xunit.execution.desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.extensibility.execution.2.3.1/lib/net452/xunit.execution.desktop.dll -------------------------------------------------------------------------------- /FSharp/packages/xunit.extensibility.execution.2.3.1/lib/net452/xunit.execution.desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.extensibility.execution.2.3.1/lib/net452/xunit.execution.desktop.xml -------------------------------------------------------------------------------- /FSharp/packages/xunit.extensibility.execution.2.3.1/lib/netstandard1.1/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.extensibility.execution.2.3.1/lib/netstandard1.1/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /FSharp/packages/xunit.extensibility.execution.2.3.1/lib/netstandard1.1/xunit.execution.dotnet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.extensibility.execution.2.3.1/lib/netstandard1.1/xunit.execution.dotnet.xml -------------------------------------------------------------------------------- /FSharp/packages/xunit.extensibility.execution.2.3.1/xunit.extensibility.execution.2.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/FSharp/packages/xunit.extensibility.execution.2.3.1/xunit.extensibility.execution.2.3.1.nupkg -------------------------------------------------------------------------------- /Haskell/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/Haskell/.gitignore -------------------------------------------------------------------------------- /Haskell/BookingApi.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/Haskell/BookingApi.cabal -------------------------------------------------------------------------------- /Haskell/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /Haskell/app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/Haskell/app/Main.hs -------------------------------------------------------------------------------- /Haskell/src/BookingApi.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/Haskell/src/BookingApi.hs -------------------------------------------------------------------------------- /Haskell/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/Haskell/stack.yaml -------------------------------------------------------------------------------- /Haskell/test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/Haskell/test/Spec.hs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploeh/dependency-injection-revisited/HEAD/README.md --------------------------------------------------------------------------------