-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Labels
Area-run-fileItems related to the "dotnet run <file>" effortItems related to the "dotnet run <file>" effortuntriagedRequest triage from a team memberRequest triage from a team member
Milestone
Description
Consider the following directory layout:
- app\
- file.cs
- util.cs
When executing dotnet run file.cs
the code inside file.cs
should be able to use types / members in util.cs
. Specifically:
// file.cs
Console.WriteLine(Util.GetMessage());
// util.cs
static class Util
{
public static string GetMessage() => "Hello World";
}
When executing dotnet run file.cs
this should execute and produce the output "Hello World"
.
304NotModified, WeihanLi, lakani, r-k-b and jpgarza93
Metadata
Metadata
Assignees
Labels
Area-run-fileItems related to the "dotnet run <file>" effortItems related to the "dotnet run <file>" effortuntriagedRequest triage from a team memberRequest triage from a team member