diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-09-03 09:34:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-03 09:34:05 +0200 |
commit | 79960976fec44def661f78e299b987bad8a722a3 (patch) | |
tree | 3a2a92c5a7f59f3a126128d5cb44792efea9eef4 | |
parent | fd51d022c13ddf101b0e5f296c0ffb9e14699847 (diff) | |
parent | 206501a45e2219e4013ff1fb4ae98311aa5afaad (diff) |
Merge pull request #41729 from neikeq/issue-41726
C#: Fix Windows detection for copying MSBuild stub
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools.ProjectEditor/GodotTools.ProjectEditor.csproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools.ProjectEditor/GodotTools.ProjectEditor.csproj b/modules/mono/editor/GodotTools/GodotTools.ProjectEditor/GodotTools.ProjectEditor.csproj index 41c94f19c8..e4d6b2e010 100644 --- a/modules/mono/editor/GodotTools/GodotTools.ProjectEditor/GodotTools.ProjectEditor.csproj +++ b/modules/mono/editor/GodotTools/GodotTools.ProjectEditor/GodotTools.ProjectEditor.csproj @@ -20,7 +20,7 @@ <ItemGroup> <None Include="MSBuild.exe" CopyToOutputDirectory="Always" /> </ItemGroup> - <Target Name="CopyMSBuildStubWindows" AfterTargets="Build" Condition="$([MSBuild]::IsOsPlatform(Windows))"> + <Target Name="CopyMSBuildStubWindows" AfterTargets="Build" Condition=" '$(GodotPlatform)' == 'windows' Or ( '$(GodotPlatform)' == '' And '$(OS)' == 'Windows_NT' ) "> <PropertyGroup> <GodotSourceRootPath>$(SolutionDir)/../../../../</GodotSourceRootPath> <GodotOutputDataDir>$(GodotSourceRootPath)/bin/GodotSharp</GodotOutputDataDir> |