Implement FDD or SCD using VS 2017

How do I package an application .net coreas " a framework-dependent deployment (FDD)" or " a self-contained deployment (SCD)" using Visual Studio 2017 (IDE)? I know how to do this using the command line / command line.

+3
source share
2 answers

This feature does not seem to be available on momnet. I created a function request in suggestions .

0
source

See Visual Studio and Standalone Deployments

Setting the property <RuntimeIdentifier>XXX</RuntimeIdentifier>in your .csproj makes it standalone. Do not install <RuntimeIdentifier>makes it dependent on the structure.

+4

Source: https://habr.com/ru/post/1672306/


All Articles