StarSim

StarSim.git
git clone git://git.lenczewski.org/StarSim.git
Log | Files | Refs | README | LICENSE

commit 6c002eb536b08f394208b53710bc9c1853f5c76d
parent 3c3da8156e4d48abd7396db9bb92b73b68fbe157
Author: Mikolaj Lenczewski <33129490+EnderRifter@users.noreply.github.com>
Date:   Wed, 19 Jun 2019 22:35:49 +0100

Merge branch 'master' of https://github.com/EnderRifter/StarSim

Diffstat:
Aazure-pipelines.yml | 30++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+), 0 deletions(-)

diff --git a/azure-pipelines.yml b/azure-pipelines.yml @@ -0,0 +1,30 @@ +# ASP.NET Core + +# Build and test ASP.NET Core projects targeting .NET Core. +# Add steps that run tests, create a NuGet package, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core + +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +variables: + buildConfiguration: 'Release' + +steps: +- task: DotNetCoreCLI@2 + inputs: + command: 'restore' + projects: '.\\StarSim\\StarSim.sln' + feedsToUse: 'select' +- task: DotNetCoreCLI@2 + inputs: + command: 'build' + projects: '.\\StarSim\\StarSim.sln' +- task: DotNetCoreCLI@2 + inputs: + command: 'publish' + publishWebProjects: true +