-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Closed
Labels
Milestone
Description
Repro
using System.Reflection;
Console.WriteLine("execution assembly: " + Assembly.GetExecutingAssembly());
if (Assembly.GetExecutingAssembly() == null)
{
Console.WriteLine("execution assembly is null");
}
else if (string.IsNullOrEmpty(Assembly.GetExecutingAssembly().ToString()))
{
Console.WriteLine("execution assembly to string is empty");
}
else
{
Console.WriteLine("execution assembly location: " + Assembly.GetExecutingAssembly().Location);
}
outputs
execution assembly:
execution assembly location is null
On wasm with corerun
This also fails in InterpreterTester runtime test.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
No status