This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| choco install google-chrome-x64 7zip visualstudiocode crashplan FileZilla githubforwindows nodejs.install notepadplusplus.install paint.net spacesniffer foxitreader git.install openvpn spacesniffer perfview -y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Check-Path( [string] $path) | |
| { | |
| if(!(Test-Path -Path $path)) { | |
| New-Item -ItemType directory -Path $path | |
| } | |
| } | |
| #init | |
| $filePath = "$PSScriptRoot\$(Get-Date -f yyyyMMddHHmmss).sql" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Anya:HelloWorld simon$ dnu restore | |
| Microsoft .NET Development Utility CoreClr-x64-1.0.0-rc1-16202 | |
| GET https://api.nuget.org/v3/index.json | |
| OK https://api.nuget.org/v3/index.json 1129ms | |
| Restoring packages for /Users/simon/Dev/HelloWorld/src/HelloWorld/project.json | |
| GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.iisplatformhandler/index.json | |
| GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.server.kestrel/index.json | |
| OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.iisplatformhandler/index.json 741ms | |
| OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.server.kestrel/index.json 739ms |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Diagnostics; | |
| using MassTransit; | |
| using MassTransit.Testing; | |
| using Microsoft.VisualStudio.TestTools.UnitTesting; | |
| using MassTransit.Log4NetIntegration.Logging; | |
| namespace MTSmallNumberTest | |
| { | |
| [TestClass] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INFO [Agent: adapter run thread for test 'SendTwoMessages' with id '1b52569f-bb5b-44c1-9611-2fa750b9c407'] 11:32:06.204 MassTransit.BusConfigurators.ServiceBusConfiguratorImpl :MassTransit v2.7.2.0, .NET Framework v4.0.30319.296 | |
| DEBUG [Agent: adapter run thread for test 'SendTwoMessages' with id '1b52569f-bb5b-44c1-9611-2fa750b9c407'] 11:32:07.194 MassTransit.ServiceContainer :Starting bus service: MassTransit.Subscriptions.Coordinator.SubscriptionRouterService | |
| DEBUG [Agent: adapter run thread for test 'SendTwoMessages' with id '1b52569f-bb5b-44c1-9611-2fa750b9c407'] 11:32:07.200 MassTransit.ServiceContainer :Starting bus service: MassTransit.Diagnostics.Tracing.MessageTraceBusService | |
| DEBUG [Agent: adapter run thread for test 'SendTwoMessages' with id '1b52569f-bb5b-44c1-9611-2fa750b9c407'] 11:32:07.244 MassTransit.Subscriptions.Coordinator.BusSubscriptionEventListener :SubscribeTo: MassTransit.Diagnostics.Tracing.GetMessageTraceList, MassTransit, 08cfc6ab-3e65-6df1-1060-4b68267d0000 | |
| DEBUG [Agent: adapter ru |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Text; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using Microsoft.VisualStudio.TestTools.UnitTesting; | |
| using MassTransit; | |
| using MassTransit.Log4NetIntegration.Logging; | |
| namespace LoopbackTest |