UacHelpers.CppLibrary/AssemblyInfo.cpp
author StephaneLenclud
Thu, 18 Apr 2013 23:25:10 +0200
changeset 402 ded1323b61ee
permissions -rw-r--r--
Front View plug-in does not init if no sensor added.
Fixing some format to make strings shorter.
Now trying to start SoundGraphAccess.exe process from same directory.
Packed mode now can display three sensors along with the current time.
     1 using namespace System;
     2 using namespace System::Reflection;
     3 using namespace System::Runtime::CompilerServices;
     4 using namespace System::Runtime::InteropServices;
     5 using namespace System::Security::Permissions;
     6 
     7 //
     8 // General Information about an assembly is controlled through the following
     9 // set of attributes. Change these attribute values to modify the information
    10 // associated with an assembly.
    11 //
    12 [assembly:AssemblyTitleAttribute("UAC Helpers")];
    13 [assembly:AssemblyDescriptionAttribute("User Account Control C++/CLI Library")];
    14 [assembly:AssemblyConfigurationAttribute("")];
    15 [assembly:AssemblyCompanyAttribute("Sela Group")];
    16 [assembly:AssemblyProductAttribute("")];
    17 [assembly:AssemblyCopyrightAttribute("Copyright (c) Sasha Goldshtein 2008")];
    18 [assembly:AssemblyTrademarkAttribute("")];
    19 [assembly:AssemblyCultureAttribute("")];
    20 
    21 //
    22 // Version information for an assembly consists of the following four values:
    23 //
    24 //      Major Version
    25 //      Minor Version
    26 //      Build Number
    27 //      Revision
    28 //
    29 // You can specify all the value or you can default the Revision and Build Numbers
    30 // by using the '*' as shown below:
    31 
    32 [assembly:AssemblyVersionAttribute("1.0.0.0")];
    33 
    34 [assembly:ComVisible(false)];
    35 
    36 [assembly:CLSCompliantAttribute(true)];
    37 
    38 [assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];