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
AgeCommit message (Collapse)Author
2014-10-09[runtime] Use WinXP SP2 as the minimum version on the msvc builds too.Zoltan Varga
2014-09-16[runtime] Disable VS warnings C4273 (inconsistent dll linkage), and C4005 ↵Zoltan Varga
(macro redefinition). The former occurs becase we mark exported function declarations using MONO_API, but not the definitions. The latter occurs because we define _WINSOCKAPI_.
2014-09-13[runtime] Fix the windows build. Define _WINSOCKAPI_ to fix the compilation ↵Zoltan Varga
problems when windows.h is included before winsock2.h: http://stackoverflow.com/questions/1372480/c-redefinition-header-files.
2014-08-26Resolve build issues on Windows.Alexis Christoforides
2014-08-25[msvc] Fix release 64bits builds.Rodrigo Kumpera
2014-07-13Fixed libmono MSVC compilationFilip Lundgren
2014-07-13Added new mono_domain_set_config function; used to fix ↵i59
ConfigurationErrorsException in #10468. This change is released under the MIT license. https://bugzilla.xamarin.com/show_bug.cgi?id=10468
2014-06-22libmono.vcxproj: Link to libmonoruntimesgen.lib in the Release_SGen modei59
Previously attempted to link to the libmonoruntime library outputted by the boehm configuration
2014-06-22Added file-mmap-windows.c to libmonoruntime.vcxproji59
2014-06-04[win64] Windows64 MSVC compiler dropped support for inline assembly. Move ↵Rodrigo Kumpera
that code into a .asm file.
2014-06-04[VS] Fix the solutions to work with win64. Update the file list to include ↵Rodrigo Kumpera
some new sgen files.
2014-05-25[build] MSBuild setup: Add support for -keyfile and -delaysign, thanks to ↵Miguel de Icaza
Marek Safar for the pointer
2014-05-24[msvc/scripts] Update order.xml file with Makefile changes, update generatorMiguel de Icaza
2014-05-23Update order.xmlMiguel de Icaza
2014-05-23[build/msbuild] Tool resolves assemblies based on exact match, not random-lastMiguel de Icaza
2014-05-21[vsbuild] Update Makefiles to not generate the VS metadata for the 'basic' ↵Miguel de Icaza
profile
2014-05-20[build] Record extra library builds for our Visual Studio input filesMiguel de Icaza
Added local targets (csproj-local) to all the assemblies that have staged builds to dump their build information for the underlying dependencies. This information is needed to create the new Visual Studio csproj files. This commit also updates the collected build metadata from running: make update-csproj make package-inputs As described in msvc/scripts/README
2014-04-28genproj: add support for Alias in project referencesMiguel de Icaza
2014-04-28[genproj] For Path.GetFullPath to work, we must use convert Windows paths to ↵Miguel de Icaza
Unix paths
2014-04-19[genproj] Steps towards making pre-build scripts cross platform; Lots more ↵Miguel de Icaza
build now
2014-04-19Refreshed the CSProj files to use the new output build directoryMiguel de Icaza
2014-04-19[genproj] Set the output directory to the Mono one, not an intermediary oneMiguel de Icaza
2014-04-19Update order.xmlMiguel de Icaza
2014-04-18[genproj] Some hygiene changes to genproj, to be able to even digest thisMiguel de Icaza
2014-04-16Update the configuration file for project buildsMiguel de Icaza
2014-04-16[VS] Change the tools version back to v110 so it works with VS 2012.Rodrigo Kumpera
2014-04-16[windows] Remove sdb symbol from mono.def. Fix the build.Rodrigo Kumpera
2014-04-08VTune profiler: update to VTune Amplifier 2013.Virgile Bello
2014-04-08MSVC: In libmono.vcxproj, mini-native-types.c was included as header instead ↵Virgile Bello
of source file.
2014-03-16[runtime] Fix the msvc build.Zoltan Varga
2014-02-20Add msvc/mono.props to EXTRA_DIST so make dist will find it.Kelly
2014-01-24remove private msbuild hacking project files.Atsushi Eno
2014-01-07update .sln too.Atsushi Eno
2014-01-07Revert "Remove private sln/csproj files."Atsushi Eno
I need these projects while I'm hacking MSBuild. This reverts commit f188c158d4643804e1fbece996fe535344fe9450.
2013-12-13Merge pull request #837 from madewokherd/update-defZoltan Varga
Update msvc .def files
2013-12-13Update msvc .def files.Vincent Povirk
This commit licensed as MIT/X11.
2013-12-13Exclude some functions that aren't on win32.Vincent Povirk
This commit licensed as MIT/X11.
2013-12-13Update create-windef.pl to account for sgen/boehm compiles.Vincent Povirk
This commit licensed as MIT/X11.
2013-12-12Update file listinigs in msvc projects.Vincent Povirk
2013-12-03Remove private sln/csproj files.Atsushi Eno
2013-12-03Add hacking MSBuild solution for MSBuild libraries.Atsushi Eno
2013-10-21Add mono_gc_wbarrier_generic_store_atomic () function.Alex Rønne Petersen
This is used in place of mono_gc_wbarrier_generic_store () when we need the store to be atomic with release semantics.
2013-10-18Fix MSVC build.Jonathan Lima
2013-09-20[Install] Add Compat.browser files for net_4_0 and net_4_5Etienne CHAMPETIER
Without that referencing browser 'Default' (parentID="Default") in a .browser file make the app throw exceptions here mcs/class/System.Web/System.Web.Configuration_2.0/nBrowser/Build.cs#L206 Signed-off-by: Etienne CHAMPETIER <etienne.champetier@fiducial.net>
2013-08-13[msvc] Avoid linking against libgc in the sgen configurations.Zoltan Varga
2013-08-12Fixed MSVC build, ported to Visual Studio 2012.Jonathan Lima
From: https://github.com/mono/mono/pull/724
2013-07-26Add a mono_binary_search () function.Alex Rønne Petersen
This is a replacement for bsearch () because some platforms have bogus asserts in their implementations.
2013-07-26Update msvc project files with newly added sgen files.Zoltan Varga
2013-07-21Added mono-mutex.h & c to libmonoutils.vcxproji59
Signed-off-by: Alex Rønne Petersen <alexrp@xamarin.com>
2013-07-18Make mono_hwcap_init () only perform initialization if not already done.Alex Rønne Petersen
This moves arch-specific initialization to mono_hwcap_arch_init ().