Skip to content
This repository has been archived by the owner on Jan 8, 2019. It is now read-only.

Commit

Permalink
Fix .NET Core Sdk preview2.1 with .NET Core 1.1 (#49)
Browse files Browse the repository at this point in the history
- add preview2.1 templates
- use .net 1.1 for dotnet-compile-fsc
- use .net core 1.1 in test and dotnet-compile-fsc preview2.1
- in test suite use `dotnet test`+xunit instead of msbuild scripts
- use only nuget.org for build of src/test. use nuget.org + devfeed for running test (temporary)
  • Loading branch information
enricosada authored Dec 8, 2016
1 parent 41f6a42 commit 717a9ed
Show file tree
Hide file tree
Showing 223 changed files with 7,093 additions and 25,126 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion test-msbuild/NuGet.Config → NuGet.withDevFeed.Config
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<packageSources>
<clear />
<add key="nuget-org" value="https://api.nuget.org/v3/index.json" />
<add key="sdk-package" value="../src/FSharp.NET.Sdk/bin/Debug" />
<add key="netcorecli-fsc-dev" value="https://www.myget.org/F/netcorecli-fsc-preview2-1/api/v3/index.json" />
</packageSources>
</configuration>
32 changes: 0 additions & 32 deletions build.proj

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ open System

[<EntryPoint>]
let main argv =
printfn "Hello World from F#!"
printfn "Hello World!"
0 // return an integer exit code
27 changes: 27 additions & 0 deletions examples/preview2.1/console/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"version": "1.0.0-*",
"buildOptions": {
"debugType": "portable",
"emitEntryPoint": true,
"compilerName": "fsc",
"compile": {
"includeFiles": [
"Program.fs"
]
}
},
"tools": {
"dotnet-compile-fsc": "1.0.0-preview2.1-*"
},
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.1.0"
},
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-160629"
}
}
}
}
File renamed without changes.
23 changes: 23 additions & 0 deletions examples/preview2.1/lib/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"version": "1.0.0-*",
"buildOptions": {
"debugType": "portable",
"compilerName": "fsc",
"compile": {
"includeFiles": [
"Library.fs"
]
}
},
"tools": {
"dotnet-compile-fsc": "1.0.0-preview2.1-*"
},
"frameworks": {
"netstandard1.6": {
"dependencies": {
"NETStandard.Library": "1.6.1",
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-160629"
}
}
}
}
8 changes: 0 additions & 8 deletions examples/preview3/NuGet.local.Config

This file was deleted.

21 changes: 0 additions & 21 deletions examples/preview3/README.md

This file was deleted.

48 changes: 0 additions & 48 deletions examples/preview3/console-crossgen/ExampleConsoleApp.fsproj

This file was deleted.

20 changes: 0 additions & 20 deletions examples/preview3/console-crossgen/Program.fs

This file was deleted.

40 changes: 0 additions & 40 deletions examples/preview3/console/ExampleConsoleApp.fsproj

This file was deleted.

8 changes: 0 additions & 8 deletions examples/preview3/console/Program.fs

This file was deleted.

39 changes: 0 additions & 39 deletions examples/preview3/lib/ExampleLibrary.fsproj

This file was deleted.

11 changes: 0 additions & 11 deletions examples/preview3/mstest/Tests.fs

This file was deleted.

47 changes: 0 additions & 47 deletions examples/preview3/mstest/mstest.fsproj

This file was deleted.

3 changes: 0 additions & 3 deletions examples/preview3/web/.bowerrc

This file was deleted.

24 changes: 0 additions & 24 deletions examples/preview3/web/Controllers/HomeController.fs

This file was deleted.

Loading

0 comments on commit 717a9ed

Please sign in to comment.