38 lines
1.0 KiB
C++
Executable File
38 lines
1.0 KiB
C++
Executable File
#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"Git_Practice")];
|
|
[assembly:AssemblyDescriptionAttribute(L"")];
|
|
[assembly:AssemblyConfigurationAttribute(L"")];
|
|
[assembly:AssemblyCompanyAttribute(L"")];
|
|
[assembly:AssemblyProductAttribute(L"Git_Practice")];
|
|
[assembly:AssemblyCopyrightAttribute(L"Copyright (c) 2018")];
|
|
[assembly:AssemblyTrademarkAttribute(L"")];
|
|
[assembly:AssemblyCultureAttribute(L"")];
|
|
|
|
//
|
|
// 組件的版本資訊由下列四個值所組成:
|
|
//
|
|
// 主要版本
|
|
// 次要版本
|
|
// 組建編號
|
|
// 修訂編號
|
|
//
|
|
// 您可以指定所有的值,也可以依照以下的方式,使用 '*' 將修訂和組建編號
|
|
// 指定為預設值:
|
|
|
|
[assembly:AssemblyVersionAttribute("1.0.*")];
|
|
|
|
[assembly:ComVisible(false)];
|
|
|
|
[assembly:CLSCompliantAttribute(true)]; |