-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add build scripts * Prepare release v2.0.0
- Loading branch information
1 parent
f745eb4
commit f04c7d3
Showing
12 changed files
with
112 additions
and
21 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
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/sh | ||
|
||
echo "=== INITIALIZING ===" | ||
export GIT_COMMIT=$(git rev-parse HEAD) | ||
export GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD) | ||
echo "GIT_COMMIT=$GIT_COMMIT" | ||
echo "GIT_BRANCH=$GIT_BRANCH" | ||
echo "" | ||
|
||
echo "=== PACKING ===" | ||
rm -rf .build/nuget | ||
dotnet pack -o .build/nuget --include-symbols -c Release --no-restore -p:RepositoryBranch=$GIT_BRANCH -p:RepositoryCommit=$GIT_COMMIT | ||
echo "" |
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,6 @@ | ||
#!/bin/sh | ||
|
||
echo "=== PUSHING ===" | ||
dotnet nuget push .build/nuget/**/*.nupkg -k $NUGET_TOKEN -sk $NUGET_TOKEN --skip-duplicate -s https://api.nuget.org/v3/index.json | ||
dotnet nuget push .build/nuget/**/*.snupkg -k $NUGET_TOKEN -sk $NUGET_TOKEN --skip-duplicate | ||
echo "" |
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,41 @@ | ||
[![GitHub version](https://badge.fury.io/gh/PulsarBlow%2Fsupermassive.svg)](https://github.com/PulsarBlow/SuperMassive/releases/latest) [![NuGet Downloads](https://img.shields.io/nuget/dt/SuperMassive.svg)](https://www.nuget.org/packages/supermassive) | ||
|
||
# SuperMassive | ||
|
||
![SuperMassive Logo](https://github.com/PulsarBlow/SuperMassive/blob/master/supermassive.png) | ||
|
||
SuperMassive is a small condensed library of reusable .NET Core components and utility classes. | ||
|
||
### Projects descriptions | ||
|
||
* **SuperMassive** : Core features - SuperMassive swiss army knife! | ||
* **SuperMassive.ExceptionHandling** : Exception handling as it should be. | ||
* **SuperMassive.ExceptionHandling.Logging** : Exception handling with logging features. | ||
* **SuperMassive.Fakers** : A suit of data fakers to feed your hungry unit tests with "almost" real data. | ||
* **SuperMassive.Logging** : A set of abstract and base logging components | ||
* **SuperMassive.Logging.AzureTable** : A concrete implementation of the logging facade for Azure Table | ||
|
||
|
||
### Installation | ||
|
||
Pick the features you want by installing the corresponding NuGet package : | ||
|
||
|
||
```Ìnstall-Package SuperMassive``` | ||
```Ìnstall-Package SuperMassive.ExceptionHandling``` | ||
```Ìnstall-Package SuperMassive.ExceptionHandling.Logging``` | ||
```Ìnstall-Package SuperMassive.Fakers``` | ||
```Ìnstall-Package SuperMassive.Logging``` | ||
```Ìnstall-Package SuperMassive.Logging.AzureTable``` | ||
etc.. | ||
|
||
If you want the prerelease nugets, dont forget to select *Include prerelease* in the nuget manager window or add ```-Pre``` to your Install Package command. | ||
|
||
### Build & Tests | ||
|
||
Just download the sources and run the test with Visual Studio Test Explorer. | ||
|
||
|
||
#### Licence | ||
|
||
http://opensource.org/licenses/MIT |
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 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 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