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:
authorlateralusX <lateralusx.github@gmail.com>2017-09-28 16:43:21 +0300
committerlateralusX <lateralusx.github@gmail.com>2017-10-03 10:20:11 +0300
commit0f3ca07b429a800982581f587d1af3b07d66aadd (patch)
tree51712eee58b4d4f4bb99877a96caf5ad22997160 /msvc
parent8ae01a69f2020a99a8a22eee262aad839536c364 (diff)
Update msvc README file.
Diffstat (limited to 'msvc')
-rwxr-xr-xmsvc/README21
1 files changed, 13 insertions, 8 deletions
diff --git a/msvc/README b/msvc/README
index 1537d919212..7c6541e0282 100755
--- a/msvc/README
+++ b/msvc/README
@@ -11,19 +11,24 @@ BUILDING
From this directory type:
- msbuild.exe mono.sln /p:Configuration=Debug_eglib
+ msbuild.exe mono.sln /p:Configuration=Debug /p:Platform=x64
msbuild must be in your path, it comes with the .NET Framework.
MAINTENANCE
- When new exported API calls are added to the runtime, issue the
- command:
+ Source files added to the different project .target files matches project makefile structure.
+ NOTE, all sources added to makefiles should also be added to corresponding targets files for consistency.
+ Files that should not be build on Windows should be excluded using this configuration:
- make update-def
+ <ClCompile Include="$(MonoSourceLocation)\mono\mini\tramp-wasm.c">
+ <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
+ <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
+ <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
+ <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
+ </ClCompile>
- in this directory and commit the resulting mono.def file.
-
- This must happen on a Linux system, because we get the list of
- the exported symbols from the generated shared library.
+ All header files added to makefiles should be included in the different targets files for consistency.
+ Each target file has a corresponding filter file, files added to target files should also be added to the corresponding
+ filter file.