Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-04Need to explicitly set the AssemblyVersion otherwise it defaults to ↵Wes Haggard
999.999.999.999 which breaks some things like compat when there are direct references to these. [tfs-changeset: 1560977]
2016-01-04Clean up the new CoreRT project files as they had a bunch of redundant ↵Wes Haggard
properties that weren't correct. Also fixed a number of build warnings. [tfs-changeset: 1560909]
2015-12-30Include the key in the "duplicate key" exception messageJan Kotas
Port dotnet/coreclr#1452 to CoreRT. Also deleted redundant resource files.
2015-12-24Fix filepath casingJan Kotas
2015-12-23While porting the library I ended up updating quite a few projects to make ↵Alex Ghiondea
sure they continue to work. There were a couple of changes to the build system that are included in this change: - The location of the tool to restore the packages is set to use dnu for now. - When restoring packages for the internal build we need to actually pass the right parameters to the build of the depproj There were a couple of places where we had some issues that I fixed while I was doing the port: - The compiler gave error messages about some method out parameters not being assigned. - There was one missing 'unsafe' modifier on an interop file - I had to pull in a 'debug' method temporarily in the ret build. This was needed because the debug build of CoreLib currently does not build with the 'DEBUG' define. [tfs-changeset: 1559864]