Aaronontheweb on 1.4.14
Aaronontheweb on master
Bump Mongo2Go from 2.2.14 to 2.… Bump MongoDB.Driver from 2.11.4… Bump Microsoft.NET.Test.Sdk fro… and 4 more (compare)
Aaronontheweb on 1.4.14
Aaronontheweb on dev
Added v1.4.14 release notes (#1… (compare)
Aaronontheweb on dev
ensure that all recovered Times… (compare)
namespace ConsoleApplication11
{
[ResultMatches("MyCompany.OtherAssembly.Greet")]
public interface IGreet
{
public string Who { get; set; }
}
public class GreetingActor : ReceiveActor
{
public GreetingActor()
{
Receive<IGreet>(greet => Console.WriteLine("Hello {0}", greet.Who));
}
}
}