UacHelpers.CppLibrary/AssemblyInfo.cpp
author StephaneLenclud
Sat, 09 Feb 2013 17:18:09 +0100
changeset 394 60a1e2b6ed71
permissions -rw-r--r--
At last we can output stuff on our display.
The whole thing is still quite broken though.
StephaneLenclud@394
     1
using namespace System;
StephaneLenclud@394
     2
using namespace System::Reflection;
StephaneLenclud@394
     3
using namespace System::Runtime::CompilerServices;
StephaneLenclud@394
     4
using namespace System::Runtime::InteropServices;
StephaneLenclud@394
     5
using namespace System::Security::Permissions;
StephaneLenclud@394
     6
StephaneLenclud@394
     7
//
StephaneLenclud@394
     8
// General Information about an assembly is controlled through the following
StephaneLenclud@394
     9
// set of attributes. Change these attribute values to modify the information
StephaneLenclud@394
    10
// associated with an assembly.
StephaneLenclud@394
    11
//
StephaneLenclud@394
    12
[assembly:AssemblyTitleAttribute("UAC Helpers")];
StephaneLenclud@394
    13
[assembly:AssemblyDescriptionAttribute("User Account Control C++/CLI Library")];
StephaneLenclud@394
    14
[assembly:AssemblyConfigurationAttribute("")];
StephaneLenclud@394
    15
[assembly:AssemblyCompanyAttribute("Sela Group")];
StephaneLenclud@394
    16
[assembly:AssemblyProductAttribute("")];
StephaneLenclud@394
    17
[assembly:AssemblyCopyrightAttribute("Copyright (c) Sasha Goldshtein 2008")];
StephaneLenclud@394
    18
[assembly:AssemblyTrademarkAttribute("")];
StephaneLenclud@394
    19
[assembly:AssemblyCultureAttribute("")];
StephaneLenclud@394
    20
StephaneLenclud@394
    21
//
StephaneLenclud@394
    22
// Version information for an assembly consists of the following four values:
StephaneLenclud@394
    23
//
StephaneLenclud@394
    24
//      Major Version
StephaneLenclud@394
    25
//      Minor Version
StephaneLenclud@394
    26
//      Build Number
StephaneLenclud@394
    27
//      Revision
StephaneLenclud@394
    28
//
StephaneLenclud@394
    29
// You can specify all the value or you can default the Revision and Build Numbers
StephaneLenclud@394
    30
// by using the '*' as shown below:
StephaneLenclud@394
    31
StephaneLenclud@394
    32
[assembly:AssemblyVersionAttribute("1.0.0.0")];
StephaneLenclud@394
    33
StephaneLenclud@394
    34
[assembly:ComVisible(false)];
StephaneLenclud@394
    35
StephaneLenclud@394
    36
[assembly:CLSCompliantAttribute(true)];
StephaneLenclud@394
    37
StephaneLenclud@394
    38
[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];