-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Open
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.csWhen 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".
Reactions are currently unavailable
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