-
Notifications
You must be signed in to change notification settings - Fork 516
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [msbuild] Re-added wildcard (*) expandsion for application-identifier in Entitlements.plist (#2186) Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=57119 * Bump mono (#2213) * Framework tests were still binding non-linked Simple class which errors now (#2216) (#2218) - Improve Makefile to rebuild when projects build with errors * Bump mono to get cecil fix for bug #56808. (#2222) https://bugzilla.xamarin.com/show_bug.cgi?id=56808 * [msbuild] Use @(ReferencePath) instead of @(ResolvedFiles) (#2188) (#2214) This allows things to work on both xbuild and msbuild. In xbuild, both lists are exactly the same and on msbuild, only @(ReferencePath) exists. Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=55147 * NSActivityOptions.IdleDisplaySleepDisabled had wrong value (#2232) (#2239) This was due to an integer overflow. The original value was based on Int32 1 << 40 == 256 The correct value should be based on a UInt64. 1UL << 40 == 1099511627776 * [tests] Fix bug 57699 - [iOS]InternalsTest failure (Linkall) tests on device (#2243) Strip native debugging symbols should not be checked for debug builds * Bump mono to get fix for bug #57780. https://bugzilla.xamarin.com/show_bug.cgi?id=57780
- Loading branch information
Showing
6 changed files
with
35 additions
and
15 deletions.
There are no files selected for viewing
Submodule mono
updated
24 files
+1 −1 | external/cecil | |
+1 −1 | external/roslyn-binaries | |
+3 −1 | mcs/class/corlib/System.Reflection.Emit/FieldBuilder.cs | |
+2 −2 | mcs/class/corlib/System/TimeZoneInfo.cs | |
+101 −33 | mcs/class/corlib/Test/System.Reflection.Emit/TypeBuilderTest.cs | |
+1 −1 | mcs/tools/mkbundle/mkbundle.cs | |
+18 −5 | mono/metadata/assembly.c | |
+1 −1 | mono/metadata/icall.c | |
+4 −0 | mono/metadata/marshal.c | |
+2 −0 | mono/metadata/w32handle.c | |
+9 −1 | mono/mini/aot-compiler.c | |
+2 −1 | mono/mini/aot-runtime.c | |
+21 −0 | mono/mini/generics.cs | |
+24 −0 | mono/mini/gshared.cs | |
+24 −5 | mono/mini/method-to-ir.c | |
+4 −7 | mono/mini/mini-exceptions.c | |
+4 −1 | mono/mini/mini-runtime.c | |
+6 −2 | mono/mini/mini.c | |
+5 −0 | mono/mini/patch-info.h | |
+12 −2 | mono/tests/testing_gac/Makefile.am | |
+23 −0 | mono/tests/testing_gac/app-both.cs | |
+4 −0 | mono/tests/testing_gac/v1/gactestlib.cs | |
+4 −0 | mono/tests/testing_gac/v2/gactestlib.cs | |
+1 −1 | mono/utils/mono-os-mutex.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters