Turn linker resolution errors into warnings
This commit is contained in:
parent
2e93848265
commit
865929c434
|
@ -123,6 +123,7 @@ namespace Ooui.Wasm.Build.Tasks
|
||||||
context.CoreAction = AssemblyAction.CopyUsed;
|
context.CoreAction = AssemblyAction.CopyUsed;
|
||||||
context.UserAction = AssemblyAction.CopyUsed;
|
context.UserAction = AssemblyAction.CopyUsed;
|
||||||
context.OutputDirectory = managedPath;
|
context.OutputDirectory = managedPath;
|
||||||
|
context.IgnoreUnresolved = true;
|
||||||
|
|
||||||
pipeline.PrependStep (new ResolveFromAssemblyStep (asmPath, ResolveFromAssemblyStep.RootVisibility.Any));
|
pipeline.PrependStep (new ResolveFromAssemblyStep (asmPath, ResolveFromAssemblyStep.RootVisibility.Any));
|
||||||
|
|
||||||
|
@ -212,7 +213,7 @@ namespace Ooui.Wasm.Build.Tasks
|
||||||
p.AppendStep (new PreserveUsingAttributesStep (bclAssemblies.Values.Select (Path.GetFileNameWithoutExtension)));
|
p.AppendStep (new PreserveUsingAttributesStep (bclAssemblies.Values.Select (Path.GetFileNameWithoutExtension)));
|
||||||
p.AppendStep (new BlacklistStep ());
|
p.AppendStep (new BlacklistStep ());
|
||||||
p.AppendStep (new TypeMapStep ());
|
p.AppendStep (new TypeMapStep ());
|
||||||
p.AppendStep (new MarkStep ());
|
p.AppendStep (new MarkStepWithUnresolvedLogging { Log = Log });
|
||||||
p.AppendStep (new SweepStep ());
|
p.AppendStep (new SweepStep ());
|
||||||
p.AppendStep (new CleanStep ());
|
p.AppendStep (new CleanStep ());
|
||||||
p.AppendStep (new RegenerateGuidStep ());
|
p.AppendStep (new RegenerateGuidStep ());
|
||||||
|
@ -220,6 +221,21 @@ namespace Ooui.Wasm.Build.Tasks
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class MarkStepWithUnresolvedLogging : MarkStep
|
||||||
|
{
|
||||||
|
public TaskLoggingHelper Log;
|
||||||
|
|
||||||
|
protected override void HandleUnresolvedType (TypeReference reference)
|
||||||
|
{
|
||||||
|
Log.LogWarning ($"Failed to resolve type {reference}");
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void HandleUnresolvedMethod (MethodReference reference)
|
||||||
|
{
|
||||||
|
Log.LogWarning ($"Failed to resolve method {reference}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void ExtractClientJs ()
|
void ExtractClientJs ()
|
||||||
{
|
{
|
||||||
var oouiPath = refpaths.FirstOrDefault (x => Path.GetFileName (x).Equals ("Ooui.dll", StringComparison.InvariantCultureIgnoreCase));
|
var oouiPath = refpaths.FirstOrDefault (x => Path.GetFileName (x).Equals ("Ooui.dll", StringComparison.InvariantCultureIgnoreCase));
|
||||||
|
|
Loading…
Reference in New Issue