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
path: root/msvc
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2019-09-12 03:04:44 +0300
committerGitHub <noreply@github.com>2019-09-12 03:04:44 +0300
commit6a1ac97dc757f7004f0d6160c4a9c8c19c587ae0 (patch)
tree2a7d5244de74f0bd033f8cbd822e741c1205e11c /msvc
parenta67212d34c59a01811af4183d2790533b0293501 (diff)
[netcore] Create a separate version of threadpool.c for netcore with the domain support removed. (#16250)
* [netcore] Create a separate version of threadpool.c for netcore with the domain support removed. * Fix the windows build. * Fix the build.
Diffstat (limited to 'msvc')
-rw-r--r--msvc/libmonoruntime-common.targets1
-rw-r--r--msvc/libmonoruntime-common.targets.filters3
2 files changed, 4 insertions, 0 deletions
diff --git a/msvc/libmonoruntime-common.targets b/msvc/libmonoruntime-common.targets
index 13f9f5fed96..b1cc2481587 100644
--- a/msvc/libmonoruntime-common.targets
+++ b/msvc/libmonoruntime-common.targets
@@ -140,6 +140,7 @@
<ClCompile Include="$(MonoSourceLocation)\mono\metadata\threads.c" />
<ClInclude Include="$(MonoSourceLocation)\mono\metadata\threads-types.h" />
<ClCompile Include="$(MonoSourceLocation)\mono\metadata\threadpool.c" />
+ <ClCompile Include="$(MonoSourceLocation)\mono\metadata\threadpool-netcore.c" />
<ClInclude Include="$(MonoSourceLocation)\mono\metadata\threadpool.h" />
<ClCompile Include="$(MonoSourceLocation)\mono\metadata\threadpool-worker-default.c" />
<ClInclude Include="$(MonoSourceLocation)\mono\metadata\threadpool-worker.h" />
diff --git a/msvc/libmonoruntime-common.targets.filters b/msvc/libmonoruntime-common.targets.filters
index dee7e51c2a1..3457886110e 100644
--- a/msvc/libmonoruntime-common.targets.filters
+++ b/msvc/libmonoruntime-common.targets.filters
@@ -403,6 +403,9 @@
<ClCompile Include="$(MonoSourceLocation)\mono\metadata\threadpool.c">
<Filter>Source Files$(MonoRuntimeFilterSubFolder)\common</Filter>
</ClCompile>
+ <ClCompile Include="$(MonoSourceLocation)\mono\metadata\threadpool-netcore.c">
+ <Filter>Source Files$(MonoRuntimeFilterSubFolder)\common</Filter>
+ </ClCompile>
<ClInclude Include="$(MonoSourceLocation)\mono\metadata\threadpool.h">
<Filter>Header Files$(MonoRuntimeFilterSubFolder)\common</Filter>
</ClInclude>