-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates documentation and project files for v0.10.0 release (#43)
* Removes nuspec description file * Updates documentation * Removed unneeded Cake build files Co-Authored-By: Stephen Nelson <[email protected]> * Update copyright dates, clean xml * Remove deprecated project configuration * Build tagged branches using tag as version * Improve Travis Builds (#44) * Use build matrix for target frameworks * Use the dotnet matrix expansion * Add solution file for matrix expansion * Parallell jobs in test stage * Move all tests to test stage Co-authored-by: Stephen Nelson <[email protected]> Co-authored-by: Stephen Nelson <[email protected]>
- Loading branch information
1 parent
9f808e2
commit 99144b3
Showing
12 changed files
with
54 additions
and
489 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/.idea/ | ||
/.vscode/ | ||
/bin/ | ||
/packages/ | ||
/tools/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,22 @@ | ||
dist: bionic | ||
dist: focal | ||
|
||
language: csharp | ||
mono: none | ||
dotnet: | ||
- 3.1.11 | ||
solution: dnsimple-csharp.sln | ||
script: | ||
- dotnet restore | ||
- dotnet test | ||
dotnet: 5.0 | ||
|
||
before_install: sudo apt-get install dotnet-sdk-3.1 | ||
|
||
jobs: | ||
include: | ||
- stage: test | ||
script: | ||
- dotnet restore | ||
- dotnet test -f netcoreapp3.1 | ||
- dotnet test -f net50 | ||
- stage: release | ||
if: branch = main AND tag IS present AND tag =~ /^\d{1,4}.\d{1,4}.\d{1,4}/ AND type = push | ||
script: | ||
- dotnet pack /p:PackageVersion=$TRAVIS_TAG | ||
|
||
notifications: | ||
email: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.