40 lines
1.2 KiB
C++
40 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("wEtFileSystem")];
|
|
[assembly:AssemblyDescriptionAttribute("")];
|
|
[assembly:AssemblyConfigurationAttribute("")];
|
|
[assembly:AssemblyCompanyAttribute("")];
|
|
[assembly:AssemblyProductAttribute("wEtFileSystem")];
|
|
[assembly:AssemblyCopyrightAttribute("Copyright (c) 2011")];
|
|
[assembly:AssemblyTrademarkAttribute("")];
|
|
[assembly:AssemblyCultureAttribute("")];
|
|
|
|
//
|
|
// 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다.
|
|
//
|
|
// 주 버전
|
|
// 부 버전
|
|
// 빌드 번호
|
|
// 수정 버전
|
|
//
|
|
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 버전이 자동으로
|
|
// 지정되도록 할 수 있습니다.
|
|
|
|
[assembly:AssemblyVersionAttribute("1.0.*")];
|
|
|
|
[assembly:ComVisible(false)];
|
|
|
|
[assembly:CLSCompliantAttribute(true)];
|
|
|
|
[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];
|