25 lines
953 B
C++
25 lines
953 B
C++
#include "stdafx.h"
|
|
#include "..\Configuration\CommonAssemblyInfo.h"
|
|
|
|
using namespace System;
|
|
using namespace System::Reflection;
|
|
using namespace System::Runtime::CompilerServices;
|
|
using namespace System::Runtime::InteropServices;
|
|
using namespace System::Security::Permissions;
|
|
|
|
//
|
|
// General Information about an assembly is controlled through the following
|
|
// set of attributes. Change these attribute values to modify the information
|
|
// associated with an assembly.
|
|
//
|
|
[assembly:AssemblyTitleAttribute(L"DSInternals Replication Interop Library")];
|
|
// Note: Do not forget to change the version in version.rc files.
|
|
[assembly:AssemblyVersionAttribute("3.0")];
|
|
[assembly:AssemblyDescriptionAttribute(L"")];
|
|
[assembly:AssemblyConfigurationAttribute(L"")];
|
|
[assembly:AssemblyCompanyAttribute(L"")];
|
|
[assembly:AssemblyTrademarkAttribute(L"")];
|
|
[assembly:AssemblyCultureAttribute(L"")];
|
|
|
|
[assembly:ComVisible(false)];
|
|
[assembly:CLSCompliantAttribute(true)]; |