Vardo Ternos
Vardo Ternos
It was answered: > ... > > > Do you think we can add Entity framework based database schema creation feature? If you agree adding this to 4.0, I'm willing...
Encountered the same issue with Godot 4. Looks like when launching game from Godot editor, the latter does not recompile source code. If you are in Godot 4, run `dotnet...
> Do you know how to invoke the clean task from within Visual Studio Code? I can't find a mechanism for it. @blackears Your `.vscode/tasks.json` file should look like this...
_Off-topic_ For those who are curious about my tasks.json and launch.json configurations: tasks.json: ```json { "version": "2.0.0", "tasks": [ { "label": "build", "command": "dotnet", "type": "process", "args": [ "build", "/property:GenerateFullPaths=true",...
`-left-[25%] -right-[25%]` will help centering viewport. But there are caviats: If your viewport (NavigationMenuContext) is too wide (for example 700px) or if your menu list is too short (NavigationMenuList), viewport...
_open for criticism_ You should block the thread that enters the `_Ready` function by synchronously waiting for all your async tasks (via `.Result` or `.Wait()`), whether they are long-running or...
On launch I get this in vscode output: `Invalid debug host address, it should be of the form ://:.` Looks like we are missing `tcp://` part when providing `--remote-debug` argument...
Can confirm **this appears for Windows 11** Pro 22631.3296 with Silk.NET 2.20.0 Tutorial 2.1 Coordinate system GPU is integrated AMD Radeon, CPU is Ryzen 5 5500U 
Also on Windows 10 Pro 19045.4046 (GPU integrated AMD Ryzen 7 4700U) Also on Manjaro Linux x86_64 (GPU: Intel CometLake-H GT2 [UHD Graphics]) The problem is global This fixes: ```cshapr...
I also have got an stack overflow. With those models: ```csharp public class Node { public int Id { get; init; } public int? ParentNodeId { get; init; } public...