WeihanLi / dotnet-exec

dotnet execute with custom entry point, another dotnet run without project file
Apache License 2.0
43 stars 4 forks source link

multi source files enhancements #17

Closed WeihanLi closed 4 months ago

WeihanLi commented 4 months ago

currently, we could support it via --addition option, maybe we could support multi arguments or a.cs,b.cs argument

WeihanLi commented 4 months ago

TestClass.cs

public class TestClass
{
    public static void TestMethod1()
    {
        Console.WriteLine("TestMethod1 invoked");
    }
}
dotnet-exec "TestClass.TestMethod1();" TestClass.cs

image