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
| Id Version | |
| -- ------- | |
| DotNetOpenAuth.AspNet 4.1.4.12333 | |
| DotNetOpenAuth.Core 4.1.4.12333 | |
| DotNetOpenAuth.OAuth.Consumer 4.1.4.12333 | |
| DotNetOpenAuth.OAuth.Core 4.1.4.12333 | |
| DotNetOpenAuth.OpenId.Core 4.1.4.12333 | |
| DotNetOpenAuth.OpenId.RelyingParty 4.1.4.12333 | |
| EntityFramework |
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; | |
| public static class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| http://localhost/index.html | |
| Console.WriteLine("hello!"); | |
| } |
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 FixedJsonWebTokenHandler : JsonWebTokenHandler | |
| { | |
| public override SecurityToken ReadToken(string tokenString) | |
| { | |
| // Azure ACS messes with the token a bit | |
| return base.ReadToken(Encoding.UTF8.GetString(Convert.FromBase64String(tokenString))); | |
| } | |
| } |
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
| #headerbar-wrapper { | |
| width: 100%; | |
| margin-left: 0; | |
| left: 0; | |
| } | |
| #fxshell-navpane { | |
| left: 0; | |
| margin-left: 0; | |
| } | |
| #drawer { |
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
| <html> | |
| <head><title>NuGet</title></head> | |
| <body> | |
| <h1>Nuget!</h1> | |
| <iframe src="http://preview.nuget.org"></iframe> | |
| </body> | |
| </html> |
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.Diagnostics; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace Curious | |
| { | |
| class Program |
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; | |
| using System.Threading.Tasks; | |
| using Microsoft.WindowsAzure.Storage; | |
| using Microsoft.WindowsAzure.Storage.Blob; | |
| namespace BlobScanner | |
| { |
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.IO; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.Mvc; | |
| using System.Web.WebPages; | |
| using System.Web.WebPages.Instrumentation; | |
| namespace MvcApplication1.Patches |
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.IO; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.Mvc; | |
| using System.Web.WebPages; | |
| using System.Web.WebPages.Instrumentation; | |
| namespace MvcApplication1.Patches |
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 IConsole { | |
| void WriteLine(string line); | |
| } |