diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-18 11:23:52 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-18 11:23:52 +0100 |
commit | 5f05e2b9b1a3fedcdd7ecb2ab976a2687fd6f19a (patch) | |
tree | ca30287d64184e97efa1bf8f1ad59d99b2e09ebe | |
parent | 7bc2605f0205285d6a2ea6bda94b6d142e49ff01 (diff) | |
parent | dcb411daeebeba25781a6840d5551e9da82b4938 (diff) | |
download | redot-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.csproj | 3 |
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" /> |