An open API service indexing awesome lists of open source software.

https://github.com/kant2002/dub

Application framework for speedier development of the SaaS application
https://github.com/kant2002/dub

Last synced: 10 months ago
JSON representation

Application framework for speedier development of the SaaS application

Awesome Lists containing this project

README

          

Dub
===

Application framework for speedier development of the SaaS application

What's changed
===

### 2.0.0
- Added support for .NET Standard 2.0
- Bring back support for .NET Framework

### 1.0.0
- Moved all projects to the .NET Core RTM.

### 0.9.0
- Moved all project to the new ASP.NET Core RC2 projects.

### 0.5.0
- Moved all project to the new ASPNET Core projects.

How to build
===
To build this project run

dotnet msbuild nuget.proj /t:BuildSolution /verbosity:d

To package and publish .NET Core NuGet packages to MyGet

rm -recurse artifacts
$time = (Get-Date).ToString("yyyyMMdd")
$suffix="dev-$time-1"
dotnet msbuild Dub\Dub.sln "/t:Restore" /p:VersionSuffix=$suffix /p:Configuration=Release
dotnet pack Dub\Dub.sln --version-suffix $suffix --output .\artifacts
dotnet msbuild nuget.proj /t:PublishNightly /verbosity:d