|
|
|
|
|
by cm2187
3535 days ago
|
|
That's one thing I don't understand with .net core. You deploy the whole .net framework along your code which then becomes static. And this is targeted at web applications primarily. What about security vulnerabilities? Unless the developers redeploy the application we will be left with an unpatched .net stack and unpatched web server? How is that a good idea? In an ideal world there would be an active dev team busy redeploying and patching every day behind each website. But people who think we live in this world haven't really followed the pretty much constant stream of news about major breaches because of unpatched versions of software being used everywhere. Or am I missing something? |
|
Portable: runtime must be installed on target machine Standalone: runtime bundled with application
Portable is how non-Core .NET apps have always been, and I believe all the templates in the Visual Studio preview tooling are setup as portable apps.
The docs have a good explanation of the differences, and how to configure a project to support either deployment strategy:
https://docs.microsoft.com/en-us/dotnet/articles/core/deploy...