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
    
  
  
    
  | <ItemGroup> | |
| <Content Include="..\Shared\App.config"> | |
| <Link>App.config</Link> | |
| <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |
| </Content> | |
| <Content Include="..\Shared\App.Debug.config"> | |
| <Link>App.Debug.config</Link> | |
| <DependentUpon>App.config</DependentUpon> | |
| </Content> | |
| <Content Include="..\Shared\App.Local.config"> | 
  
    
      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
    
  
  
    
  | public interface IGenericEvent : IDomainEvent {} | |
| public class SomethingHappenedEvent : IGenericEvent {} | |
| public class SomethingElseEvent : IGenericEvent { } | |
| public class SomeHappenedHandler : IHandleEvent<SomethingHappenedEvent> | |
| { | |
| public void Handle(SomethingHappenedEvent msg) { | |
| Console.WriteLine("Event happened"); | |
| } | 
  
    
      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
    
  
  
    
  | <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Bootstrap, from Twitter</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content=""> | |
| <meta name="author" content=""> | |
| <link href="../assets/css/bootstrap.css" rel="stylesheet"> | |
| <style type="text/css"> | 
  
    
      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
    
  
  
    
  | <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="author" content="Martin Bean" /> | |
| <title>Twitter’s Bootstrap with Ryan Fait’s Sticky Footer</title> | |
| <link rel="stylesheet" href="css/bootstrap.min.css" /> | |
| <style> | |
| html, body { | |
| height: 100%; | 
  
    
      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
    
  
  
    
  | root = this | |
| $ = jQuery | |
| root.logger = do ($) -> | |
| logContainer = null | |
| write = (msg) -> | |
| logContainer.append("<p>#{msg}</p>") | |
| pub = | |
| init: (el) -> logContainer = el | |
| log: (msg) -> write msg | 
  
    
      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
    
  
  
    
  | // Copyright 2007-2011 Henrik Feldt | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); you may not use | |
| // this file except in compliance with the License. You may obtain a copy of the | |
| // License at | |
| // | |
| // http://www.apache.org/licenses/LICENSE-2.0 | |
| // | |
| // Unless required by applicable law or agreed to in writing, software distributed | |
| // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | 
  
    
      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
    
  
  
    
  | $ cat ~/.sbtconfig | |
| SBT_OPTS="-XX:+CMSClassUnloadingEnabled -XX:PermSize=128M -XX:MaxPermSize=256M" | 
  
    
      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
    
  
  
    
  | input { | |
| tcp { | |
| type => "syslog" | |
| host => "127.0.0.1" | |
| port => 3514 | |
| } | |
| tcp { | |
| type => "eventlog" | |
| host => "10.1.1.2" | |
| port => 3515 | 
  
    
      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.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| namespace MassTransit.AutomatonymousTests | |
| { | |
| using System.Threading; | |
| using Automatonymous; | |
| using Magnum.Extensions; | 
  
    
      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
    
  
  
    
  | public class AccountSpecifications | |
| { | |
| public Specification when_constructing_an_account = new | |
| ConstructorSpecification<Account>() | |
| { | |
| When = () => new Account("Jane Smith", 17), | |
| Expect = | |
| { | |
| account => account.AccountHolderName == "Jane Smith", | |
| account => account.UniqueIdentifier == 17, | 
OlderNewer