[Console]::ResetColor()
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
| //Sourced from: https://stackoverflow.com/questions/17326939/is-there-a-way-to-search-a-console-logged-object-for-particular-values-in-chrome | |
| //Answered by: https://stackoverflow.com/users/34441/ellisbben | |
| var searchHaystack = function(haystack, needle, path, equalityFn, visited) { | |
| if(typeof haystack != "object") { | |
| console.warn("non-object haystack at " + path.join(".")); | |
| } | |
| if(visited.has(haystack)) |
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 ModuleResolver | |
| { | |
| public IList<MyModule> Resolve(List<Type> topLevelModules) | |
| { | |
| var createdModules = new Dictionary<Type, MyModule>(); | |
| var modulesToExamine = new Stack<Type>(topLevelModules); | |
| while (modulesToExamine.Count > 0) | |
| { | |
| var moduleToExamine = modulesToExamine.Pop(); |
This file has been truncated, but you can view the full file.
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 KoreBuild 2.1.0-preview1-15661 | |
| WARNING: dotnet found on the system PATH is 'C:\Program Files\dotnet\dotnet.exe' but KoreBuild will use 'C:\Users\tonyc\.dotnet\x64\dotnet.exe'. | |
| WARNING: Adding 'C:\Users\tonyc\.dotnet\x64' to system PATH permanently may be required for applications like Visual Studio or VS Code to work correctly. | |
| Adding C:\Users\tonyc\.dotnet\x64 to PATH | |
| .NET Core runtime 2.0.3 is already installed. Skipping installation. | |
| .NET Core SDK 2.2.0-preview1-007866 is already installed. Skipping installation. | |
| >>> dotnet.exe msbuild @C:\GitHubProjects\SignalR\artifacts\logs\msbuild.rsp | |
| Using NodeJS 9.3.0 from C:\Program Files\nodejs\node.exe | |
| Restore completed in 30.8 ms for C:\GitHubProjects\SignalR\client-ts\Microsoft.AspNetCore.SignalR.Client.TS\Microsoft.AspNetCore.SignalR.Client.TS.csproj. | |
| Restore completed in 35.87 ms for C:\GitHubProjects\SignalR\benchmarks\Microsoft.AspNetCore.SignalR.Microbenchmarks\Microsoft.AspNetCore.SignalR.Microbenchmarks.csproj. |
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
| find $directory -type f -name "*.ext" |