UacHelpers.CppLibrary/AssemblyInfo.cpp
branchMiniDisplay
changeset 436 e9aefd454d1e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/UacHelpers.CppLibrary/AssemblyInfo.cpp	Mon Feb 02 12:51:06 2015 +0100
     1.3 @@ -0,0 +1,38 @@
     1.4 +using namespace System;
     1.5 +using namespace System::Reflection;
     1.6 +using namespace System::Runtime::CompilerServices;
     1.7 +using namespace System::Runtime::InteropServices;
     1.8 +using namespace System::Security::Permissions;
     1.9 +
    1.10 +//
    1.11 +// General Information about an assembly is controlled through the following
    1.12 +// set of attributes. Change these attribute values to modify the information
    1.13 +// associated with an assembly.
    1.14 +//
    1.15 +[assembly:AssemblyTitleAttribute("UAC Helpers")];
    1.16 +[assembly:AssemblyDescriptionAttribute("User Account Control C++/CLI Library")];
    1.17 +[assembly:AssemblyConfigurationAttribute("")];
    1.18 +[assembly:AssemblyCompanyAttribute("Sela Group")];
    1.19 +[assembly:AssemblyProductAttribute("")];
    1.20 +[assembly:AssemblyCopyrightAttribute("Copyright (c) Sasha Goldshtein 2008")];
    1.21 +[assembly:AssemblyTrademarkAttribute("")];
    1.22 +[assembly:AssemblyCultureAttribute("")];
    1.23 +
    1.24 +//
    1.25 +// Version information for an assembly consists of the following four values:
    1.26 +//
    1.27 +//      Major Version
    1.28 +//      Minor Version
    1.29 +//      Build Number
    1.30 +//      Revision
    1.31 +//
    1.32 +// You can specify all the value or you can default the Revision and Build Numbers
    1.33 +// by using the '*' as shown below:
    1.34 +
    1.35 +[assembly:AssemblyVersionAttribute("1.0.0.0")];
    1.36 +
    1.37 +[assembly:ComVisible(false)];
    1.38 +
    1.39 +[assembly:CLSCompliantAttribute(true)];
    1.40 +
    1.41 +[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];