ضبط و پخش مجدد درخواست های Http توسط کتابخانه داتنتی VCR Sharp
301, MovedPermanently
https://www.hanselman.com/blog/ExperimentsInOpenSourceExploringVcrsharpForHttpRecordAndPlayback.aspx icon

Vcr-sharp lets you record and playback HTTP requests! In this example, WithCassette is an extension method on HttpClientFactory. That extension method sets up a DelgatingHandler to a ReplayingHandler. That ReplayingHandler "loads the cassette" and returns it as a cached response. 

  using (var httpClient = HttpClientFactory.WithCassette( "my-test-scenario" ))      
  {        
    var request =  new HttpRequestMessage(HttpMethod.Get,  "http://www.iana.org/domains/reserved" );   
    var response = await httpClient.SendAsync(request);     
    var body = await response.Content.ReadAsStringAsync();      
    body.ShouldContain( "Example domains" );     
  }
ضبط و پخش مجدد درخواست های Http توسط کتابخانه داتنتی VCR Sharp
پروژه مدیریت دستی حافظه در دات نت
200, OK
https://www.microsoft.com/en-us/research/publication/project-snowflake-non-blocking-safe-manual-memory-management-net/ icon

پروژه Snowflake که حاصل همکاری محققان مایکروسافت، دانشگاه کمبریج و پرینستون است امکان مدیریت حافظه را به صورت غیراتوماتیک فراهم میکند. در عین حال میتوان از امکانات ارائه شده توسط GC هم در کنار آن استفاده کرد.

این پروژه همچنان در مرحله تحقیقاتی قرار دارد ولی شاید در آینده نزدیک به فریمورک اضافه شود.

Snowflake 

پروژه مدیریت دستی حافظه در دات نت
Visual Studio 2017 Version 15.3 منتشر شد
301, MovedPermanently
https://blogs.msdn.microsoft.com/visualstudio/2017/08/14/visual-studio-2017-version-15-3-released/ icon

Today we have several releases to talk about: there’s the release of Visual Studio 2017 version 15.3, the release of .NET Core 2.0, and a release of Visual Studio for Mac version 7.1. We’ll talk about them briefly in that order, but as always, there’s a lot more information in the release notes for each product. If you’d like to jump right in, download Visual Studio 2017 version 15.3download .NET Core 2.0, and download Visual Studio for Mac.

 
Visual Studio 2017 Version 15.3 منتشر شد
ASP.NET Core 2.0 منتشر شد
301, MovedPermanently
https://blogs.msdn.microsoft.com/webdev/2017/08/14/announcing-asp-net-core-2-0/ icon

The ASP.NET team is proud to announce general availability of ASP.NET Core 2.0.  This release features compatibility with .NET Core 2.0, tooling support in Visual Studio 2017 version 15.3, and the new Razor Pages user-interface design paradigm.  For a full list of updates, you can read the release notes.  The latest SDK and tools can be downloaded from https://dot.net/core. Read the .NET Core 2.0 release announcement for more information and watch the launch video on Channel 9.

 
ASP.NET Core 2.0 منتشر شد
Entity Framework Core 2.0 منتشر شد
301, MovedPermanently
https://blogs.msdn.microsoft.com/dotnet/2017/08/14/announcing-entity-framework-core-2-0/ icon

Today we are releasing the final version of Entity Framework Core 2.0, alongside .NET Core 2.0 and ASP.NET Core 2.0.

Entity Framework (EF) Core is the lightweight, extensible, and cross-platform version of Entity Framework, the popular Object/Relational Mapping (O/RM) framework for .NET. 

Entity Framework Core 2.0 منتشر شد
NET Core 2.0. منتشر شد
301, MovedPermanently
https://blogs.msdn.microsoft.com/dotnet/2017/08/14/announcing-net-core-2-0/ icon

 .NET Core 2.0 is available today as a final release. You can start developing with it at the command line, in your favorite text editor, in Visual Studio 2017 15.3, Visual Studio Code or Visual Studio for Mac. It is ready for production workloads, on your own hardware or your favorite cloud, like Microsoft Azure.

NET Core 2.0. منتشر شد
بررسی imageهای مختلف NET. در Docker
301, MovedPermanently
https://www.hanselman.com/blog/NETAndDocker.aspx icon

.NET and .NET Core (and Windows!) have been getting better and better with Docker. I run Docker for Windows as it supports both Linux Containers and Windows Containers. They have both a Stable and Edge channel. The Edge (Beta) channel is regularly updated and, as a rule, gets better and better in the year I've been running it. 

بررسی imageهای مختلف NET. در Docker