forked from ReClassNET/ReClass.NET-SamplePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssemblyInfo.cpp
More file actions
20 lines (16 loc) · 796 Bytes
/
AssemblyInfo.cpp
File metadata and controls
20 lines (16 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;
[assembly:AssemblyTitleAttribute(L"SamplePluginHybrid")];
[assembly:AssemblyDescriptionAttribute(L"A sample plugin for developers that demonstrates how to use the plugin system.")];
[assembly:AssemblyConfigurationAttribute(L"")];
[assembly:AssemblyCompanyAttribute(L"KN4CK3R")];
[assembly:AssemblyProductAttribute(L"ReClass.NET Plugin")];
[assembly:AssemblyCopyrightAttribute(L"")];
[assembly:AssemblyTrademarkAttribute(L"")];
[assembly:AssemblyCultureAttribute(L"")];
[assembly:AssemblyVersionAttribute("1.0.*")];
[assembly:ComVisible(false)];
[assembly:CLSCompliantAttribute(true)];