雷って幻想的だよね?

宗教:C#、ラノベ好きの戯言です。※Google Analytics 埋め込みを利用しています。

おや?Blazorがレベルアップしたようだ(Preview7)

元資料:
https://github.com/dotnet/core/blob/master/release-notes/3.0/preview/3.0.0-preview7.md
以下は自分が読んで認識した内容なので間違ってたらご指摘いただけると助かります。

利用可能な物:VisualStudio2019 16.3 Preview 1

変更内容:Preview7
dotNet Core SDKのサイズの改善

今、すごく遅いので効果に期待

・SOSを更新

 現在は何処にも入っていなくて、欲しいのであれば自分でやってねということだそうです。
 恐らく、Coreのデバッグに利用する物と思われます。(下記、備考参照)
 すべてのバージョンが対象と書いてあります。(Linuxとかでも使える便利な物だそうです)
 アクセス先:https://github.com/dotnet/diagnostics#installing-sos
 
 Windows版:https://github.com/dotnet/diagnostics/blob/master/documentation/sos-debugging-extension-windows.md

 
・NetTraceはNetPerfに置き換えられたそうです。

・以下のbugs と featuresの確認をすると良いそうです。
 ・CoreCLR
 ・CoreFX
 ・ASP.NET Core(Blazor関連はこれなので、気になるのがあったら読むと良いと思います。)
  https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A3.0.0-preview7+label%3ADone+label%3Abug


備考:

・SOSってなんぞ?と思ったので。

 dotnet core process のデバッグに利用される物?だそうです。(知識が足りないので間違ってるかもしれません。)
 
 参考:1
 https://blogs.msdn.microsoft.com/rohithrajan/2018/03/26/looking-inside-a-net-core-process-using-windbg/
 
 We have SOS.dll for every version and bitness of .NET framework (.NET 1.1,2.0,4.0 etc) .
 So for .NET core process debugging we need to use .NET Core's sos.dll .
 And the good part is that sos.dll is shipped with the dotnet and you will find it on

 参考:2
 https://devblogs.microsoft.com/premier-developer/debugging-net-core-with-sos-everywhere/

 
・NetTraceは興味ないので割愛
 (サーバーに対するデバッグかな?)