$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
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.RegularExpressions; | |
| namespace RegexFail | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| var urlPattern = new Regex(@"(?i)\b((?:[a-z][\w-]+:(?:/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'"".,<>?«»“”‘’]))", RegexOptions.Compiled | RegexOptions.IgnoreCase); |
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 RestartIssue.Web; | |
| namespace WebApplication1 | |
| { | |
| public class Global : System.Web.HttpApplication | |
| { | |
| protected void Application_Start(object sender, EventArgs e) | |
| { |
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 FastLinkedList<T> | |
| { | |
| private Node Head; | |
| public void Add(T value) | |
| { | |
| var node = new Node(); | |
| node.Value = value; | |
| while (true) |
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.Net; | |
| using System.Threading.Tasks; | |
| using Microsoft.AspNet.Builder; | |
| using Microsoft.AspNet.Hosting.Server; | |
| using Microsoft.AspNet.Owin; | |
| using Microsoft.Framework.ConfigurationModel; | |
| namespace Nowin.vNext |
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.Linq; | |
| using System.Diagnostics; | |
| using System.Reflection; | |
| using System.Runtime.Versioning; | |
| using System.Text; | |
| using Microsoft.Framework.Runtime; | |
| using System.IO; | |
| using NuGet; |
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 AzureStreamingLoggerProvider : ILoggerProvider | |
| { | |
| public ILogger Create(string name) | |
| { | |
| return new AzureLogger(name); | |
| } | |
| private class AzureLogger : ILogger | |
| { | |
| private readonly string _name; |
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.Xml.Linq; | |
| using Microsoft.Build.Evaluation; | |
| using Microsoft.Build.Framework; | |
| using Microsoft.Build.BuildEngine; | |
| using System.Collections; |
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 static class MyClass | |
| { | |
| public static void DoSomething<T>(Func<int, T, int> call) | |
| { | |
| } | |
| public static void Example() | |
| { | |
| // This fails |
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
| Warning: FindPackagesById: System.Runtime.Handles | |
| Error getting response stream (ReadDone1): ReceiveFailure | |
| GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime.Handles'. | |
| Warning: FindPackagesById: System.Diagnostics.Process | |
| Error getting response stream (ReadDone1): ReceiveFailure | |
| GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Diagnostics.Process '. | |
| Warning: FindPackagesById: System.Reflection.Primitives | |
| Error getting response stream (ReadDone1): ReceiveFailure | |
| GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Reflection.Primitiv es'. | |
| Warning: FindPackagesById: System.IO.FileSystem.Primitives |