Tuesday, June 28, 2022

desktop application deployment

desktop application deployment

  1. https://www.codeproject.com/Questions/5336026/How-can-I-make-the-desktop-application-runs-withou
  2. I have a C# Desktop Application. when i make release its generated with setup file. and i always need to setup the app first. and i don't need that step.any help ?

  3. .NET application publishing overview
  4. Applications you create with .NET can be published in two different modes, and the mode affects how a user runs your app.

    Publishing your app as self-contained produces an application that includes the .NET runtime and libraries, and your application and its dependencies. Users of the application can run it on a machine that doesn't have the .NET runtime installed.

  5. Tutorial: Containerize a .NET app
  6. In this tutorial, you'll learn how to containerize a .NET application with Docker. Containers have many features and benefits, such as being an immutable infrastructure, providing a portable architecture, and enabling scalability. The image can be used to create containers for your local development environment, private cloud, or public cloud.

  7. .NET Framework versions and dependencies
  8. Each version of .NET Framework contains the common language runtime (CLR), the base class libraries, and other managed libraries. This article describes the key features of .NET Framework by version, provides information about the underlying CLR versions and associated development environments, and identifies the versions that are installed by the Windows operating system (OS).

    Each new version of .NET Framework adds new features but retains features from previous versions.

  9. How to: Configure an App to Support .NET Framework 4 or later versions
  10. All apps that host the common language runtime (CLR) need to start, or activate, the CLR in order to run managed code. Typically, a .NET Framework app runs on the version of the CLR that it was built on, but you can change this behavior for desktop apps by using an application configuration file (sometimes referred to as an app.config file). However, you cannot change the default activation behavior for Windows Store apps or Windows Phone apps by using an application configuration file. This article explains how to enable your desktop app to run on another version of the .NET Framework and provides an example of how to target version 4 or later versions.

No comments:

Post a Comment