Showing results for April 2017 - Page 2 of 2 - .NET Blog

Apr 6, 2017
Post comments count7
Post likes count2

JWT Validation and Authorization in ASP.NET Core

Jeffrey Fritz
Jeffrey Fritz

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 previ...

ASP.NETASP.NET Core
Apr 5, 2017
Post comments count0
Post likes count0

Announcing the .NET Framework 4.7

Rich Lander [MSFT]
Rich Lander [MSFT]

Last Updated: 6/15/2017 Today, we are announcing the release of the .NET Framework 4.7. It's included in the Windows 10 Creators Update. We've added support for targeting the .NET Framework 4.7 in Visual Studio 2017, also updated today. See Announcing the .NET Framework 4.7 General Availability to learn about and download the .NET Framework 4...

.NET
Apr 4, 2017
Post comments count0
Post likes count0

The week in .NET – On .NET on SonarLint and SonarQube, Happy birthday .NET with Dan Fernandez, nopCommerce, Steve Gordon

Bertrand Le Roy
Bertrand Le Roy

Previous posts: On .NET Last week, I spoke with Tamás Vajk and Olivier Gaudin about SonarLint and SonarQube: This week, we'll have Sébastien Ros on the show to talk about modular ASP.NET applications, as they are implemented in Orchard Core. We'll take questions on Gitter, on the dotnet/home channel and on Twitter. Please u...

.NET
Apr 2, 2017
Post comments count0
Post likes count2

How to create your own templates for dotnet new

Sayed Ibrahim Hashimi
Sayed Ibrahim Hashimi

You can now create your own templates for `dotnet new`, and this doc walks you through the process of creating one.

.NET
Apr 2, 2017
Post comments count0
Post likes count0

No GCs for your allocations?

maoni
maoni

Several people mentioned Java’s “no GC” GC proposal and asked if we can add such a thing. So I thought it deserves a blog post. Short answer – we already have such a feature and that’s called the NoGCRegion. The GC.TryStartNoGCRegion API allows you to tell us the amount of allocations you’d like to do and when you stay within it, no GCs will be tr...

.NET