Click here to Skip to main content
15,886,723 members
Articles / Programming Languages / C#

A Simple Way to Pack your .NET Code into a Single Executable

Rate me:
Please Sign up or sign in to vote.
4.69/5 (23 votes)
19 Feb 2008CPOL3 min read 137.6K   2.3K   104  
C# and C++ source code for .NET application packer tool
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Cellbi.AppPacker</name>
    </assembly>
    <members>
        <member name="T:Cellbi.AppPacker.Packer">
            <summary>
            Packer class provides root packing functionality.
            </summary>
        </member>
        <member name="M:Cellbi.AppPacker.Packer.#ctor">
            <summary>
            Creates new instance of the Packer class.
            </summary>
        </member>
        <member name="M:Cellbi.AppPacker.Packer.Pack(System.String[],System.String,System.String,System.String)">
            <summary>
            Packs the specified assembly files using the given destination file path.
            </summary>
            <param name="files">The list of files to pack.</param>
            <param name="destination">The destination path.</param>
        </member>
        <member name="T:Cellbi.AppPacker.FrameworkHelper">
            <summary>
            .Net framework helper.
            </summary>
        </member>
        <member name="M:Cellbi.AppPacker.FrameworkHelper.GetInstallRoot">
            <summary>
            Gets .Net framework install root.
            </summary>
            <returns>.Net framework install root.</returns>
        </member>
        <member name="M:Cellbi.AppPacker.FrameworkHelper.GetRuntimeVersions">
            <summary>
            Gets .Net runtime versions.
            </summary>
            <returns>.Net runtime versions.</returns>
        </member>
    </members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
I'm excited about computers and programming, since my school days. I have master's degree in software development and at the moment I'm a software developer at Cellbi Software.

Comments and Discussions