summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-02-18 11:23:52 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-02-18 11:23:52 +0100
commit5f05e2b9b1a3fedcdd7ecb2ab976a2687fd6f19a (patch)
treeca30287d64184e97efa1bf8f1ad59d99b2e09ebe
parent7bc2605f0205285d6a2ea6bda94b6d142e49ff01 (diff)
parentdcb411daeebeba25781a6840d5551e9da82b4938 (diff)
downloadredot-engine-5f05e2b9b1a3fedcdd7ecb2ab976a2687fd6f19a.tar.gz
Merge pull request #88475 from raulsntos/dotnet/fix-open-visual-studio
C#: Fix building OpenVisualStudio executable
-rw-r--r--modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/GodotTools.OpenVisualStudio.csproj3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/GodotTools.OpenVisualStudio.csproj b/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/GodotTools.OpenVisualStudio.csproj
index c335e7b09f..09908c85a1 100644
--- a/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/GodotTools.OpenVisualStudio.csproj
+++ b/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/GodotTools.OpenVisualStudio.csproj
@@ -5,10 +5,13 @@
<TargetFramework>net6.0-windows</TargetFramework>
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
+ <RuntimeIdentifier>win-x86</RuntimeIdentifier>
+ <SelfContained>False</SelfContained>
</PropertyGroup>
<PropertyGroup Condition="Exists('$(SolutionDir)/../../../../bin/GodotSharp/Api/Debug/GodotSharp.dll') And ('$(GodotPlatform)' == 'windows' Or ('$(GodotPlatform)' == '' And '$(OS)' == 'Windows_NT'))">
<OutputPath>$(SolutionDir)/../../../../bin/GodotSharp/Tools</OutputPath>
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath>
+ <AppendRuntimeIdentifierToOutputPath>False</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="EnvDTE" Version="17.8.37221" />