This file contains hidden or 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
/Users/mkrueger/work/md-addins/MonoDevelop.IPhone/MonoDevelop.IPhone.sln (default targets) -> | |
(Build target) -> | |
/Users/mkrueger/work/md-addins/MonoDevelop.IPhone/MonoDevelop.IPhone/MonoDevelop.IPhone.csproj (default targets) -> | |
/Library/Frameworks/Mono.framework/Versions/2.10.9/lib/mono/4.0/Microsoft.CSharp.targets (CoreCompile target) -> | |
Project/IPhoneBuildExtension.cs(2246,63): error CS1502: The best overloaded method match for `MonoDevelop.MacDev.PlistEditor.PDictionary.Add(string, MonoDevelop.MacDev.PlistEditor.PObject)' has some invalid arguments | |
Project/IPhoneBuildExtension.cs(2246,63): error CS1503: Argument `#2' cannot convert `object' expression to type `MonoDevelop.MacDev.PlistEditor.PObject' | |
Project/IPhoneBuildExtension.cs(2248,63): error CS1502: The best overloaded method match for `MonoDevelop.MacDev.PlistEditor.PDictionary.Add(string, MonoDevelop.MacDev.PlistEditor.PObject)' has some invalid arguments | |
Project/IPhoneBuildExtension.cs(2248,63): error CS1503: Argument `#2' cannot convert `obje |
This file contains hidden or 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
$ make | |
Making all in external | |
make -C monomac/src | |
make: *** monomac/src: No such file or directory. Stop. | |
make[2]: *** [all] Error 2 | |
make[1]: *** [all-recursive] Error 1 | |
make: *** [all-recursive] Error 1 |
This file contains hidden or 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
System.NullReferenceException: Object reference not set to an instance of an | |
object | |
at | |
ICSharpCode.NRefactory.CSharp.Refactoring.TypeSystemAstBuilder.ConvertConstructor | |
(IMethod ctor) [0x00013] in | |
/Users/builder/data/lanes/monodevelop-lion-monodevelop-3.0.4-branch/0cf43d76/source/monodevelop/main/contrib/ICSharpCode.NRefactory.CSharp/Refactoring/TypeSystemAstBuilder.cs:651 | |
at | |
ICSharpCode.NRefactory.CSharp.Refactoring.TypeSystemAstBuilder.ConvertEntity | |
(IEntity entity) [0x000a4] in | |
/Users/builder/data/lanes/monodevelop-lion-monodevelop-3.0.4-branch/0cf43d76/source/monodevelop/main/contrib/ICSharpCode.NRefactory.CSharp/Refactoring/TypeSystemAstBuilder.cs:429 |
This file contains hidden or 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
class Program | |
{ | |
void TestCase () | |
{ | |
string o = "Hello World !"; | |
if (false) { | |
} else if (!o.ToString ().Contains ("Foo")) { |
This file contains hidden or 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
string GetShortType(IType type, CSharpResolver state) | |
{ | |
var builder = new TypeSystemAstBuilder(state); | |
var dt = state.CurrentTypeDefinition; | |
var declaring = type.DeclaringType != null ? type.DeclaringType.GetDefinition() : null; | |
if (declaring != null) { | |
while (dt != null) { | |
if (dt.Equals(declaring)) { | |
builder.AlwaysUseShortTypeNames = true; | |
break; |
This file contains hidden or 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
public class L1 | |
{ | |
enum Foo { A } | |
class Test { | |
enum Foo { B } | |
public Test () | |
{ | |
L1.Foo f = |
This file contains hidden or 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
namespace N0 | |
{ | |
class L0 | |
{ | |
public class L1 | |
{ | |
enum Foo { A } | |
class Test { | |
enum Foo { B } |
This file contains hidden or 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
using System; | |
using System.Collections; | |
class MyTest | |
{ | |
static void Test (int a, ConsoleKey test) | |
{ | |
} | |
public static void Main (string[] args) |
This file contains hidden or 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
using System; | |
class MyTest | |
{ | |
public static void Main (string[] args) | |
{ | |
try { | |
} catch (Exception) | |
} | |
} |
This file contains hidden or 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
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ExecutionEngineException: SIGILL | |
at (wrapper managed-to-native) Gtk.Container:gtk_container_remove (intptr,intptr) | |
at Gtk.Container.Remove (Gtk.Widget widget) [0x00000] in /Users/mkrueger/work/a/a/profiles/monodevelop-mac-dev/build-root/gtk-sharp-2-12-branch/_build/mono-gtk-sharp-b078aac/gtk/generated/Container.cs:303 | |
at MonoDevelop.Components.Docking.DockFrame.AutoHide (MonoDevelop.Components.Docking.DockItem item, MonoDevelop.Components.Docking.AutoHideBox widget, Boolean animate) [0x00089] in /Users/mkrueger/work/a/monodevelop/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockFrame.cs:876 | |
at MonoDevelop.Components.Docking.DockFrame+<AutoHide>c__AnonStorey7F.<>m__D9 (System.Object , System.EventArgs ) [0x00010] in /Users/mkrueger/work/a/monodevelop/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockFrame.cs:862 | |
at (wrapper managed-to-native) System.Refl |