About 11,200,000 results
Open links in new tab
  1. How to build a whole .NET Framework application as a single .exe file?

    Create a Setup Project (look up in msdn), package your project output files within the installer. Visual studio creates an installer and bootstrapped exe file, you can use either the exe or the msi file to run your application.

  2. Create a single file for application deployment - .NET

    Oct 15, 2024 · Bundling all application-dependent files into a single binary provides an application developer with the attractive option to deploy and distribute the application as a single file. Single-file deployment is available for both the framework-dependent deployment model and self-contained applications.

  3. How to: Build a .NET Framework single-file assembly

    Jun 4, 2024 · Explore how to build a single-file assembly in .NET. A single-file assembly can be a library (.dll) that targets .NET, or it can be an executable (.exe) file.

  4. How can I create an .EXE file from .NET Framework 4.8 project?

    Jan 30, 2023 · I would like to instead have a TapeRedGreen.exe file that will run the program/application, avoiding having to run the setup/install .exe. How can I do this?

  5. How to publish a .NET application as a standalone executable file ...

    Apr 4, 2024 · In this article, I have walked through how to publish a .NET project as a standalone executable file. I explained how the process works from start to finish for a sample C# Console App and covered some of the advanced settings such as the self-contained deployment mode and the single file option.

  6. Compile to a stand-alone executable (.exe) in Visual Studio

    Jan 9, 2010 · To force the compiler to generate a real, standalone executable (which means you use C# like any other language) you use the program mkbundle (shipped with Mono). This will compile your C# app into a real, no dependency executable. There is a lot of misconceptions about this around the internet.

  7. How to Generate a Standalone Executable File from C# ... - C

    In this article, we are going through the process of generating a standalone executable file (.exe) from your C# project. Following these steps, you can create a self-contained file that can be easily shared and run on other systems without additional dependencies.

  8. Application publishing - .NET | Microsoft Learn

    Mar 19, 2024 · Learn about the ways to publish a .NET application. .NET can publish platform-specific or cross-platform apps. You can publish an app as self-contained or as framework-dependent. Each mode affects how a user runs your app.

  9. Pack your .NET program to a single .exe file with PostSharp …

    May 27, 2020 · Last month, we released PostSharp.Community.Packer, a free and open-source tool that you can use to pack your .NET Framework application into a single .exe file for distribution. The basic idea as well as much of the code itself come from Costura.Fody, an add-in to Fody, which has the same effect.

  10. Build a “true” single executable in .NET 5.0 for Windows, Linux …

    May 5, 2021 · Have you tried to publish a single executable file in .NET 5.0, and the result was not a single file? For example, running this command: dotnet publish My.csproj --configuration Release --framework net5.0 --output publish --self-contained True --runtime win-x64 --verbosity Normal /property:PublishTrimmed=True /property:PublishSingleFile=True

  11. Some results have been removed
Refresh