Find a compiled list of 5 tools for bundling and minification in ASP.NET Core.
Category: .NET Core
Host ASP.NET Core 2.0 on Windows with IIS | Microsoft Docs
.NET Core Test Explorer – For Visual Studio Code
Supports .NET Core mstest, nunit and xunit tests.
Shows up under the “Explorer” side bar. (Ctrl+shift+E).
Force xUnit.net to run tests serially
Force to run tests in test projects serially; (for integration or ui type of tests)
Add this to the xunit test project app.config file:
<?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> ... <add key="xunit.methodDisplay" value="method" /> <add key="xunit.parallelizeAssembly" value="false" /> <add key="xunit.parallelizeTestCollections" value="false" /> <add key="xunit.maxParallelThreads" value="1" /> ...
docs:
https://xunit.github.io/docs/configuring-with-xml.html (.NET)
https://xunit.github.io/docs/configuring-with-json.html (.NET core)
Getting started with .NET Core Series – Michael Crump
Learn how to work with .NET Core in this mini-series
Source: Day 1 – Installing and Running .NET Core on a Windows Box – Michael Crump
.NET Core Overview Crash Course (on Linux – but applicable on other systems)
With .NET being open source, you can also install and use the .NET Framework on your Linux machine with multiple languages, such as C#, F#, and Visual Basic (coming soon). This Refcard guides you through productively using .NET on Linux, from installation to debugging. You will find an architectural overview, tips for using the new Command Line Interface (CLI), and tools and helpful settings as they relate to your development efforts. This Refcard also covers building MVC web sites, RESTful services, and standalone applications.
Source: .NET on Linux – DZone – Refcardz