38 lines
1.0 KiB
C++
38 lines
1.0 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(L"LibCRIComp")];
|
|
[assembly:AssemblyDescriptionAttribute(L"")];
|
|
[assembly:AssemblyConfigurationAttribute(L"")];
|
|
[assembly:AssemblyCompanyAttribute(L"")];
|
|
[assembly:AssemblyProductAttribute(L"LibCRIComp")];
|
|
[assembly:AssemblyCopyrightAttribute(L"Copyright (c) 2017")];
|
|
[assembly:AssemblyTrademarkAttribute(L"")];
|
|
[assembly:AssemblyCultureAttribute(L"")];
|
|
|
|
//
|
|
// 程序集的版本信息由下列四个值组成:
|
|
//
|
|
// 主版本
|
|
// 次版本
|
|
// 生成号
|
|
// 修订号
|
|
//
|
|
// 您可以指定所有值,也可以使用“修订号”和“生成号”的默认值,
|
|
// 方法是按如下所示使用“*”: :
|
|
|
|
[assembly:AssemblyVersionAttribute("1.0.*")];
|
|
|
|
[assembly:ComVisible(false)];
|
|
|
|
[assembly:CLSCompliantAttribute(true)]; |