Code: Select all
dotnet new console -o test
cd test
dotnet run
Code: Select all
The application to execute does not exist: '/home/user/test/bin/Debug/net9.0/c3ab8ff13720e8ad9047dd39466b3c8974e592c2fa383d4a3960714caef0c4f2'.
Code: Select all
dotnet new console -o test
cd test
dotnet run
Code: Select all
The application to execute does not exist: '/home/user/test/bin/Debug/net9.0/c3ab8ff13720e8ad9047dd39466b3c8974e592c2fa383d4a3960714caef0c4f2'.
That issue appears to be very old, and as I read the opening comment, does not sound like OP's problem. Could you explain why you think that is the solution here?SCR4MBL3 wrote:This may fix it: https://github.com/dotnet/core/issues/3830
Although that may be a better choice of forum, cross-posting is prohibited, so this thread should not be re-posted in P&P. If a thread is in the wrong forum, it should be moved by a moderator. Anyone can use the Report thread to file such a request, and moderators may at their discretion perform such moves even without an explicit request if it seems like the right course of action.SCR4MBL3 wrote: PS: If I were you, I'd upload this in Portage and Programming, the topic has nothing to do with Other Things Gentoo
Code: Select all
user@localhost test $ tree .
.
|── bin
│ └── Debug
│ └── net9.0
│ ├── test
│ ├── test.deps.json
│ ├── test.dll
│ ├── test.pdb
│ └── test.runtimeconfig.json
Code: Select all
{
"runtimeOptions": {
"tfm": "net9.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "9.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}