@@ -12,15 +12,27 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and
1212
1313<Project xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
1414
15+ <PropertyGroup >
16+ <MSBuildAllProjects >$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects >
17+ </PropertyGroup >
18+
19+ <PropertyGroup >
20+ <DefineConstants >$(DefineConstants);TRACE</DefineConstants >
21+ <WarningLevel Condition =" '$(WarningLevel)' == ''" >3</WarningLevel >
22+ </PropertyGroup >
23+
1524 <PropertyGroup >
16- <EnableDefaultCompileItems >false</EnableDefaultCompileItems ><!-- - Do not glob F# source files-->
25+ <EnableDefaultCompileItems Condition = " '$(EnableDefaultCompileItems)' == '' " >false</EnableDefaultCompileItems ><!-- - Do not glob F# source files-->
1726 <DefaultProjectTypeGuid Condition =" '$(DefaultProjectTypeGuid)' == ''" >{F2A71F9B-5D33-465A-A702-920D77279786}</DefaultProjectTypeGuid ><!-- F# project type-->
1827 </PropertyGroup >
1928
20- <PropertyGroup Condition =" '$(MSBuildRuntimeType)' == 'core'" >
21- <FscToolPath Condition =" '$(FscToolPath)' == ''" >$(MSBuildThisFileDirectory)</FscToolPath >
22- <FscToolExe Condition =" '$(OS)' != 'Unix' and '$(FscToolExe)' == ''" >RunFsc.cmd</FscToolExe >
23- <FscToolExe Condition =" '$(OS)' == 'Unix' and '$(FscToolExe)' == ''" >RunFsc.sh</FscToolExe >
29+ <PropertyGroup Condition =" '$(OS)' != 'Unix' and Exists('$(MSBuildThisFileDirectory)\RunFsc.cmd')" >
30+ <FscToolPath Condition =" '$(FscToolPath)' == ''" >$(MSBuildThisFileDirectory)</FscToolPath >
31+ <FscToolExe Condition =" '$(FscToolExe)' == ''" >RunFsc.cmd</FscToolExe >
2432 </PropertyGroup >
2533
34+ <PropertyGroup Condition =" '$(OS)' == 'Unix' and Exists('$(MSBuildThisFileDirectory)\RunFsc.sh')" >
35+ <FscToolPath Condition =" '$(FscToolPath)' == ''" >$(MSBuildThisFileDirectory)</FscToolPath >
36+ <FscToolExe Condition =" '$(OS)' == 'Unix' and '$(FscToolExe)' == ''" >RunFsc.sh</FscToolExe >
37+ </PropertyGroup >
2638</Project >