author | StephaneLenclud |
Wed, 17 Aug 2016 13:41:26 +0200 | |
changeset 236 | 6ba20e02d04f |
permissions | -rw-r--r-- |
StephaneLenclud@159 | 1 |
#include "stdafx.h" |
StephaneLenclud@159 | 2 |
|
StephaneLenclud@159 | 3 |
using namespace System; |
StephaneLenclud@159 | 4 |
using namespace System::Reflection; |
StephaneLenclud@159 | 5 |
using namespace System::Runtime::CompilerServices; |
StephaneLenclud@159 | 6 |
using namespace System::Runtime::InteropServices; |
StephaneLenclud@159 | 7 |
using namespace System::Security::Permissions; |
StephaneLenclud@159 | 8 |
|
StephaneLenclud@159 | 9 |
// |
StephaneLenclud@159 | 10 |
// General Information about an assembly is controlled through the following |
StephaneLenclud@159 | 11 |
// set of attributes. Change these attribute values to modify the information |
StephaneLenclud@159 | 12 |
// associated with an assembly. |
StephaneLenclud@159 | 13 |
// |
StephaneLenclud@159 | 14 |
[assembly:AssemblyTitleAttribute(L"PowerManager")]; |
StephaneLenclud@159 | 15 |
[assembly:AssemblyDescriptionAttribute(L"")]; |
StephaneLenclud@159 | 16 |
[assembly:AssemblyConfigurationAttribute(L"")]; |
StephaneLenclud@159 | 17 |
[assembly:AssemblyCompanyAttribute(L"")]; |
StephaneLenclud@159 | 18 |
[assembly:AssemblyProductAttribute(L"PowerManager")]; |
StephaneLenclud@159 | 19 |
[assembly:AssemblyCopyrightAttribute(L"Copyright (c) 2015")]; |
StephaneLenclud@159 | 20 |
[assembly:AssemblyTrademarkAttribute(L"")]; |
StephaneLenclud@159 | 21 |
[assembly:AssemblyCultureAttribute(L"")]; |
StephaneLenclud@159 | 22 |
|
StephaneLenclud@159 | 23 |
// |
StephaneLenclud@159 | 24 |
// Version information for an assembly consists of the following four values: |
StephaneLenclud@159 | 25 |
// |
StephaneLenclud@159 | 26 |
// Major Version |
StephaneLenclud@159 | 27 |
// Minor Version |
StephaneLenclud@159 | 28 |
// Build Number |
StephaneLenclud@159 | 29 |
// Revision |
StephaneLenclud@159 | 30 |
// |
StephaneLenclud@159 | 31 |
// You can specify all the value or you can default the Revision and Build Numbers |
StephaneLenclud@159 | 32 |
// by using the '*' as shown below: |
StephaneLenclud@159 | 33 |
|
StephaneLenclud@159 | 34 |
[assembly:AssemblyVersionAttribute("1.0.*")]; |
StephaneLenclud@159 | 35 |
|
StephaneLenclud@159 | 36 |
[assembly:ComVisible(false)]; |
StephaneLenclud@159 | 37 |
|
StephaneLenclud@159 | 38 |
[assembly:CLSCompliantAttribute(true)]; |