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