0.4.00.4.10.4.2
|
Last change
on this file since d6c3131 was
ee52cdd,
checked in by Michael Medin <michael@…>, 15 months ago
|
- Added new dot-net API (Which does not require any strange wrappers)
- Added brand new sample C# plugin
|
-
Property mode set to
100644
|
|
File size:
1.3 KB
|
| Line | |
|---|
| 1 | #include "stdafx.h"
|
|---|
| 2 |
|
|---|
| 3 | using namespace System;
|
|---|
| 4 | using namespace System::Reflection;
|
|---|
| 5 | using namespace System::Runtime::CompilerServices;
|
|---|
| 6 | using namespace System::Runtime::InteropServices;
|
|---|
| 7 | using namespace System::Security::Permissions;
|
|---|
| 8 |
|
|---|
| 9 | //
|
|---|
| 10 | // General Information about an assembly is controlled through the following
|
|---|
| 11 | // set of attributes. Change these attribute values to modify the information
|
|---|
| 12 | // associated with an assembly.
|
|---|
| 13 | //
|
|---|
| 14 | [assembly:AssemblyTitleAttribute("DotnetPlugin")];
|
|---|
| 15 | [assembly:AssemblyDescriptionAttribute("")];
|
|---|
| 16 | [assembly:AssemblyConfigurationAttribute("")];
|
|---|
| 17 | [assembly:AssemblyCompanyAttribute("")];
|
|---|
| 18 | [assembly:AssemblyProductAttribute("DotnetPlugin")];
|
|---|
| 19 | [assembly:AssemblyCopyrightAttribute("Copyright (c) 2012")];
|
|---|
| 20 | [assembly:AssemblyTrademarkAttribute("")];
|
|---|
| 21 | [assembly:AssemblyCultureAttribute("")];
|
|---|
| 22 |
|
|---|
| 23 | //
|
|---|
| 24 | // Version information for an assembly consists of the following four values:
|
|---|
| 25 | //
|
|---|
| 26 | // Major Version
|
|---|
| 27 | // Minor Version
|
|---|
| 28 | // Build Number
|
|---|
| 29 | // Revision
|
|---|
| 30 | //
|
|---|
| 31 | // You can specify all the value or you can default the Revision and Build Numbers
|
|---|
| 32 | // by using the '*' as shown below:
|
|---|
| 33 |
|
|---|
| 34 | [assembly:AssemblyVersionAttribute("1.0.*")];
|
|---|
| 35 |
|
|---|
| 36 | [assembly:ComVisible(false)];
|
|---|
| 37 |
|
|---|
| 38 | [assembly:CLSCompliantAttribute(true)];
|
|---|
| 39 |
|
|---|
| 40 | [assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];
|
|---|
Note: See
TracBrowser
for help on using the repository browser.