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
- Host: GitHub
- URL: https://github.com/kant2002/dub
- Owner: kant2002
- License: apache-2.0
- Created: 2014-12-25T11:56:28.000Z (over 11 years ago)
- Default Branch: develop
- Last Pushed: 2022-03-31T15:06:25.000Z (over 4 years ago)
- Last Synced: 2025-10-24T07:41:02.032Z (10 months ago)
- Language: C#
- Size: 4.62 MB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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