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
[Scenario] | |
public static void RedefiningAnObjectDefinedInLoadedFile(Foo result) | |
{ | |
"Given a config file containing a Foo with a Bar of 'baz'" | |
.Given(() => | |
{ | |
using (var writer = new StreamWriter("foo1.csx")) | |
{ | |
writer.WriteLine(@"#r ""ConfigR.Features.dll"""); | |
writer.WriteLine(@"using ConfigR.Features;"); |
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 Microsoft.Owin.Hosting; | |
using Microsoft.WindowsAzure.ServiceRuntime; | |
using Ninject; | |
using SalesApplication.Owin.Startup; | |
using System; | |
using System.Diagnostics; | |
using System.Net; | |
using System.Threading; | |
namespace SalesApplication.Azure.CloudService.Roles.Owin |