Running your ASP.NET Core (or other) application in Docker using SSL should not be an overwhelming task. These steps should do the trick.
Run the following steps from a Linux terminal (I used WSL or WSL2 on Windows from the Windows Terminal).
It should look something like the content below; call it my-site.conf
or something like that.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"Postcode": "01067", | |
"State": "DE-SN" | |
}, | |
{ | |
"Postcode": "01069", | |
"State": "DE-SN" | |
}, | |
{ |
This guide will provide you with a workaround for using XNA in Visual Studio 2017. This will solve problems with the target files and Microsoft.Build.Framework.dll such as:
Error loading pipeline assembly "C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\Microsoft.Build.Framework.dll"
- Download a modified version of the XNA vsix: https://mxa.codeplex.com/
- Unzip XNA Game Studio 4.0.vsix and replace the
<Installation />
tag in extension.vsixmanifest with this:
<Installation InstalledByMsi="false">
<InstallationTarget Version="[12.0,16.0)" Id="Microsoft.VisualStudio.VSWinDesktopExpress" />
<InstallationTarget Version="[12.0,16.0)" Id="Microsoft.VisualStudio.Pro" />
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Reactive.Linq; | |
using System.Threading; | |
/// <summary> | |
/// Helper methods for using observable <see cref="IProgress{T}"/> implementations. These are hot observables. | |
/// </summary> | |
public static class ObservableProgress | |
{ | |
/// <summary> |