diff --git a/GodotAddin/Debugging/GodotDebuggerSession.cs b/GodotAddin/Debugging/GodotDebuggerSession.cs index a4eea81..5ffb617 100644 --- a/GodotAddin/Debugging/GodotDebuggerSession.cs +++ b/GodotAddin/Debugging/GodotDebuggerSession.cs @@ -93,7 +93,13 @@ namespace GodotAddin.Debugging string host = "127.0.0.1"; - var playRequest = new DebugPlayRequest { DebuggerHost = host, DebuggerPort = assignedDebugPort }; + var playRequest = new DebugPlayRequest + { + DebuggerHost = host, + DebuggerPort = assignedDebugPort, + BuildBeforePlaying = false + }; + _ = godotMessagingClient.SendRequest(playRequest) .ContinueWith(t => { diff --git a/GodotAddin/GodotAddin.csproj b/GodotAddin/GodotAddin.csproj index 61768d5..037df56 100644 --- a/GodotAddin/GodotAddin.csproj +++ b/GodotAddin/GodotAddin.csproj @@ -2,6 +2,7 @@ net472 8.0 + 1.1 @@ -22,4 +23,4 @@ - \ No newline at end of file + diff --git a/GodotAddin/Properties/AddinInfo.cs b/GodotAddin/Properties/AddinInfo.cs index 64c7272..d7f1e2e 100644 --- a/GodotAddin/Properties/AddinInfo.cs +++ b/GodotAddin/Properties/AddinInfo.cs @@ -4,7 +4,7 @@ using Mono.Addins.Description; [assembly: Addin( "GodotAddin", Namespace = "GodotAddin", - Version = "1.0" + Version = "1.1" )] [assembly: AddinName("Godot Addin")]