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
AgeCommit message (Collapse)Author
2011-03-08[xbuild] Implement FileLogger . Fix #676650 .Ankit Jain
* FileLogger.cs: Implement Add corresponding command line args for file loggers. Update man page.
2011-03-03[xbuild] Update man page with info about FrameworkList.xmlAnkit Jain
2011-02-28[xbuild] Add support for multi-targeting arbitrary frameworks.Ankit Jain
ToolsVersion 4.0 supports targeting arbitrary frameworks defined by FrameworkList.xml files and referenced by $(TargetFrameworkMoniker), which is of the format: Identifier,Version=<version>[,Profile=<profile>] built as: $(TargetFrameworkIdentifier),Version=$(TargetFrameworkVersion)[,Profile=$(TargetFrameworkProfile)] eg. '.NETFramework,Version=v4.0' . Frameworks are searched for in (order): 1. Paths specified in the environment variable $XBUILD_FRAMEWORK_FOLDERS_PATH 2. /Library/Frameworks/Mono.framework/External/xbuild-frameworks on Mac OSX. 3. MSBuild property $(TargetFrameworkRoot) 4. $prefix/lib/mono/xbuild-frameworks (default location) .NET frameworks 2.0/3.0/3.5/4.0 have corresponding FrameworkList.xml files now, which allows projects to target them. Custom frameworks like MonoDroid can install suitable FrameworkList.xml files, and projects can target them using the correct $(TargetFrameworkIdentifier) and $(TargetFrameworkVersion). Update man page.
2011-02-22[xbuild] Use the env var $MSBuildExtensionsPath before trying other paths.Ankit Jain
Change the order of the "search paths", so that the environment variable can always override it. Update the man page to reflect the change.
2011-01-11[xbuild] Update man page, new search paths for extensions and .pc files.Ankit Jain
2010-09-02[xbuild] Update man page to add "/tv:" option.Ankit Jain
Add option to specify toolsversion from the command line, to the man page.
2010-08-19[xbuild] Support extra paths for MSBuildExtensionsPath32/64 .Ankit Jain
Support extra search paths via env variables for MSBuildExtensionsPath32/64 also. Update man page.
2010-08-18[xbuild] Update man page.Ankit Jain
2010-08-18[xbuild] Add env var to dump details of reference resolution.Ankit Jain
If xbuild is unable to resolve a reference, then it dumps details of why it failed. This adds a env var XBUILD_LOG_REFERENCE_RESOLVER, which if set, logs those details of why a particular search path was used to resolve the reference. Update the man page also.
2009-10-11* xbuild.1: Add info about env var XBUILD_COLORS.Ankit Jain
svn path=/trunk/mono/; revision=143906
2009-09-24* xbuild.1: Add info about env var XBUILD_EMIT_SOLUTION.Ankit Jain
svn path=/trunk/mono/; revision=142597
2009-08-21* Makefile.am (man_MANS): Add xbuild.1Ankit Jain
* xbuild.1: New. svn path=/trunk/mono/; revision=140383