├── .gitignore ├── Eventador.Tests ├── App.config ├── Conventions │ └── DapperConventions.cs ├── DbReset.cs ├── EventScenarios.cs ├── Eventador.Tests.csproj ├── Properties │ └── AssemblyInfo.cs ├── QueryScenarios.cs └── packages.config ├── Eventador.sln ├── Eventador ├── App.config ├── Commands │ ├── IDomainCommand.cs │ ├── IHandle.cs │ └── RegisterForEventCommand.cs ├── Controllers │ ├── AttendeesController.cs │ ├── EventController.cs │ └── ReportingController.cs ├── Domain │ ├── Accommodation.cs │ ├── AggregateRoot.cs │ ├── Attendee.cs │ ├── Event.cs │ ├── Money.cs │ ├── Session.cs │ └── SessionAttendee.cs ├── Eventador.csproj ├── EventadorContext.Repository.cs ├── EventadorContext.cs ├── IAmTheQueryAssembly.cs ├── Migrations │ ├── 201708070506248_InitialMigration.Designer.cs │ ├── 201708070506248_InitialMigration.cs │ ├── 201708070506248_InitialMigration.resx │ └── Configuration.cs ├── NotFoundException.cs ├── Properties │ └── AssemblyInfo.cs ├── Queries │ ├── AttendeeSessionsQuery.cs │ └── AttendeesWithDietaryPreferencesWhoHavePaidQuery.cs ├── Readme.md └── packages.config ├── README.md └── packages ├── .gitignore ├── Best.Conventional.1.5.0.131 ├── Best.Conventional.1.5.0.131.nupkg └── lib │ ├── net40 │ └── Conventional.dll │ └── net45 │ └── Conventional.dll ├── Dapper.1.50.2 ├── Dapper.1.50.2.nupkg └── lib │ ├── net40 │ ├── Dapper.dll │ └── Dapper.xml │ ├── net45 │ ├── Dapper.dll │ └── Dapper.xml │ ├── net451 │ ├── Dapper.dll │ └── Dapper.xml │ └── netstandard1.3 │ ├── Dapper.dll │ └── Dapper.xml ├── EntityFramework.6.1.3 ├── EntityFramework.6.1.3.nupkg ├── content │ ├── App.config.transform │ └── Web.config.transform ├── lib │ ├── net40 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml │ └── net45 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml └── tools │ ├── EntityFramework.PowerShell.Utility.dll │ ├── EntityFramework.PowerShell.dll │ ├── EntityFramework.psd1 │ ├── EntityFramework.psm1 │ ├── about_EntityFramework.help.txt │ ├── init.ps1 │ ├── install.ps1 │ └── migrate.exe ├── Mono.Cecil.0.9.5.4 ├── Mono.Cecil.0.9.5.4.nupkg └── lib │ ├── net20 │ ├── Mono.Cecil.Mdb.dll │ ├── Mono.Cecil.Pdb.dll │ └── Mono.Cecil.dll │ ├── net35 │ ├── Mono.Cecil.Mdb.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Rocks.dll │ └── Mono.Cecil.dll │ ├── net40 │ ├── Mono.Cecil.Mdb.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Rocks.dll │ └── Mono.Cecil.dll │ └── sl40 │ ├── Mono.Cecil.Rocks.dll │ └── Mono.Cecil.dll ├── NUnit.3.7.1 ├── CHANGES.md ├── LICENSE.txt ├── NOTICES.txt ├── NUnit.3.7.1.nupkg └── lib │ ├── net20 │ ├── NUnit.System.Linq.dll │ ├── nunit.framework.dll │ └── nunit.framework.xml │ ├── net35 │ ├── nunit.framework.dll │ └── nunit.framework.xml │ ├── net40 │ ├── nunit.framework.dll │ └── nunit.framework.xml │ ├── net45 │ ├── nunit.framework.dll │ └── nunit.framework.xml │ ├── netstandard1.3 │ ├── nunit.framework.dll │ └── nunit.framework.xml │ └── netstandard1.6 │ ├── nunit.framework.dll │ └── nunit.framework.xml ├── Shouldly.2.8.3 ├── Shouldly.2.8.3.nupkg └── lib │ ├── net35 │ └── Shouldly.dll │ ├── net40 │ └── Shouldly.dll │ ├── net451 │ └── Shouldly.dll │ └── netstandard1.3 │ └── Shouldly.dll ├── Tailor.0.1.0.7 ├── Tailor.0.1.0.7.nupkg └── lib │ └── net462 │ └── Tailor.dll └── Tailor.Test.0.1.0.7 ├── Tailor.Test.0.1.0.7.nupkg └── lib └── net462 └── Tailor.Test.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/.gitignore -------------------------------------------------------------------------------- /Eventador.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador.Tests/App.config -------------------------------------------------------------------------------- /Eventador.Tests/Conventions/DapperConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador.Tests/Conventions/DapperConventions.cs -------------------------------------------------------------------------------- /Eventador.Tests/DbReset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador.Tests/DbReset.cs -------------------------------------------------------------------------------- /Eventador.Tests/EventScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador.Tests/EventScenarios.cs -------------------------------------------------------------------------------- /Eventador.Tests/Eventador.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador.Tests/Eventador.Tests.csproj -------------------------------------------------------------------------------- /Eventador.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Eventador.Tests/QueryScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador.Tests/QueryScenarios.cs -------------------------------------------------------------------------------- /Eventador.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador.Tests/packages.config -------------------------------------------------------------------------------- /Eventador.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador.sln -------------------------------------------------------------------------------- /Eventador/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/App.config -------------------------------------------------------------------------------- /Eventador/Commands/IDomainCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Commands/IDomainCommand.cs -------------------------------------------------------------------------------- /Eventador/Commands/IHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Commands/IHandle.cs -------------------------------------------------------------------------------- /Eventador/Commands/RegisterForEventCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Commands/RegisterForEventCommand.cs -------------------------------------------------------------------------------- /Eventador/Controllers/AttendeesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Controllers/AttendeesController.cs -------------------------------------------------------------------------------- /Eventador/Controllers/EventController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Controllers/EventController.cs -------------------------------------------------------------------------------- /Eventador/Controllers/ReportingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Controllers/ReportingController.cs -------------------------------------------------------------------------------- /Eventador/Domain/Accommodation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Domain/Accommodation.cs -------------------------------------------------------------------------------- /Eventador/Domain/AggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Domain/AggregateRoot.cs -------------------------------------------------------------------------------- /Eventador/Domain/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Domain/Attendee.cs -------------------------------------------------------------------------------- /Eventador/Domain/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Domain/Event.cs -------------------------------------------------------------------------------- /Eventador/Domain/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Domain/Money.cs -------------------------------------------------------------------------------- /Eventador/Domain/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Domain/Session.cs -------------------------------------------------------------------------------- /Eventador/Domain/SessionAttendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Domain/SessionAttendee.cs -------------------------------------------------------------------------------- /Eventador/Eventador.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Eventador.csproj -------------------------------------------------------------------------------- /Eventador/EventadorContext.Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/EventadorContext.Repository.cs -------------------------------------------------------------------------------- /Eventador/EventadorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/EventadorContext.cs -------------------------------------------------------------------------------- /Eventador/IAmTheQueryAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/IAmTheQueryAssembly.cs -------------------------------------------------------------------------------- /Eventador/Migrations/201708070506248_InitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Migrations/201708070506248_InitialMigration.Designer.cs -------------------------------------------------------------------------------- /Eventador/Migrations/201708070506248_InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Migrations/201708070506248_InitialMigration.cs -------------------------------------------------------------------------------- /Eventador/Migrations/201708070506248_InitialMigration.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Migrations/201708070506248_InitialMigration.resx -------------------------------------------------------------------------------- /Eventador/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Migrations/Configuration.cs -------------------------------------------------------------------------------- /Eventador/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/NotFoundException.cs -------------------------------------------------------------------------------- /Eventador/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Eventador/Queries/AttendeeSessionsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Queries/AttendeeSessionsQuery.cs -------------------------------------------------------------------------------- /Eventador/Queries/AttendeesWithDietaryPreferencesWhoHavePaidQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Queries/AttendeesWithDietaryPreferencesWhoHavePaidQuery.cs -------------------------------------------------------------------------------- /Eventador/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/Readme.md -------------------------------------------------------------------------------- /Eventador/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/Eventador/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/README.md -------------------------------------------------------------------------------- /packages/.gitignore: -------------------------------------------------------------------------------- 1 | #whitelist all nuget stuff 2 | !* -------------------------------------------------------------------------------- /packages/Best.Conventional.1.5.0.131/Best.Conventional.1.5.0.131.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Best.Conventional.1.5.0.131/Best.Conventional.1.5.0.131.nupkg -------------------------------------------------------------------------------- /packages/Best.Conventional.1.5.0.131/lib/net40/Conventional.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Best.Conventional.1.5.0.131/lib/net40/Conventional.dll -------------------------------------------------------------------------------- /packages/Best.Conventional.1.5.0.131/lib/net45/Conventional.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Best.Conventional.1.5.0.131/lib/net45/Conventional.dll -------------------------------------------------------------------------------- /packages/Dapper.1.50.2/Dapper.1.50.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Dapper.1.50.2/Dapper.1.50.2.nupkg -------------------------------------------------------------------------------- /packages/Dapper.1.50.2/lib/net40/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Dapper.1.50.2/lib/net40/Dapper.dll -------------------------------------------------------------------------------- /packages/Dapper.1.50.2/lib/net40/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Dapper.1.50.2/lib/net40/Dapper.xml -------------------------------------------------------------------------------- /packages/Dapper.1.50.2/lib/net45/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Dapper.1.50.2/lib/net45/Dapper.dll -------------------------------------------------------------------------------- /packages/Dapper.1.50.2/lib/net45/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Dapper.1.50.2/lib/net45/Dapper.xml -------------------------------------------------------------------------------- /packages/Dapper.1.50.2/lib/net451/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Dapper.1.50.2/lib/net451/Dapper.dll -------------------------------------------------------------------------------- /packages/Dapper.1.50.2/lib/net451/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Dapper.1.50.2/lib/net451/Dapper.xml -------------------------------------------------------------------------------- /packages/Dapper.1.50.2/lib/netstandard1.3/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Dapper.1.50.2/lib/netstandard1.3/Dapper.dll -------------------------------------------------------------------------------- /packages/Dapper.1.50.2/lib/netstandard1.3/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Dapper.1.50.2/lib/netstandard1.3/Dapper.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/EntityFramework.6.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/EntityFramework.6.1.3.nupkg -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/content/App.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/content/App.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/content/Web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/content/Web.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net40/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net45/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/EntityFramework.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/tools/EntityFramework.psm1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/tools/about_EntityFramework.help.txt -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/tools/init.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/tools/install.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/EntityFramework.6.1.3/tools/migrate.exe -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/Mono.Cecil.0.9.5.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/Mono.Cecil.0.9.5.4.nupkg -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/net20/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/net20/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/net20/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/net20/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/net20/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/net20/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/net35/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/net35/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/net35/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/net35/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/net35/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/net35/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/net35/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/net35/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/net40/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/net40/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/net40/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/net40/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/net40/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/net40/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/net40/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/net40/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/sl40/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/sl40/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Mono.Cecil.0.9.5.4/lib/sl40/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Mono.Cecil.0.9.5.4/lib/sl40/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/CHANGES.md -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/LICENSE.txt -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/NOTICES.txt -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/NUnit.3.7.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/NUnit.3.7.1.nupkg -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/net20/NUnit.System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/net20/NUnit.System.Linq.dll -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/net20/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/net20/nunit.framework.dll -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/net20/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/net20/nunit.framework.xml -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/net35/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/net35/nunit.framework.dll -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/net35/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/net35/nunit.framework.xml -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/net40/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/net40/nunit.framework.dll -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/net40/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/net40/nunit.framework.xml -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/net45/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/net45/nunit.framework.dll -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/net45/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/net45/nunit.framework.xml -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/netstandard1.3/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/netstandard1.3/nunit.framework.dll -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/netstandard1.3/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/netstandard1.3/nunit.framework.xml -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/netstandard1.6/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/netstandard1.6/nunit.framework.dll -------------------------------------------------------------------------------- /packages/NUnit.3.7.1/lib/netstandard1.6/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/NUnit.3.7.1/lib/netstandard1.6/nunit.framework.xml -------------------------------------------------------------------------------- /packages/Shouldly.2.8.3/Shouldly.2.8.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Shouldly.2.8.3/Shouldly.2.8.3.nupkg -------------------------------------------------------------------------------- /packages/Shouldly.2.8.3/lib/net35/Shouldly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Shouldly.2.8.3/lib/net35/Shouldly.dll -------------------------------------------------------------------------------- /packages/Shouldly.2.8.3/lib/net40/Shouldly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Shouldly.2.8.3/lib/net40/Shouldly.dll -------------------------------------------------------------------------------- /packages/Shouldly.2.8.3/lib/net451/Shouldly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Shouldly.2.8.3/lib/net451/Shouldly.dll -------------------------------------------------------------------------------- /packages/Shouldly.2.8.3/lib/netstandard1.3/Shouldly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Shouldly.2.8.3/lib/netstandard1.3/Shouldly.dll -------------------------------------------------------------------------------- /packages/Tailor.0.1.0.7/Tailor.0.1.0.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Tailor.0.1.0.7/Tailor.0.1.0.7.nupkg -------------------------------------------------------------------------------- /packages/Tailor.0.1.0.7/lib/net462/Tailor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Tailor.0.1.0.7/lib/net462/Tailor.dll -------------------------------------------------------------------------------- /packages/Tailor.Test.0.1.0.7/Tailor.Test.0.1.0.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Tailor.Test.0.1.0.7/Tailor.Test.0.1.0.7.nupkg -------------------------------------------------------------------------------- /packages/Tailor.Test.0.1.0.7/lib/net462/Tailor.Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewabest/Eventador/HEAD/packages/Tailor.Test.0.1.0.7/lib/net462/Tailor.Test.dll --------------------------------------------------------------------------------