Skip to content

Commit 6d4fe8b

Browse files
committed
Fix expressions for type providers (2)
1 parent 4d30755 commit 6d4fe8b

File tree

4 files changed

+4
-15
lines changed

4 files changed

+4
-15
lines changed

tests/service/TestTP/App.config

Lines changed: 0 additions & 6 deletions
This file was deleted.

tests/service/TestTP/ProvidedTypes.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ module internal Misc =
494494
else
495495
Some (args.[1], args.[1])
496496
)
497-
|> Seq.item (n - 1)
497+
|> Seq.nth (n - 1)
498498

499499
let adaptMethod = getFastFuncType args resultType
500500
let adapted = E.Call(adaptMethod, [loop applicable])

tests/service/TestTP/TestTP.fsproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@
99
<OutputType>Library</OutputType>
1010
<RootNamespace>TestTP</RootNamespace>
1111
<AssemblyName>TestTP</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14-
<TargetFSharpCoreVersion>4.4.0.0</TargetFSharpCoreVersion>
14+
<TargetFSharpCoreVersion>4.3.0.0</TargetFSharpCoreVersion>
1515
<Name>TestTP</Name>
16+
<TargetFrameworkProfile />
1617
</PropertyGroup>
1718
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1819
<DebugSymbols>true</DebugSymbols>
@@ -54,11 +55,9 @@
5455
</Choose>
5556
<Import Project="$(FSharpTargetsPath)" />
5657
<ItemGroup>
57-
<None Include="App.config" />
5858
<Compile Include="ProvidedTypes.fsi" />
5959
<Compile Include="ProvidedTypes.fs" />
6060
<Compile Include="Library.fs" />
61-
<Content Include="packages.config" />
6261
</ItemGroup>
6362
<ItemGroup>
6463
<Reference Include="mscorlib" />

tests/service/TestTP/packages.config

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)