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:
authorlateralusX <lateralusx.github@gmail.com>2019-05-09 19:33:00 +0300
committerlateralusX <lateralusx.github@gmail.com>2019-05-09 19:33:00 +0300
commit2a703e72ff9001c9c872f1629ce0842e061a1c8a (patch)
treebde2f616360779c763fe8d53c2991bab3f979d43 /msvc/mono-profiler-log.vcxproj.filters
parent8928ed6fd89d03c26d3428cf390c1f5384e8686f (diff)
Add log profiler support to Mono MSVC build.
Several fixes to the log profiler in order to work on Windows. * Add new dynamic library project to build log profiler on Windows MSVC. * Fix dependecy between log profiler and Mono. * Rewrite command pipe logic on Windows since it's not supported to select on both sockets and pipes. * Several additional socket fixes needed for log profiler to work on Windows.
Diffstat (limited to 'msvc/mono-profiler-log.vcxproj.filters')
-rw-r--r--msvc/mono-profiler-log.vcxproj.filters27
1 files changed, 27 insertions, 0 deletions
diff --git a/msvc/mono-profiler-log.vcxproj.filters b/msvc/mono-profiler-log.vcxproj.filters
new file mode 100644
index 00000000000..662a0050d36
--- /dev/null
+++ b/msvc/mono-profiler-log.vcxproj.filters
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <Filter Include="Header Files">
+ <UniqueIdentifier>{BD730379-6140-4E93-8B3B-9DD624E75542}</UniqueIdentifier>
+ </Filter>
+ <Filter Include="Resource Files">
+ <UniqueIdentifier>{118A98DC-B9FE-4B14-B20E-0DFBFBE084BA}</UniqueIdentifier>
+ </Filter>
+ <Filter Include="Source Files">
+ <UniqueIdentifier>{84C17491-B180-444E-BFF3-1846DE426B13}</UniqueIdentifier>
+ </Filter>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="..\mono\profiler\log.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\mono\profiler\log-args.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ </ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="..\mono\profiler\log.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ </ItemGroup>
+</Project> \ No newline at end of file