public Monogame()
{
graphics = new GraphicsDeviceManager(this);
graphics.PreferredBackBufferHeight = 768;
graphics.PreferredBackBufferWidth = 1024;
Content.RootDirectory = Directory.GetCurrentDirectory() + "/Content/";
}
dotnet tool
then it must've been removed from there somehow
mgcb-editor
work for you in a terminal?
which mgcb-editor
)
$HOME/.dotnet/tools
Hello friends. I've just git cloned source code from master branch but I can't to build solution for Linux OS because I get such error:
Error: NuGet packages need to be restored before building. NuGet MSBuild targets are missing and are needed for building. The NuGet MSBuild targets are generated when the NuGet packages are restored. (MonoGame.Content.Builder.Editor.Launcher)
How can I repair this problem?
/usr/share/dotnet/sdk/5.0.302/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.TargetFrameworkInference.targets(5,5): Error MSB4186: Invalid static method invocation syntax: "[MSBuild]::GetTargetFrameworkIdentifier('$(TargetFramework)')". Method '[MSBuild]::GetTargetFrameworkIdentifier' not found. Static method invocation should be of the form: $([FullTypeName]::Method()), e.g. $([System.IO.Path]::Combine(`a`, `b`)). Check that all parameters are defined, are of the correct type, and are specified in the right order. (MSB4186) (MonoGame.Framework.DesktopGL)
Hello everybody I've noticed one bug in last version. There is code:
if (keyboardState.IsKeyDown(Keys.R))
{
I start application 3 or 4 times and then nothing happens after R key pressing. I change R to T in code and application again works 3 or 4 times running. Then I return code to R key (Ctrl+Z) and application again works 3 or 4 times running. I even set breakpoint inside {...} block but thread does not come inside it. I think it's real bug