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
2017-11-26[msvc] Update csproj files (#6100)monojenkins
2017-08-07[msvc] Update csproj filesAlexander Köplinger
2017-08-07[bcl] Specify the name of the key file on the command line instead of using ↵Zoltan Varga
the AssemblyKeyFile attribute for consistency and to make it easier to do path name manipulation on the file name. (#5316)
2017-05-15[msvc] Update csproj files (#4846)monojenkins
2017-05-09[bcl] Cleanup outdated csproj/sln files (#4806)Alexander Köplinger
They were either replaced by the autogenerated csproj files or just completely broken for years.
2017-04-18[msvc] Update csproj files (#4711)monojenkins
2017-01-10[msvc] Update csproj files (#4221)monojenkins
2016-11-14[msvc] Update .csproj filesAlexander Köplinger
2016-10-17[build] Regenerate .csproj filesAlexander Köplinger
Note: DISABLE_CAS_USE was removed in ed989a8e9e5c170b6d19edc60bb80e8a4e6d5cc0
2016-06-14WIP [library.make] Make resource usage declarative in the class libraries ↵Miguel de Icaza
(#3159) [library.make] Make resource usage declarative in the class libraries
2016-05-31[genproj] Getting closer to a full buildMiguel de Icaza
* Add TODO list * Use -useSourcePath when building resources, so we do not need to add the explicit extra path * More updates, now battling resource generation across the board * Use newlines in the Unix commands to avoid generating things like cs-parser.cs^M
2016-05-27[genproj] Do not use \r on the Unix parts of the build hook, add RabbitMQ hooksMiguel de Icaza
2016-05-25[genproj] Handle resources properly, add helper scripts to bootstrapMiguel de Icaza
2016-05-19[msbuild projects] Use newlines without a carriage return for Unix targets ↵Miguel de Icaza
to appease MS msbuild
2016-05-19[genproj] Use an explicit IntermediateOutputPath to prevent rebuilds on ↵Miguel de Icaza
cyclic assemblies
2016-05-18genproj: Improve handling of executables and projects with build dependenciesMiguel de Icaza
2016-05-18[genproj] Updates to project generator and csproj files.Miguel de Icaza
* Adds support for a handful of new command line arguments that we now use in the build. * Always attempts to match to a project name, to get the proper project dependency. * Update to support .exe and .dll in the generation. * Remove warnings and some dead code * Update the resulting csproj files based on running: make update-csproj make package-inputs mono genproj.exe
2015-12-02[csproj] Remove *net_4_5.csproj files from the class libsAlexander Köplinger
We only use the net_4_x profile now so those csproj's don't make sense anymore.
2015-09-14[build] Generated up-to-date net_4_x MSBuild projects.João Matos
2015-07-15[build] Switch to 4.6 profile as default profileMarek Safar
2015-06-25Add a monotouch_watch profile.Rolf Bjarne Kvinge
2015-06-18Create xammac_net_4_5 profile for XM 4.5 Unified to remove references to ↵Chris Hamons
unshippable assmblies
2015-03-17[genproj] Re-generated the class library projects.João Matos
2015-03-03Rename Managed.Windows.Forms to System.Windows.Forms for consistency.Zoltan Varga
2015-03-02[build] Add the assemblies in LIB_REFS to LIB_MCS_FLAGS automatically to ↵Zoltan Varga
reduce duplication.
2015-02-27[build] Add dependency information for class libraries using a LIB_REFS ↵Zoltan Varga
variable which lists the assemblies a given assembly depends on to build.
2015-01-14[bcl] Remove NET_4_0 defines from class libs.Zoltan Varga
2015-01-13[bcl] Remove NET_2_0 defines from the class libs. This has been done using: ↵Zoltan Varga
unifdef -t -DNET_2_0 -o <filename> <filename>.
2015-01-13[build] Updated csproj files.Marcos Henrich
2014-12-04Remove 4.0 profileMarek Safar
2014-11-24Remove 2.0 profile csproj filesMarek Safar
2014-09-17Fix mobile and mobile_static profilesMichael Hutchinson
And bring them to parity with monodroid and monotouch
2014-05-25[build] the csproj files can now do a full class libraries buildMiguel de Icaza
2014-05-24[build] Fresh new csproj files based on the updated build system.Miguel de Icaza
2014-04-19Refreshed the CSProj files to use the new output build directoryMiguel de Icaza
2014-01-16profiles: define xammac (Xamarin.Mac) profileAaron Bockover
Based on the Mobile profile and modeled after the MonoDroid profile.
2013-07-31Class libraries: introduce mobile_static profile, for MonoTouch-like static ↵Miguel de Icaza
builds, but not limited to iOS (WinStore, Kumpera did the work).
2013-07-02Update csproj filesMarek Safar
2013-02-21Update 4.5 bcl solution filesMarek Safar
2013-02-07Update csproj filesMarek Safar
2013-01-10[bcl] Build System.Data.Services.Client monodroid profile in the same way we ↵Rodrigo Kumpera
do the monotouch one.
2012-12-04Enable 4.x api for MonoTouchMarek Safar
2012-06-26Fix System.Core reference in VS projectsMarek Safar
2012-06-07Clean up assembly attributesMarek Safar
2012-04-05Update csproj filesMarek Safar
2012-03-23Ignore more files.Rolf Bjarne Kvinge
2012-02-29[System.Data.Services.Client] Compile in string resources.Jonathan Pryor
System.Data.Services.Client uses System.Resources for localization purposes (even though only one language is provided...). Consequently, to get _useful_ strings (read: error messages) out of System.Data.Services.Client, System.Resources needs to be able to find them, such that the following works: $ csharp -r:System.Data.Services.Client; Mono C# Shell, type "help;" for help Enter statements below. csharp> using System.Resources; csharp> using System.Data.Services.Client; csharp> var a = typeof(SendingRequestEventArgs).Assembly; csharp> var r = new ResourceManager("System.Data.Services.Client", a); csharp> r.GetString("AtomMaterializer_PropertyNotExpectedEntry"); If `r.GetString()` fails, it'll throw an exception instead of returning a useful string, which is bad. Unfortunately, it failed. To fix this, we use `resgen` to compile Client/System.Data.Services.Client.txt into a .resources file and compile the .resources file into the assembly with `gmcs -resource:`, which allows the above `csharp` fragment to work w/o throwing (and thus allows OData users to get useful, meaningful error messages).
2012-02-10Add VS project files for test projectMarek Safar
2012-02-09Update class library csproj filesMarek Safar
2011-10-07Mark System.Data.Services.Client CLS-compliantMarek Safar