Click here to Skip to main content
15,894,460 members
Articles / Web Development / ASP.NET

A WIX web setup

Rate me:
Please Sign up or sign in to vote.
2.05/5 (8 votes)
9 May 20074 min read 72K   856   26  
Create WIX web setup using VS2005 and Wix 3.0
#region Using directives
using System;
using System.Configuration;
using System.Collections.Generic;
using System.Text;
#endregion

namespace Djans.ComponentWriter
{
    /// <summary>
    /// Defines the members of the ComponentWriter
    /// </summary>
    class ComponentWriterConfig
    {
        #region Private members

        private string m_SourceDirectory;
        private string m_OutputFile;
        private string m_UgradeFile;

        #endregion

        #region Public properties

        /// <summary>
        /// Source directory
        /// </summary>
        public string SourceDirectory
        {
            get { return m_SourceDirectory; }
            set { m_SourceDirectory = value; }
        }

        /// <summary>
        /// Component file
        /// </summary>
        public string OutputFile
        {
            get { return m_OutputFile; }
            set { m_OutputFile = value; }
        }

        /// <summary>
        /// Wix file having upgrade element
        /// </summary>
        public string UgradeFile
        {
            get { return m_UgradeFile; }
            set { m_UgradeFile = value; }
        }

        #endregion

    }
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions