StephaneLenclud@394: using namespace System;
StephaneLenclud@394: using namespace System::Reflection;
StephaneLenclud@394: using namespace System::Runtime::CompilerServices;
StephaneLenclud@394: using namespace System::Runtime::InteropServices;
StephaneLenclud@394: using namespace System::Security::Permissions;
StephaneLenclud@394: 
StephaneLenclud@394: //
StephaneLenclud@394: // General Information about an assembly is controlled through the following
StephaneLenclud@394: // set of attributes. Change these attribute values to modify the information
StephaneLenclud@394: // associated with an assembly.
StephaneLenclud@394: //
StephaneLenclud@394: [assembly:AssemblyTitleAttribute("UAC Helpers")];
StephaneLenclud@394: [assembly:AssemblyDescriptionAttribute("User Account Control C++/CLI Library")];
StephaneLenclud@394: [assembly:AssemblyConfigurationAttribute("")];
StephaneLenclud@394: [assembly:AssemblyCompanyAttribute("Sela Group")];
StephaneLenclud@394: [assembly:AssemblyProductAttribute("")];
StephaneLenclud@394: [assembly:AssemblyCopyrightAttribute("Copyright (c) Sasha Goldshtein 2008")];
StephaneLenclud@394: [assembly:AssemblyTrademarkAttribute("")];
StephaneLenclud@394: [assembly:AssemblyCultureAttribute("")];
StephaneLenclud@394: 
StephaneLenclud@394: //
StephaneLenclud@394: // Version information for an assembly consists of the following four values:
StephaneLenclud@394: //
StephaneLenclud@394: //      Major Version
StephaneLenclud@394: //      Minor Version
StephaneLenclud@394: //      Build Number
StephaneLenclud@394: //      Revision
StephaneLenclud@394: //
StephaneLenclud@394: // You can specify all the value or you can default the Revision and Build Numbers
StephaneLenclud@394: // by using the '*' as shown below:
StephaneLenclud@394: 
StephaneLenclud@394: [assembly:AssemblyVersionAttribute("1.0.0.0")];
StephaneLenclud@394: 
StephaneLenclud@394: [assembly:ComVisible(false)];
StephaneLenclud@394: 
StephaneLenclud@394: [assembly:CLSCompliantAttribute(true)];
StephaneLenclud@394: 
StephaneLenclud@394: [assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];