Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
f4bd221
use proto on mac and linux
dsyme Mar 29, 2019
8a4baf3
reduce diff
dsyme Mar 30, 2019
0474a23
reduce diff
dsyme Mar 30, 2019
b96120e
reduce diff
dsyme Mar 30, 2019
cf9147b
reduce diff
dsyme Mar 30, 2019
286c336
reduce diff
dsyme Mar 30, 2019
7a6448e
reduce diff
dsyme Mar 30, 2019
965d3b1
Merge branch 'master' of https://github.com/Microsoft/visualfsharp in…
dsyme Apr 2, 2019
978414c
Merge branch 'master' into proto
KevinRansom Apr 8, 2019
95d94de
integrate master
dsyme Apr 14, 2019
a15ef59
integrate master
dsyme Apr 14, 2019
aed6752
fix build
dsyme Apr 14, 2019
bb78e5f
fix build
dsyme Apr 14, 2019
b88d23c
Merge branch 'fix77' into proto
dsyme Apr 14, 2019
1aa6a41
load right FSHarp.Build
dsyme Apr 15, 2019
058bdc9
publish proto apps
dsyme Apr 15, 2019
688850f
revert test env changes
dsyme Apr 15, 2019
c2c7213
revert testing changes
dsyme Apr 16, 2019
fdcf82a
Merge branch 'master' of http://github.com/Microsoft/visualfsharp int…
dsyme Apr 16, 2019
e46dcd5
don't repeat bootstrap
dsyme Apr 16, 2019
75e9cc3
be systematic about verbosity
dsyme Apr 17, 2019
d0f51d7
Merge branch 'proto' of https://github.com/dsyme/visualfsharp into proto
dsyme Apr 17, 2019
63c64ef
Merge branch 'master' of http://github.com/Microsoft/visualfsharp int…
dsyme Apr 18, 2019
8f09004
remove verbosity flags
dsyme Apr 24, 2019
5833f0c
Merge branch 'master' of http://github.com/Microsoft/visualfsharp int…
dsyme May 31, 2019
d96345d
fix compiler location (#6917)
KevinRansom Jun 2, 2019
7c39a4f
Remove dead code in Extensions and Pervasive files (#6916)
cartermp Jun 2, 2019
2d7237c
No IVTs for CodeLenses (#6906)
cartermp Jun 2, 2019
e4707c5
Open Implement Interface APIs (#6905)
cartermp Jun 2, 2019
3a3d6ed
Replace AgedLookup with Dictionary in XML doc generation and remove d…
cartermp Jun 2, 2019
b91fa8b
Attributes lists (#6830)
auduchinok Jun 2, 2019
c036b35
Make FSharpAccessibility.IsProtected public, optimize IsPublic proper…
auduchinok Jun 2, 2019
ad5f69e
Replace SynSimplePat list with SynSimplePats in ImplicitCtor (#6845)
auduchinok Jun 2, 2019
45fed83
Reconfigure Legacy MSBuildReferenceResolver to be API-driven (#6898)
cartermp Jun 2, 2019
57969f6
Remove IVT to FSharp.Editor (#6930)
cartermp Jun 2, 2019
d12a626
Merge branch 'master' of http://github.com/Microsoft/visualfsharp int…
dsyme Jun 3, 2019
1632239
try align with fsc.fsproj
dsyme Jun 3, 2019
14be767
Don't go looking for MSBuild v12 in SimulatedMSBuildReferenceResolver…
cartermp Jun 3, 2019
a8eb9b1
Merge branch 'master' of http://github.com/Microsoft/visualfsharp int…
dsyme Jun 4, 2019
52e0844
try to fix build
dsyme Jun 4, 2019
c96481f
Merge pull request #6380 from dsyme/proto
dsyme Jun 4, 2019
6d989fa
ensure Microsoft.FSharp.NetSdk.props makes it into VisualFSharpFull.v…
brettfo Jun 5, 2019
f72b7b2
split service.fs (#6247)
dsyme Jun 6, 2019
b101514
Update DEVGUIDE.md (#6950)
ShalokShalom Jun 6, 2019
e835edf
Update repo name (#6951)
ShalokShalom Jun 7, 2019
49082d3
Removing CONTRIBUTING.md (#6958)
cartermp Jun 10, 2019
832f2c0
Remove IVT to FSharp.Build (#6970)
cartermp Jun 11, 2019
8e0565f
Don't stop type checking recursive module on unresolved open (#6965)
auduchinok Jun 11, 2019
e556508
Remove IVT to fsi from FSharp.Compiler.Private (#6957)
cartermp Jun 11, 2019
a4cbfe1
enable preview LSP support in VS (#6945)
brettfo Jun 11, 2019
027e8c9
fixed List.map3 misleading error message on different length lists (#…
reacheight Jun 11, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
load right FSHarp.Build
  • Loading branch information
dsyme committed Apr 15, 2019
commit 1aa6a410178ba7f250372dfe170a1958b886ee27
6 changes: 3 additions & 3 deletions FSharpTests.Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

<!-- SDK targets override -->
<PropertyGroup>
<_FSharpBuildTargetFramework Condition="'$(FSharpTestCompilerVersion)' == 'net40'">net472</_FSharpBuildTargetFramework>
<_FSharpBuildTargetFramework Condition="'$(FSharpTestCompilerVersion)' == 'coreclr'">netcoreapp2.1</_FSharpBuildTargetFramework>
<_FSharpBuildBinPath>$(MSBuildThisFileDirectory)artifacts\bin\FSharp.Build\$(Configuration)\$(_FSharpBuildTargetFramework)</_FSharpBuildBinPath>
<_FSharpBuildTargetFramework Condition="'$(MSBuildRuntimeType)'!='Core'">net472</_FSharpBuildTargetFramework>
<_FSharpBuildTargetFramework Condition="'$(MSBuildRuntimeType)'=='Core'">netcoreapp2.1</_FSharpBuildTargetFramework>
<_FSharpBuildBinPath>$(MSBuildThisFileDirectory)artifacts\bin\fsc\$(Configuration)\$(_FSharpBuildTargetFramework)</_FSharpBuildBinPath>

<FSharpBuildAssemblyFile>$(_FSharpBuildBinPath)\FSharp.Build.dll</FSharpBuildAssemblyFile>

Expand Down