Created
April 21, 2020 05:40
-
-
Save andrewabest/9760eb9910958ed07a5c474da554587b to your computer and use it in GitHub Desktop.
Creates and packages a dotnet web app for deployment testing via Octopus
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
dotnet new mvc --auth None -f netcoreapp3.1 | |
dotnet build | |
dotnet publish | |
octo pack --Id=MyApp.Test --format=Zip --Version=1.0.0 --basePath=./bin/Debug/netcoreapp3.1/publish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment