PreviousNext

How to distribute a .NET Core application to users who don't have .NET Core installed

by bill-s, 2018-01-19T12:17:45.000Z

Case: .NET Core application for a wide user base Problem: Users don’t have .NET Core installed Solution: .NET Core self-contained deployments I have a .NET Core Web Application that developers run locally. The problem is that most of the developers don’t have .NET Core installed on their development machines, so there needs to be a way that all developers can use the application without needing to install .NET Core.

Read More