You've already forked linux-packaging-mono
acceptance-tests
data
docs
external
Newtonsoft.Json
api-doc-tools
external
mdoc
mdoc.Test.Cplusplus
AssemblyInfo.cpp
ReadMe.txt
Stdafx.cpp
Stdafx.h
TestClass.cpp
TestClass.h
mdoc.Test.Cplusplus.cpp
mdoc.Test.Cplusplus.h
mdoc.Test.Cplusplus.vcxproj
mdoc.Test.Cplusplus.vcxproj.filters
resource.h
monodoc
tools
.gitignore
.gitmodules
CONTRIBUTING.md
LICENSE.md
Makefile
README.md
apidoctools.sln
api-snapshot
aspnetwebstack
bdwgc
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm-project
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
llvm
m4
man
mcs
mono
msvc
netcore
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
38 lines
1.2 KiB
C++
38 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;
|
||
|
|
||
|
//
|
||
|
// 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"mdocTestCplusplus")];
|
||
|
[assembly:AssemblyDescriptionAttribute(L"")];
|
||
|
[assembly:AssemblyConfigurationAttribute(L"")];
|
||
|
[assembly:AssemblyCompanyAttribute(L"EPAM Systems")];
|
||
|
[assembly:AssemblyProductAttribute(L"mdocTestCplusplus")];
|
||
|
[assembly:AssemblyCopyrightAttribute(L"Copyright (c) EPAM Systems 2017")];
|
||
|
[assembly:AssemblyTrademarkAttribute(L"")];
|
||
|
[assembly:AssemblyCultureAttribute(L"")];
|
||
|
|
||
|
//
|
||
|
// Version information for an assembly consists of the following four values:
|
||
|
//
|
||
|
// Major Version
|
||
|
// Minor Version
|
||
|
// Build Number
|
||
|
// Revision
|
||
|
//
|
||
|
// You can specify all the value or you can default the Revision and Build Numbers
|
||
|
// by using the '*' as shown below:
|
||
|
|
||
|
[assembly:AssemblyVersionAttribute("1.0.*")];
|
||
|
|
||
|
[assembly:ComVisible(false)];
|
||
|
|
||
|
[assembly:CLSCompliantAttribute(true)];
|