File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -87,9 +87,8 @@ Target "GenerateFSIStrings" (fun _ ->
8787Target " Build" ( fun _ ->
8888 netFrameworks
8989 |> List.iter ( fun framework ->
90- let outputPath = buildDir </> framework
9190 !! ( project + " .sln" )
92- |> MSBuild outputPath " Build" [ " Configuration" , " Release" ; " TargetFrameworkVersion" , framework]
91+ |> MSBuild " " " Build" [ " Configuration" , " Release" ; " TargetFrameworkVersion" , framework]
9392 |> Log ( " .NET " + framework + " Build-Output: " ))
9493)
9594
Original file line number Diff line number Diff line change 1212 <startup >
1313 <supportedRuntime version =" v4.0" sku =" .NETFramework,Version=v4.5" />
1414 </startup >
15- </configuration >
15+ </configuration >
Original file line number Diff line number Diff line change 7676 <Import Project =" $(FSharpTargetsPath)" Condition =" Exists('$(FSharpTargetsPath)')" />
7777<!--
7878 <Target Name="BeforeBuild">
79- <Copy SourceFiles="$(MSBuildExtensionsPath32)\..\Reference Assemblies\Microsoft\FSharp\.NETFramework\v4.0\$(TargetFSharpCoreVersion)\FSharp.Core.sigdata" DestinationFolder="$(OutputPath)" />
80- <Copy SourceFiles="$(MSBuildExtensionsPath32)\..\Reference Assemblies\Microsoft\FSharp\.NETFramework\v4.0\$(TargetFSharpCoreVersion)\FSharp.Core.optdata" DestinationFolder="$(OutputPath)" />
79+ <Copy SourceFiles="$(MSBuildExtensionsPath32)\..\Reference Assemblies\Microsoft\FSharp\.NETFramework\v4.0\$(TargetFSharpCoreVersion)\FSharp.Core.sigdata" DestinationFolder="$(OutputPath)" Condition="Exists('$(MSBuildExtensionsPath32)\..\Reference Assemblies\Microsoft\FSharp\.NETFramework\v4.0\$(TargetFSharpCoreVersion)\FSharp.Core.sigdata')" />
80+ <Copy SourceFiles="$(MSBuildExtensionsPath32)\..\Reference Assemblies\Microsoft\FSharp\.NETFramework\v4.0\$(TargetFSharpCoreVersion)\FSharp.Core.optdata" DestinationFolder="$(OutputPath)" Condition="Exists('$(MSBuildExtensionsPath32)\..\Reference Assemblies\Microsoft\FSharp\.NETFramework\v4.0\$(TargetFSharpCoreVersion)\FSharp.Core.optdata')" />
81+ <Copy SourceFiles="$(MSBuildExtensionsPath32)\..\lib\mono\4.5\FSharp.Core.dll" DestinationFolder="$(OutputPath)" Condition="Exists('$(MSBuildExtensionsPath32)\..\lib\mono\4.5\FSharp.Core.dll')" />
82+ <Copy SourceFiles="$(MSBuildExtensionsPath32)\..\lib\mono\4.5\FSharp.Core.sigdata" DestinationFolder="$(OutputPath)" Condition="Exists('$(MSBuildExtensionsPath32)\..\lib\mono\4.5\FSharp.Core.sigdata')" />
83+ <Copy SourceFiles="$(MSBuildExtensionsPath32)\..\lib\mono\4.5\FSharp.Core.optdata" DestinationFolder="$(OutputPath)" Condition="Exists('$(MSBuildExtensionsPath32)\..\lib\mono\4.5\FSharp.Core.optdata')" />
8184 </Target>
8285-->
8386</Project >
You can’t perform that action at this time.
0 commit comments