Earlier this month, Microsoft announced the conclusion of the .NET Framework API porting project for .NET Core 3.0. That means the official development team won't port any other APIs from the .NET Framework to .NET Core 3.0 (and future versions).…
AWS CodeBuild Test Reporting with .NET Core
At AWS re:Invent 2019, AWS CodeBuild announced a new test reporting feature which can help make diagnosing test failures in CodeBuild much easier. You can read more about it here. I wanted to use this feature for .NET and after…
Create ASP.NET Core MVC Project
Create ASP.NET Core MVC Project I am using Visual Studio 2019 Community Edition, a free download from Microsoft. Starting with 2019, the wizard for choosing templates is different from previous versions, but regardless which version you have, the steps are…
Angular & ASP.NET Core 3.0 – Deep Dive
Key Takeaways Multiple Angular applications can be integrated into an ASP.NET web sitePackaging Angular code as Web Components is a good way to bootstrap an Angular applicationWeb Components written in Angular can be easily integrated into ASP.NET viewsStructuring Angular solution…
What’s new in Microsoft .NET 5
Aimed at unifying the .NET platform, .NET 5 brings improvements to RyuJIT code quality, garbage collection, and JSON serialization, for starters. Microsoft’s seventh preview of .NET 5 has arrived, with improvements in areas such as JSON and the Ryujit compiler. .NET…
Single Page Applications and ASP.NET Core 3.0
Key Takeaways Developers keep moving to Single Page Applications (SPAs), though client-side development doesn’t mean you need a SPA in every case.There are several ways to use SPA frameworks with ASP.NET Core, including middleware, directory-based connection, or integration into your…
Use SPA as Subdirectory of ASP.NET Core
While the middleware is a good option if you’re building a single, monolithic SPA without much use for other web pages, I think for most developers, integrating ASP.NET Core into a traditional MVC application makes the most sense. You can…
WCTM Gurgaon is building talent that can make a difference
Touted as one of the best engineering and management colleges in Gurgaon, WCTM has carved a niche in providing high-quality technical and management knowledge to develop smarter talent. World College of Technology and Management (WCTM), Gurgaon, Haryana, was established in…
Exploring .Net Core 3.0 components with Mark J. Price, a Microsoft specialist
There has been continuous transformation since the last few years to bring .NET to platforms other than Windows. .NET Core 3.0 released in September 2019 with primary focus on adding Windows specific features. .NET Core 3.0 supports side-by-side and app-local…
Using the .Net Core Template Engine to Create Custom Templates
Customising templates So far, we've just looked at a very simple Hello World console app, and added some tests. Let's take a look at something more interesting. Say you want to create a new ASP.NET project. Looking at the list…