We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi this looks like a promising tool, thanks for sharing.
Given this code:
using System; namespace myapp { class Program { static void Main(string[] args) { Console.WriteLine($"Args: {string.Join(";", args)}"); } } }
I get different output compared to just using dotnet run:
dotnet run
D:\dev\temp\myapp> dotnet run stuff Args: stuff D:\dev\temp\myapp> .\myapp.exe stuff Args: myapp.exe;stuff D:\dev\temp\myapp>
The expected result should not include myapp.exe.
myapp.exe
The text was updated successfully, but these errors were encountered:
4cf8749
Thanks for this report. This has been fixed in release v0.1.1. Please follow the instructions on the README to download the updated packer.
Sorry, something went wrong.
No branches or pull requests
Hi this looks like a promising tool, thanks for sharing.
Given this code:
I get different output compared to just using
dotnet run
:The expected result should not include
myapp.exe
.The text was updated successfully, but these errors were encountered: