Skip to content

Commit

Permalink
Is64BitProcess not supported in MSBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Mar 9, 2020
1 parent 15beacb commit 1001637
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/Mobile.BuildTools/ScssToCss.targets
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<Target Name="_EnsureScssRuntimeIsAvailable">
<PropertyGroup>
<_NativeRuntime>win-x86</_NativeRuntime>
<_NativeRuntime Condition="$([System.Environment]::Is64BitProcess)">win-x64</_NativeRuntime>
<!-- <_NativeRuntime Condition="$([System.Environment]::Is64BitProcess)">win-x64</_NativeRuntime> -->
<_NativeRuntime Condition=" '$(OS)' != 'Windows_NT'">osx-x64</_NativeRuntime>
<ScssRuntime Condition=" '$(ScssRuntime)' == '' ">win-x86</ScssRuntime>
<ScssRuntimeDir>$([System.IO.Path]::Combine($(MSBuildThisFileDirectory), 'runtimes', $(ScssRuntime)))</ScssRuntimeDir>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
<_NativeRuntime>win-x86</_NativeRuntime>
<_NativeRuntime Condition="$([System.Environment]::Is64BitProcess)">win-x64</_NativeRuntime>
<_NativeRuntime Condition=" '$(OS)' != 'Windows_NT'">osx-x64</_NativeRuntime>
</PropertyGroup>

Expand Down

0 comments on commit 1001637

Please sign in to comment.