Skip to content

Commit

Permalink
Add net452 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
gdziadkiewicz committed Dec 30, 2019
1 parent e98ff30 commit dd09c38
Show file tree
Hide file tree
Showing 20 changed files with 345 additions and 1,572 deletions.
18 changes: 18 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": 1,
"isRoot": true,
"tools": {
"fake-cli": {
"version": "5.19.0",
"commands": [
"fake"
]
},
"paket": {
"version": "5.226.0",
"commands": [
"paket"
]
}
}
}
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -181,14 +181,16 @@ temp/
# Test results produced by build
TestResults.xml

#Paket dependency manager
.paket/
paket-files/

# Nuget outputs
nuget/*.nupkg
release.cmd
release.sh
localpackages/
paket-files
*.orig
.paket/paket.exe
docs/content/license.md
docs/content/release-notes.md
.fake
Expand Down
481 changes: 0 additions & 481 deletions .paket/Paket.Restore.targets

This file was deleted.

Binary file removed .paket/paket.bootstrapper.exe
Binary file not shown.
36 changes: 0 additions & 36 deletions .paket/paket.targets

This file was deleted.

11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
language: csharp
mono: latest
dotnet: 2.1.300
sudo: false # use the new container-based Travis infrastructure
mono: none
dotnet: 3.1.100
sudo: required

before_install:
- sudo apt-get install -qq dotnet-sdk-2.1
- chmod +x fake.sh

script:
- ./fake.sh All
script:
- ./fake.sh LinuxCI
2 changes: 2 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
image: Visual Studio 2019

init:
- git config --global core.autocrlf input
build_script:
Expand Down
2 changes: 2 additions & 0 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,12 @@ Target.create "BuildPackage" ignore
// Run all targets by default. Invoke 'build <Target>' to override

Target.create "All" ignore
Target.create "LinuxCI" ignore

"Build"
==> "CopyBinaries"
==> "RunTests"
==> "LinuxCI"
==> "NuGet"
==> "BuildPackage"
==> "All"
Expand Down
Loading

0 comments on commit dd09c38

Please sign in to comment.