Created
October 25, 2017 23:16
-
-
Save aggieben/f10b64543fd5093f208d38dc2156d249 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project> | |
<PropertyGroup> | |
<IsWindows Condition="'$(OS)' == 'Windows_NT'">true</IsWindows> | |
<IsOSX Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPLatform]::OSX)))' == 'true'">true</IsOSX> | |
<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPLatform]::Linux)))' == 'true'">true</IsLinux> | |
</PropertyGroup> | |
<PropertyGroup Condition="'$(IsWindows)' == 'true'"> | |
<FscToolPath>C:\Program Files (x86)\Microsoft SDKs\F#\4.1\Framework\v4.0</FscToolPath> | |
<FscToolExe>fsc.exe</FscToolExe> | |
</PropertyGroup> | |
<PropertyGroup Condition="'$(IsOSX)' == 'true'"> | |
<FscToolPath>/Library/Frameworks/Mono.framework/Versions/Current/Commands</FscToolPath> | |
<FscToolExe>fsharpc</FscToolExe> | |
</PropertyGroup> | |
<PropertyGroup Condition="'$(IsLinux)' == 'true'"> | |
<FscToolPath>/usr/bin</FscToolPath> | |
<FscToolExe>fsharpc</FscToolExe> | |
</PropertyGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment