Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'msvc/mono.props')
-rw-r--r--msvc/mono.props5
1 files changed, 5 insertions, 0 deletions
diff --git a/msvc/mono.props b/msvc/mono.props
index bee40b1dda6..559401bcb3c 100644
--- a/msvc/mono.props
+++ b/msvc/mono.props
@@ -27,6 +27,8 @@
<MONO_COMPILE_AS_CPP>false</MONO_COMPILE_AS_CPP>
<!-- When true, mono binaries will link and include BTLS. When false, mono binaries will not link and include BTLS. -->
<MONO_ENABLE_BTLS>false</MONO_ENABLE_BTLS>
+ <!-- When true, mono binaries will be compiled for use as a .NET Core runtime. -->
+ <MONO_ENABLE_NETCORE>false</MONO_ENABLE_NETCORE>
</PropertyGroup>
<PropertyGroup Label="MonoDirectories">
<MonoSourceLocation Condition="'$(MonoSourceLocation)' == '' ">..</MonoSourceLocation>
@@ -112,6 +114,9 @@
<BuildMacro Include="MONO_ENABLE_BTLS">
<Value>$(MONO_ENABLE_BTLS)</Value>
</BuildMacro>
+ <BuildMacro Include="MONO_ENABLE_NETCORE">
+ <Value>$(MONO_ENABLE_NETCORE)</Value>
+ </BuildMacro>
</ItemGroup>
<PropertyGroup Label="MonoDefaultPreprocessorDefinitions">
<MONO_PREPROCESSOR_DEFINITIONS>__default_codegen__;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;HAVE_CONFIG_H;GC_NOT_DLL;WIN32_THREADS;WINVER=0x0601;_WIN32_WINNT=0x0601;_WIN32_IE=0x0501;_UNICODE;UNICODE;FD_SETSIZE=1024;NVALGRIND;$(MONO_ADDITIONAL_PREPROCESSOR_DEFINITIONS)</MONO_PREPROCESSOR_DEFINITIONS>