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