From 0b94203a79d3261d4cc3bbcdb3438a5a45c8c572 Mon Sep 17 00:00:00 2001 From: Ignacio Etcheverry Date: Thu, 18 Jul 2019 04:08:24 +0200 Subject: C#: Add Ide Connection library and server for the editor This will be used for communicating between the Godot editor and external IDEs/editors, for things like opening files, triggering hot-reload and running the game with a debugger attached. --- modules/mono/glue/Managed/Managed.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/mono/glue/Managed/Managed.csproj') diff --git a/modules/mono/glue/Managed/Managed.csproj b/modules/mono/glue/Managed/Managed.csproj index 61f738922b..ad55fe9539 100644 --- a/modules/mono/glue/Managed/Managed.csproj +++ b/modules/mono/glue/Managed/Managed.csproj @@ -1,4 +1,4 @@ - + Debug @@ -37,4 +37,4 @@ - + \ No newline at end of file -- cgit v1.2.3 From 3af8bd071eb6e99c9b3de90f5aaa939d18cda4f3 Mon Sep 17 00:00:00 2001 From: Ignacio Etcheverry Date: Sun, 25 Aug 2019 15:49:51 +0200 Subject: Set C# 7 as LangVersion for GodotTools and Godot API projects This will make it harder for someone to accidentally commit code that requires a newer version. --- modules/mono/glue/Managed/Managed.csproj | 1 + 1 file changed, 1 insertion(+) (limited to 'modules/mono/glue/Managed/Managed.csproj') diff --git a/modules/mono/glue/Managed/Managed.csproj b/modules/mono/glue/Managed/Managed.csproj index ad55fe9539..c8eca71199 100644 --- a/modules/mono/glue/Managed/Managed.csproj +++ b/modules/mono/glue/Managed/Managed.csproj @@ -8,6 +8,7 @@ Managed Managed v4.5 + 7 true -- cgit v1.2.3