-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from serilog/dev
2.0.1 Release
- Loading branch information
Showing
67 changed files
with
72 additions
and
23,709 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 |
---|---|---|
|
@@ -199,3 +199,5 @@ project.lock.json | |
|
||
# JetBrains Rider | ||
.idea | ||
|
||
.vscode |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
dotnet --info | ||
dotnet restore | ||
|
||
for path in src/**/*.csproj; do | ||
dotnet build -f netstandard1.3 -c Release ${path} | ||
dotnet build -f netstandard2.0 -c Release ${path} | ||
|
||
done | ||
|
||
for path in test/*.Tests/*.csproj; do | ||
dotnet test -f netcoreapp2.0 -c Release ${path} | ||
done |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.