File: README

package info (click to toggle)
mono 5.18.0.240%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,253,216 kB
  • sloc: cs: 10,925,936; xml: 2,804,987; ansic: 643,970; cpp: 120,384; perl: 59,272; asm: 21,383; sh: 20,162; makefile: 18,157; python: 4,715; pascal: 924; sql: 859; sed: 16; php: 1
file content (38 lines) | stat: -rwxr-xr-x 1,309 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
README					Last updated: 2007-03-09


INTRODUCTION

	This directory (msvc) serves as a central location for all
	things needed to build the mono runtime using Microsoft Visual
	Studio.

BUILDING

	From this directory type:

	     msbuild.exe mono.sln /p:Configuration=Debug /p:Platform=x64

	msbuild must be in your path, it comes with the .NET Framework.

MAINTENANCE

	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:

	<ClCompile Include="$(MonoSourceLocation)\mono\mini\tramp-wasm.c">
		<ExcludedFromBuild>$(ExcludeFromWindowsBuild)</ExcludedFromBuild>
	</ClCompile>

	and at the begning of the target file have a property set when to exclude files. This example will always
	exclude the file, but could be condtional if needed:

	<PropertyGroup>
		<ExcludeFromWindowsBuild>true</ExcludeFromWindowsBuild>
	</PropertyGroup>

	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.