Admin
Admin

Reputation: 193

Run ASP.NET Core as Portable Client Application

I have .Net Core Application. I have to install the application as a Software Project on clients machines, because data (bio-metric, Identity Information etc..) being sensitive and not allowed to be connected to Web. Data is Quarterly exported, verified and then given to WEB agencies under various security policies.

Is there any way to run the application as Portable Self Hosted. I have to run the application in various clients (more than 3000) computer systems.

About 40% systems are Windows 7 and rest 60% are Windows 8,8.1 and 10. Which framework at least required on client to run the application?

How to create a portable setup that don't require any Internet and other dependencies, so as to provide in DVD or portable form ?

Upvotes: 0

Views: 1643

Answers (1)

Dmitry
Dmitry

Reputation: 16825

Self-contained deployment is for you.

.NET Core 1.0 is supported on Win7 SP1 and above

dotnet publish will create separate distrib folders for each SDK/platform which will contain everything to run, without any additional download/install (unless you use something that should be installed, like SQL Server).

Upvotes: 1

Related Questions