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 @@ -65,13 +65,14 @@ public partial class GenerateUnoNativeAssetsTask_v0
var excludedAssemblies = MixedModeExcludedAssembly?.ToDictionary(i => i.ItemSpec, i => i.ItemSpec)
?? new Dictionary<string, string>();

// Dump the original profile for debugging when requested, regardless of exclusion settings
TryDumpProfileMethods(profile, "AOTProfileDump.Original.txt");

if (excludedMethodsList.Any() || excludedAssemblies.Any())
{
// LoadIntoBufferAsync uses exception filtering
excludedMethodsList.AddRange(DefaultAOTProfileExcludedMethods);

TryDumpProfileMethods(profile, "AOTProfileDump.Original.txt");

var excludedMethods = excludedMethodsList.Select(e => new Regex(e)).ToList();

var q = from m in profile.Methods
Expand Down
Loading