Skip to content

Commit bfbe429

Browse files
committed
try fix travis
1 parent 97e76c0 commit bfbe429

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

tests/service/ExprTests.fs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,8 +686,13 @@ let ``Check use of type provider that provides calls to F# code`` () =
686686
#else
687687
["Configuration", "Release"]
688688
#endif
689-
let res =
689+
let options =
690690
ProjectCracker.GetProjectOptionsFromProjectFile (Path.Combine(Path.Combine(__SOURCE_DIRECTORY__, "TestProject"),"TestProject.fsproj"), config)
691+
692+
printfn "options = %A" options
693+
694+
let res =
695+
options
691696
|> checker.ParseAndCheckProject
692697
|> Async.RunSynchronously
693698

tests/service/TestProject/TestProject.fsproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -9,8 +9,8 @@
99
<OutputType>Library</OutputType>
1010
<RootNamespace>TestProject</RootNamespace>
1111
<AssemblyName>TestProject</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13-
<TargetFSharpCoreVersion>4.4.0.0</TargetFSharpCoreVersion>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
<TargetFSharpCoreVersion>4.3.0.0</TargetFSharpCoreVersion>
1414
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1515
<Name>TestProject</Name>
1616
</PropertyGroup>

0 commit comments

Comments
 (0)