kasperk81

Results 152 comments of kasperk81

@ViktorHofer please let me know if i've missed something. runtime and sdk repos are still using preview 7, once arcade is bumped, i can update those repos.

ah, i see. should i use the public versions as i did here? i took those from https://dotnet.microsoft.com/en-us/download/dotnet/7.0

ok. so my versions are matching what's in release/7.0. i have updated in few other places which release/7.0 missed.

@mmitche merged most of this in https://github.com/dotnet/arcade/pull/10926. this is now a remaining patch.

pkgs.devops service is down for over six hours. it is affecting all repos. this incident has happened twice this month alone and many times in previous months... nuking the myget...

docs say: > **Note** > >Using this option monitors the first .NET 5 process that communicates back to the tool, which means if your command launches multiple .NET applications, it...

@rainersigwald, here is `artifacts/log/Debug/Build.binlog` from `./build.sh clr+libs --binarylog`: https://github.com/kasperk81/runtime/releases/download/msbuild_binlogs/Build.binlog weirdly enough, the total duration is smaller than core compile task alone: ![image](https://user-images.githubusercontent.com/83082615/178055683-a36bfb55-7d27-44b7-bd68-8d9cdec40292.png)

> nothing is jumping out at me ok, in that case, we can close this. it just always feels like after quickly building couple of libraries, the build slows down...

> NO_COLOR net6.0+ respects `NO_COLOR`. it is implemented as described here: https://no-color.org/ "when present **(regardless of its value)**, prevents the addition of ANSI color. " > FORCE_COLOR `FORCE_COLOR` (the opposite)...

Program.cs ```c# Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine("Hello, World!"); ``` with redirected stdout `dotnet run > somefile` the contents of somefile are `Hello World!` (without color codes). with `DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION=1 dotnet run >...