From 6bb556cc15230e42ee6252903f52c9e7888e9129 Mon Sep 17 00:00:00 2001 From: Jared Hester Date: Wed, 22 Mar 2017 08:26:19 -0400 Subject: [PATCH] use nuget FSharp.Core all projects --- .../FSharp.CodeFormat.fsproj | 68 +++++++++++++++++- src/FSharp.CodeFormat/app.config | 27 +++----- src/FSharp.CodeFormat/paket.references | 3 +- src/FSharp.Formatting.CommandTool/App.config | 63 ++++++++--------- .../FSharp.Formatting.CommandTool.fsproj | 68 +++++++++++++++++- .../paket.references | 1 + .../FSharp.Formatting.Common.fsproj | 68 +++++++++++++++++- src/FSharp.Formatting.Common/app.config | 27 +++----- src/FSharp.Formatting.Common/paket.references | 1 + .../FSharp.Formatting.Razor.fsproj | 69 ++++++++++++++++++- src/FSharp.Formatting.Razor/app.config | 9 +++ src/FSharp.Formatting.Razor/paket.references | 1 + src/FSharp.Literate/FSharp.Literate.fsproj | 68 +++++++++++++++++- src/FSharp.Literate/app.config | 27 +++----- src/FSharp.Literate/paket.references | 1 + src/FSharp.Markdown/FSharp.Markdown.fsproj | 69 ++++++++++++++++++- src/FSharp.Markdown/app.config | 9 +++ src/FSharp.Markdown/paket.references | 1 + .../FSharp.MetadataFormat.fsproj | 69 +++++++++++++++++-- src/FSharp.MetadataFormat/app.config | 27 +++----- src/FSharp.MetadataFormat/paket.references | 1 + .../files/FsLib/FsLib1.fsproj | 68 +++++++++++++++++- .../files/FsLib/FsLib1.paket.references | 1 + .../files/FsLib/FsLib2.fsproj | 68 +++++++++++++++++- .../files/FsLib/FsLib2.paket.references | 1 + .../files/FsLib/app.config | 9 +++ .../files/FsLib/paket.references | 1 + .../files/TestLib/TestLib1.fsproj | 1 + .../files/TestLib/app.config | 9 +++ .../files/TestLib/paket.references | 1 + .../files/crefLib/crefLib1.fsproj | 3 - .../files/crefLib/crefLib1.paket.references | 1 + .../files/crefLib/crefLib2.fsproj | 3 - .../files/crefLib/crefLib2.paket.references | 1 + 34 files changed, 702 insertions(+), 142 deletions(-) create mode 100644 src/FSharp.Formatting.Razor/app.config create mode 100644 src/FSharp.Markdown/app.config create mode 100644 src/FSharp.Markdown/paket.references create mode 100644 tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib1.paket.references create mode 100644 tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib2.paket.references create mode 100644 tests/FSharp.MetadataFormat.Tests/files/FsLib/app.config create mode 100644 tests/FSharp.MetadataFormat.Tests/files/TestLib/app.config create mode 100644 tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib1.paket.references create mode 100644 tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib2.paket.references diff --git a/src/FSharp.CodeFormat/FSharp.CodeFormat.fsproj b/src/FSharp.CodeFormat/FSharp.CodeFormat.fsproj index a28388fc9..af1069bba 100644 --- a/src/FSharp.CodeFormat/FSharp.CodeFormat.fsproj +++ b/src/FSharp.CodeFormat/FSharp.CodeFormat.fsproj @@ -91,9 +91,6 @@ - - True - @@ -134,6 +131,71 @@ + + + + + ..\..\packages\FSharp.Core\lib\net20\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\net40\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+monoandroid10+monotouch10+xamarinios10\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll + True + True + + + + diff --git a/src/FSharp.CodeFormat/app.config b/src/FSharp.CodeFormat/app.config index f78889858..84919544e 100644 --- a/src/FSharp.CodeFormat/app.config +++ b/src/FSharp.CodeFormat/app.config @@ -4,23 +4,12 @@ - - - - - - - - - - - - - - - - - - - + + + + True + + + + \ No newline at end of file diff --git a/src/FSharp.CodeFormat/paket.references b/src/FSharp.CodeFormat/paket.references index 2edeea241..8f4c61640 100644 --- a/src/FSharp.CodeFormat/paket.references +++ b/src/FSharp.CodeFormat/paket.references @@ -1,2 +1,3 @@ FSharp.Compiler.Service -FSharpVSPowerTools.Core \ No newline at end of file +FSharpVSPowerTools.Core +FSharp.Core \ No newline at end of file diff --git a/src/FSharp.Formatting.CommandTool/App.config b/src/FSharp.Formatting.CommandTool/App.config index eb54b13f2..c5e99b644 100644 --- a/src/FSharp.Formatting.CommandTool/App.config +++ b/src/FSharp.Formatting.CommandTool/App.config @@ -28,35 +28,36 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + True + + + + \ No newline at end of file diff --git a/src/FSharp.Formatting.CommandTool/FSharp.Formatting.CommandTool.fsproj b/src/FSharp.Formatting.CommandTool/FSharp.Formatting.CommandTool.fsproj index 533e07ffb..b6c32c948 100644 --- a/src/FSharp.Formatting.CommandTool/FSharp.Formatting.CommandTool.fsproj +++ b/src/FSharp.Formatting.CommandTool/FSharp.Formatting.CommandTool.fsproj @@ -46,9 +46,6 @@ - - True - @@ -167,6 +164,71 @@ + + + + + ..\..\packages\FSharp.Core\lib\net20\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\net40\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+monoandroid10+monotouch10+xamarinios10\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll + True + True + + + + diff --git a/src/FSharp.Formatting.CommandTool/paket.references b/src/FSharp.Formatting.CommandTool/paket.references index 7ca8dbc3b..c739855df 100644 --- a/src/FSharp.Formatting.CommandTool/paket.references +++ b/src/FSharp.Formatting.CommandTool/paket.references @@ -1,2 +1,3 @@ +FSharp.Core CommandLineParser RazorEngine \ No newline at end of file diff --git a/src/FSharp.Formatting.Common/FSharp.Formatting.Common.fsproj b/src/FSharp.Formatting.Common/FSharp.Formatting.Common.fsproj index 86a1f37c5..2ab0a0406 100644 --- a/src/FSharp.Formatting.Common/FSharp.Formatting.Common.fsproj +++ b/src/FSharp.Formatting.Common/FSharp.Formatting.Common.fsproj @@ -82,9 +82,6 @@ - - True - @@ -109,4 +106,69 @@ + + + + + ..\..\packages\FSharp.Core\lib\net20\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\net40\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+monoandroid10+monotouch10+xamarinios10\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll + True + True + + + + \ No newline at end of file diff --git a/src/FSharp.Formatting.Common/app.config b/src/FSharp.Formatting.Common/app.config index f78889858..84919544e 100644 --- a/src/FSharp.Formatting.Common/app.config +++ b/src/FSharp.Formatting.Common/app.config @@ -4,23 +4,12 @@ - - - - - - - - - - - - - - - - - - - + + + + True + + + + \ No newline at end of file diff --git a/src/FSharp.Formatting.Common/paket.references b/src/FSharp.Formatting.Common/paket.references index aed00b268..ba92a0160 100644 --- a/src/FSharp.Formatting.Common/paket.references +++ b/src/FSharp.Formatting.Common/paket.references @@ -1,2 +1,3 @@ +FSharp.Core File: YaafFSharpScripting.fs FSharp.Compiler.Service \ No newline at end of file diff --git a/src/FSharp.Formatting.Razor/FSharp.Formatting.Razor.fsproj b/src/FSharp.Formatting.Razor/FSharp.Formatting.Razor.fsproj index 84b336dc5..f46e094dd 100644 --- a/src/FSharp.Formatting.Razor/FSharp.Formatting.Razor.fsproj +++ b/src/FSharp.Formatting.Razor/FSharp.Formatting.Razor.fsproj @@ -35,12 +35,10 @@ - - True - + @@ -109,6 +107,71 @@ + + + + + ..\..\packages\FSharp.Core\lib\net20\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\net40\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+monoandroid10+monotouch10+xamarinios10\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll + True + True + + + + diff --git a/src/FSharp.Formatting.Razor/app.config b/src/FSharp.Formatting.Razor/app.config new file mode 100644 index 000000000..a4daf5445 --- /dev/null +++ b/src/FSharp.Formatting.Razor/app.config @@ -0,0 +1,9 @@ + + + + + True + + + + diff --git a/src/FSharp.Formatting.Razor/paket.references b/src/FSharp.Formatting.Razor/paket.references index 7d6b3d258..e8eecb724 100644 --- a/src/FSharp.Formatting.Razor/paket.references +++ b/src/FSharp.Formatting.Razor/paket.references @@ -1,2 +1,3 @@ +FSharp.Core Microsoft.AspNet.Razor RazorEngine \ No newline at end of file diff --git a/src/FSharp.Literate/FSharp.Literate.fsproj b/src/FSharp.Literate/FSharp.Literate.fsproj index d34ddc4dd..678eba917 100644 --- a/src/FSharp.Literate/FSharp.Literate.fsproj +++ b/src/FSharp.Literate/FSharp.Literate.fsproj @@ -84,9 +84,6 @@ - - True - @@ -141,4 +138,69 @@ + + + + + ..\..\packages\FSharp.Core\lib\net20\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\net40\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+monoandroid10+monotouch10+xamarinios10\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll + True + True + + + + \ No newline at end of file diff --git a/src/FSharp.Literate/app.config b/src/FSharp.Literate/app.config index f78889858..84919544e 100644 --- a/src/FSharp.Literate/app.config +++ b/src/FSharp.Literate/app.config @@ -4,23 +4,12 @@ - - - - - - - - - - - - - - - - - - - + + + + True + + + + \ No newline at end of file diff --git a/src/FSharp.Literate/paket.references b/src/FSharp.Literate/paket.references index e0dfff83f..2a8a7e53f 100644 --- a/src/FSharp.Literate/paket.references +++ b/src/FSharp.Literate/paket.references @@ -1 +1,2 @@ +FSharp.Core FSharp.Compiler.Service diff --git a/src/FSharp.Markdown/FSharp.Markdown.fsproj b/src/FSharp.Markdown/FSharp.Markdown.fsproj index c22a843bc..3eb2f6356 100644 --- a/src/FSharp.Markdown/FSharp.Markdown.fsproj +++ b/src/FSharp.Markdown/FSharp.Markdown.fsproj @@ -39,15 +39,13 @@ AnyCPU - - True - False + @@ -111,4 +109,69 @@ --> + + + + + ..\..\packages\FSharp.Core\lib\net20\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\net40\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+monoandroid10+monotouch10+xamarinios10\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll + True + True + + + + \ No newline at end of file diff --git a/src/FSharp.Markdown/app.config b/src/FSharp.Markdown/app.config new file mode 100644 index 000000000..a4daf5445 --- /dev/null +++ b/src/FSharp.Markdown/app.config @@ -0,0 +1,9 @@ + + + + + True + + + + diff --git a/src/FSharp.Markdown/paket.references b/src/FSharp.Markdown/paket.references new file mode 100644 index 000000000..640cf9145 --- /dev/null +++ b/src/FSharp.Markdown/paket.references @@ -0,0 +1 @@ +FSharp.Core \ No newline at end of file diff --git a/src/FSharp.MetadataFormat/FSharp.MetadataFormat.fsproj b/src/FSharp.MetadataFormat/FSharp.MetadataFormat.fsproj index bd29b109b..367a648fe 100644 --- a/src/FSharp.MetadataFormat/FSharp.MetadataFormat.fsproj +++ b/src/FSharp.MetadataFormat/FSharp.MetadataFormat.fsproj @@ -40,7 +40,6 @@ ..\..\bin\ - 14.0 11 @@ -101,9 +100,6 @@ {65e6d541-0486-4383-b619-5cfc5d2ba2f0} True - - True - @@ -142,4 +138,69 @@ + + + + + ..\..\packages\FSharp.Core\lib\net20\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\net40\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+monoandroid10+monotouch10+xamarinios10\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll + True + True + + + + \ No newline at end of file diff --git a/src/FSharp.MetadataFormat/app.config b/src/FSharp.MetadataFormat/app.config index f78889858..84919544e 100644 --- a/src/FSharp.MetadataFormat/app.config +++ b/src/FSharp.MetadataFormat/app.config @@ -4,23 +4,12 @@ - - - - - - - - - - - - - - - - - - - + + + + True + + + + \ No newline at end of file diff --git a/src/FSharp.MetadataFormat/paket.references b/src/FSharp.MetadataFormat/paket.references index ea534d5c8..e4c76aeae 100644 --- a/src/FSharp.MetadataFormat/paket.references +++ b/src/FSharp.MetadataFormat/paket.references @@ -1 +1,2 @@ +FSharp.Core FSharp.Compiler.Service \ No newline at end of file diff --git a/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib1.fsproj b/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib1.fsproj index 0e89ff489..a29006e8f 100644 --- a/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib1.fsproj +++ b/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib1.fsproj @@ -34,9 +34,6 @@ - - False - @@ -98,6 +95,71 @@ + + + + + ..\..\..\..\packages\FSharp.Core\lib\net20\FSharp.Core.dll + True + True + + + + + + + ..\..\..\..\packages\FSharp.Core\lib\net40\FSharp.Core.dll + True + True + + + + + + + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+monoandroid10+monotouch10+xamarinios10\FSharp.Core.dll + True + True + + + + + + + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll + True + True + + + + + + + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll + True + True + + + + diff --git a/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib1.paket.references b/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib1.paket.references new file mode 100644 index 000000000..640cf9145 --- /dev/null +++ b/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib1.paket.references @@ -0,0 +1 @@ +FSharp.Core \ No newline at end of file diff --git a/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib2.fsproj b/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib2.fsproj index 0ab812cce..18254bacd 100644 --- a/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib2.fsproj +++ b/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib2.fsproj @@ -72,9 +72,6 @@ - - False - @@ -99,6 +96,71 @@ + + + + + ..\..\..\..\packages\FSharp.Core\lib\net20\FSharp.Core.dll + True + True + + + + + + + ..\..\..\..\packages\FSharp.Core\lib\net40\FSharp.Core.dll + True + True + + + + + + + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+monoandroid10+monotouch10+xamarinios10\FSharp.Core.dll + True + True + + + + + + + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll + True + True + + + + + + + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll + True + True + + + + + + + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll + True + True + + + + diff --git a/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib2.paket.references b/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib2.paket.references new file mode 100644 index 000000000..640cf9145 --- /dev/null +++ b/tests/FSharp.MetadataFormat.Tests/files/FsLib/FsLib2.paket.references @@ -0,0 +1 @@ +FSharp.Core \ No newline at end of file diff --git a/tests/FSharp.MetadataFormat.Tests/files/FsLib/app.config b/tests/FSharp.MetadataFormat.Tests/files/FsLib/app.config new file mode 100644 index 000000000..a4daf5445 --- /dev/null +++ b/tests/FSharp.MetadataFormat.Tests/files/FsLib/app.config @@ -0,0 +1,9 @@ + + + + + True + + + + diff --git a/tests/FSharp.MetadataFormat.Tests/files/FsLib/paket.references b/tests/FSharp.MetadataFormat.Tests/files/FsLib/paket.references index 1570c9dec..c954cff01 100644 --- a/tests/FSharp.MetadataFormat.Tests/files/FsLib/paket.references +++ b/tests/FSharp.MetadataFormat.Tests/files/FsLib/paket.references @@ -1,3 +1,4 @@ FSharp.Compiler.Service Microsoft.AspNet.Razor RazorEngine +FSharp.Core \ No newline at end of file diff --git a/tests/FSharp.MetadataFormat.Tests/files/TestLib/TestLib1.fsproj b/tests/FSharp.MetadataFormat.Tests/files/TestLib/TestLib1.fsproj index f10f9c136..ba24156e0 100644 --- a/tests/FSharp.MetadataFormat.Tests/files/TestLib/TestLib1.fsproj +++ b/tests/FSharp.MetadataFormat.Tests/files/TestLib/TestLib1.fsproj @@ -62,6 +62,7 @@ + diff --git a/tests/FSharp.MetadataFormat.Tests/files/TestLib/app.config b/tests/FSharp.MetadataFormat.Tests/files/TestLib/app.config new file mode 100644 index 000000000..a4daf5445 --- /dev/null +++ b/tests/FSharp.MetadataFormat.Tests/files/TestLib/app.config @@ -0,0 +1,9 @@ + + + + + True + + + + diff --git a/tests/FSharp.MetadataFormat.Tests/files/TestLib/paket.references b/tests/FSharp.MetadataFormat.Tests/files/TestLib/paket.references index 1570c9dec..c954cff01 100644 --- a/tests/FSharp.MetadataFormat.Tests/files/TestLib/paket.references +++ b/tests/FSharp.MetadataFormat.Tests/files/TestLib/paket.references @@ -1,3 +1,4 @@ FSharp.Compiler.Service Microsoft.AspNet.Razor RazorEngine +FSharp.Core \ No newline at end of file diff --git a/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib1.fsproj b/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib1.fsproj index adfe440af..8304053c2 100644 --- a/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib1.fsproj +++ b/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib1.fsproj @@ -34,9 +34,6 @@ - - False - diff --git a/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib1.paket.references b/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib1.paket.references new file mode 100644 index 000000000..640cf9145 --- /dev/null +++ b/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib1.paket.references @@ -0,0 +1 @@ +FSharp.Core \ No newline at end of file diff --git a/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib2.fsproj b/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib2.fsproj index 58dac9d0b..ee4ba481c 100644 --- a/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib2.fsproj +++ b/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib2.fsproj @@ -35,9 +35,6 @@ - - False - diff --git a/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib2.paket.references b/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib2.paket.references new file mode 100644 index 000000000..640cf9145 --- /dev/null +++ b/tests/FSharp.MetadataFormat.Tests/files/crefLib/crefLib2.paket.references @@ -0,0 +1 @@ +FSharp.Core \ No newline at end of file