.NET Blog

Free. Cross-platform. Open source. A developer platform for building all your apps.

The MVP Show Learns about ASP.NET, Identity Server, and Heidelberg

In the second episode of the MVP Show, intrepid host Seth Juarez traveled to Heidelberg, Germany to meet with Visual Studio and Development Technologies MVP Dominick Baier.  Dominick is one of the developers responsible for the Identity Server open source project. Seth and Dominick shared several videos about all things API, Germany, and ...

ASP.NET Core Logging with Azure App Service and Serilog

This guest post was written by Mike Rousos ASP.NET Core supports diagnostic logging through the Microsoft.Extensions.Logging package. This logging solution (which is used throughout ASP.NET Core, including internally by the Kestrel host) is highly extensible. There's already documentation available to help developers get started with ...

The week in .NET – Happy Birthday .NET with Chris Sells, free ASP.NET Core book, We are the Dwarves

Previous posts: Happy birthday .NET with Chris Sells In February, we threw a big .NET birthday bash with Microsoft Alumni and product teams. We caught up with Chris Sells who is currently a Product Manager at Google, and before that a Program Manager at Microsoft. Chris has been part of the .NET developer community since the ...
Comments are closed.0 0
.NET

Azure Functions Tools Roadmap

**Update 5-10-2017: **The first release of Visual Studio 2017 Tools for Azure Functions is now available to try We’ve been humbled by the intense interest in Visual Studio tools for Azure Functions since we shipped our initial preview for Visual Studio 2015 last fall. Unfortunately, given other constraints, Visual Studio 2017 did not ...

Announcing SignalR 2.2.2 (Preview 1)

Today we are happy to announce the release of SignalR 2.2.2-preview1. SignalR 2.2.2 is a servicing release, including some highly requested updates and bug fixes. Here are the highlights of the release: * Support for Service Bus 3 (https://github.com/SignalR/SignalR/issues/3548) * NetStandard version of the client (https://github.com/...

The week in .NET – .NET Framework 4.7, reference documentation, On .NET on modular ASP.NET, Happy birthday .NET with Immo Landwerth, JustAssembly

Previous posts: .NET Framework 4.7 This week, we announced the release of the .NET Framework 4.7. We’ve added support for targeting the .NET Framework 4.7 in Visual Studio 2017, also updated today. The .NET Framework 4.7 includes improvements in several areas: You can see the complete list of ...
Comments are closed.0 0
.NET

.NET Framework April 2017 Security and Quality Rollup

Update (2017/05/15): Added Windows 10 entries to KB table. Update (2017/05/09): Known issue information added for the release. Update (2017/04/20): Known issue information added for the release. Today, we are releasing a new Security and Quality Rollup and Security Only Update for the .NET Framework. You can read the April 2017 Security ...
Comments are closed.0 0
.NET

JWT Validation and Authorization in ASP.NET Core

This post was written and submitted by Michael Rousos In several previous posts, I discussed a customer scenario I ran into recently that required issuing bearer tokens from an ASP.NET Core authentication server and then validating those tokens in a separate ASP.NET Core web service which may not have access to the authentication server. The ...