40 lines
1.9 KiB
C++
40 lines
1.9 KiB
C++
|
/************************************************************************************//*!
|
||
|
\file AssemblyInfo.cxx
|
||
|
\author Tng Kah Wei, kahwei.tng, 390009620
|
||
|
\par email: kahwei.tng\@digipen.edu
|
||
|
\date Oct 24, 2021
|
||
|
\brief Defines the properties of this managed .NET Assembly.
|
||
|
|
||
|
Note: This file is written in C++17/CLI.
|
||
|
|
||
|
Copyright (C) 2022 DigiPen Institute of Technology.
|
||
|
Reproduction or disclosure of this file or its contents without the prior written consent
|
||
|
of DigiPen Institute of Technology is prohibited.
|
||
|
*//*************************************************************************************/
|
||
|
#include "SHpch.h"
|
||
|
|
||
|
/*-------------------------------------------------------------------------------------*/
|
||
|
/* Using Declarations */
|
||
|
/*-------------------------------------------------------------------------------------*/
|
||
|
using namespace System;
|
||
|
using namespace System::Reflection;
|
||
|
using namespace System::Runtime::CompilerServices;
|
||
|
using namespace System::Runtime::InteropServices;
|
||
|
using namespace System::Security::Permissions;
|
||
|
|
||
|
/*-------------------------------------------------------------------------------------*/
|
||
|
/* Assembly Properties */
|
||
|
/*-------------------------------------------------------------------------------------*/
|
||
|
[assembly:AssemblyTitleAttribute(L"SHADE_Managed")];
|
||
|
[assembly:AssemblyDescriptionAttribute(L"")];
|
||
|
[assembly:AssemblyConfigurationAttribute(L"")];
|
||
|
[assembly:AssemblyCompanyAttribute(L"")];
|
||
|
[assembly:AssemblyProductAttribute(L"SHADE_Managed")];
|
||
|
[assembly:AssemblyCopyrightAttribute(L"Copyright (C) 2022 DigiPen Institute of Technology")];
|
||
|
[assembly:AssemblyTrademarkAttribute(L"")];
|
||
|
[assembly:AssemblyCultureAttribute(L"")];
|
||
|
|
||
|
[assembly:AssemblyVersionAttribute("1.0.*")];
|
||
|
|
||
|
[assembly:ComVisible(false)];
|