Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using Mono.Cecil.Mdb;
using Mono.Tuner;
using Mono.Cecil;
using Mono.Cecil.Cil;
using MonoTouch.Tuner;

namespace MonoDroid.Tuner
Expand Down Expand Up @@ -45,8 +46,8 @@ static LinkContext CreateLinkContext (LinkerOptions options, Pipeline pipeline)
context.LogInternalExceptions = Xamarin.Android.Tasks.MonoAndroidHelper.LogInternalExceptions;
context.CoreAction = AssemblyAction.Link;
context.LinkSymbols = true;
context.SymbolReaderProvider = new MdbReaderProvider ();
context.SymbolWriterProvider = new MdbWriterProvider ();
context.SymbolReaderProvider = new DefaultSymbolReaderProvider (true);
context.SymbolWriterProvider = new DefaultSymbolWriterProvider ();
context.OutputDirectory = options.OutputDirectory;
return context;
}
Expand Down