dotnet

A 5-post collection




Debug ASP.NET Core with Multiple Browsers from VS Code on MacOS

I recently needed to launch different browsers for debugging a .NET Core [https://www.microsoft.com/net] app in Visual Studio Code [https://code.visualstudio.com/] on a MacOS. A quick Google search yielded how to launch different browsers from VS Code for debugging ASP.NET Core [https://dotnetthoughts.net/launching-different-browser-from-vscode/], but this was Windows centric. While the changes below are simple, I thought I would document them anyway. Here is the whole launch.json file for ref...


Testing SSL in ASP.NET Core on a Mac

Creating the Project Back in October 2016, Shawn Wildermuth published Testing SSL in ASP.NET Core [https://wildermuth.com/2016/10/26/Testing-SSL-in-ASP-NET-Core]. I came across this post while trying to get HTTPS working with ASP.NET Core on a Mac. Sadly, this post was specific to Windows. However, I want this to work so I can make some progress on Office Addin development using ASP.NET Core. What follows is more of a reminder to myself of how to get this working a Mac again, but let me know if...