Skip to content

Commit 2ac7103

Browse files
authored
Merge pull request #139 from sergey-tihon/dotnet
New project file format + Net Standard 2.0 build
2 parents 4d5b411 + 16faf70 commit 2ac7103

53 files changed

Lines changed: 1696 additions & 1475 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.config/dotnet-tools.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"paket": {
6+
"version": "6.0.0",
7+
"commands": [
8+
"paket"
9+
]
10+
},
11+
"fake-cli": {
12+
"version": "5.20.4",
13+
"commands": [
14+
"fake"
15+
]
16+
}
17+
}
18+
}

.github/workflows/dotnetcore.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build and Test
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
os: [ubuntu-latest, windows-latest, macOS-latest]
18+
dotnet: [5.0.302]
19+
runs-on: ${{ matrix.os }}
20+
21+
steps:
22+
- uses: actions/checkout@v1
23+
- name: Setup .NET Core
24+
uses: actions/setup-dotnet@v1
25+
with:
26+
dotnet-version: ${{ matrix.dotnet }}
27+
- name: Install local tools
28+
run: dotnet tool restore
29+
- name: Paket Restore
30+
run: dotnet paket restore
31+
- name: Build and Test
32+
run: dotnet fake run build.fsx

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,9 @@ $RECYCLE.BIN/
158158
# Exclude F# project specific directories and files
159159
# ===================================================
160160

161+
.idea/
162+
.vs/
163+
161164
# NuGet Packages Directory
162165
packages/
163166

@@ -171,6 +174,9 @@ temp/
171174
TestResults.xml
172175
release.cmd
173176
nuget/
177+
.paket/
178+
.fake/
179+
.ionide/
174180

175181
# Nuget outputs
176182
nuget/*.nupkg

.paket/Paket.Restore.targets

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

.paket/paket.exe

-62.8 KB
Binary file not shown.

.paket/paket.targets

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

.travis.yml

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

FSharp.Configuration.Tests.dll.TestResults.xml

Lines changed: 0 additions & 1 deletion
This file was deleted.

FSharp.Configuration.nuspec

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

0 commit comments

Comments
 (0)