Click here to Skip to main content
15,892,575 members
Articles / Desktop Programming / Win32

Managed Fusion

Rate me:
Please Sign up or sign in to vote.
4.96/5 (20 votes)
19 Nov 2009LGPL35 min read 49.6K   428   44  
Managed Fusion - A managed API to view and manipulate the Global Assembly Cache
#region Copyright (C) 2009-2010 Simon Allaeys

/*
    Copyright (C) 2009-2010 Simon Allaeys
 
    This file is part of AppStract

    AppStract is free software: you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    AppStract is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with AppStract.  If not, see <http://www.gnu.org/licenses/>.
*/

#endregion

namespace ManagedFusion.WrappedFusion
{
  /// <summary>
  /// Provides extra information on the <see cref="AssemblyInfo"/>.
  /// </summary>
  internal enum AssemblyInfoFlags
  {
    /// <summary>
    /// No flags set.
    /// </summary>
    None = 0x0,
    /// <summary>
    /// Indicates that the assembly is actually installed.
    /// Always set in current version of the .NET Framework.
    /// </summary>
    Installed = 0x01,
    /// <summary>
    /// Never set in the current version of the .NET Framework.
    /// </summary>
    PayloadResident = 0x02
  }
}

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 GNU Lesser General Public License (LGPLv3)


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

Comments and Discussions