Relative Content

Tag Archive for dependencies

How do we isolate dependencies for a .Net app deploy in a way which is safe for a strongly-named assemblies?

To design in such that it is easy to deploy dependencies with your app, and so that development environments are easy to set up, it is advantageous to isolate an app’s dependencies from it’s environment. That means the app can get its dependencies from a package manager, and it will not be affected by it’s deployment environment (such as the GAC). This principle comes from the Dependencies section of the very interesting “Twelve-Factor App” standards.

How do we isolate dependencies for a .Net app deploy in a way which is safe for a strongly-named assemblies?

To design in such that it is easy to deploy dependencies with your app, and so that development environments are easy to set up, it is advantageous to isolate an app’s dependencies from it’s environment. That means the app can get its dependencies from a package manager, and it will not be affected by it’s deployment environment (such as the GAC). This principle comes from the Dependencies section of the very interesting “Twelve-Factor App” standards.