41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
/* #include "stdafx.h"
|
|
|
|
using namespace System;
|
|
using namespace System::Reflection;
|
|
using namespace System::Runtime::CompilerServices;
|
|
using namespace System::Runtime::InteropServices;
|
|
using namespace System::Security::Permissions;
|
|
|
|
//
|
|
// 有关程序集的常规信息通过下列特性集
|
|
// 控制。更改这些特性值可修改
|
|
// 与程序集关联的信息。
|
|
//
|
|
[assembly:AssemblyTitleAttribute("OCCLib")];
|
|
[assembly:AssemblyDescriptionAttribute("")];
|
|
[assembly:AssemblyConfigurationAttribute("")];
|
|
[assembly:AssemblyCompanyAttribute("")];
|
|
[assembly:AssemblyProductAttribute("OCCLib")];
|
|
[assembly:AssemblyCopyrightAttribute("Copyright (c) 2014")];
|
|
[assembly:AssemblyTrademarkAttribute("")];
|
|
[assembly:AssemblyCultureAttribute("")];
|
|
|
|
//
|
|
// 程序集的版本信息由下面四个值组成:
|
|
//
|
|
// 主版本
|
|
// 次版本
|
|
// 内部版本号
|
|
// 修订号
|
|
//
|
|
// 您可以指定所有值,也可以使用“修订号”和“内部版本号”的默认值,
|
|
// 方法是按如下所示使用“*”:
|
|
|
|
[assembly:AssemblyVersionAttribute("1.0.*")];
|
|
|
|
[assembly:ComVisible(false)];
|
|
|
|
[assembly:CLSCompliantAttribute(true)];
|
|
|
|
[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];
|
|
*/ |