John Korsnes

Results 77 comments of John Korsnes

@MrJerB , the work-around for now is to not mutate the singleton-scoped config's lists. For example: ``` public class CustomViewService : DefaultViewService { public CustomViewService(DefaultViewServiceOptions options, IViewLoader viewLoader, OwinEnvironmentService owinservice)...

Love the videos! :) Coming from a non-Linux world, it would be neat to see different ways of deploying a simple node app to a Linux server (maybe to the...

Hi 👋 Re:`dotnet-retire`: It's totally doable to go thru the list and add more metadata and output formats. If you want to contribute adding packageUrl support, I'm happy to review...

Did you consider adding the Github Security Advisory Events as a source directly? https://help.github.com/en/github/managing-security-vulnerabilities/browsing-security-vulnerabilities-in-the-github-advisory-database#about-the-github-advisory-database API: https://developer.github.com/v3/activity/events/types/#securityadvisoryevent

I tried the nightlies, https://aka.ms/dotnet/6.0.1xx/daily/dotnet-sdk-osx-x64.pkg a.k.a. RC2 (and only the SDK). Seems to work there.

Yes, 6.0 is in `host/fxr` after I install it. ``` drwxr-xr-x 3 root wheel 96 Oct 19 2020 5.0.0 drwxr-xr-x 3 root wheel 96 Aug 13 00:37 5.0.10 drwxr-xr-x 3...

When I: 1. Install .NET 6 RC 1 2. Install .NET 6 RC 2 3. Install .NET 5 ``` ➜ ~ strings /usr/local/share/dotnet/dotnet | grep "@(#)" @(#)Version 5.0.1021.41214 @Commit: e1825b4928afa9455cc51e1de2b2e66c8be3018d...

When I install .NET 6 RC1 after .NET 5 and .NET 6 RC2: ``` ➜ ~ strings /usr/local/share/dotnet/dotnet | grep "@(#)" @(#)Version 6.0.21.45113 @Commit: d7619cd4b165c13430484e381042f055d4c5a9c7 ➜ ~ dotnet --version 6.0.100-rc.2.21458.9...

Yep, familiar with how the SDK and it's rollForward mechanism works at least. Interesting to know that older exes should work with newer SDKs, though. That was new to me....