diff --git a/Tailspin.SpaceGame.Web/Views/Home/Index.cshtml b/Tailspin.SpaceGame.Web/Views/Home/Index.cshtml index f7c4c886074..7a130862bd6 100644 --- a/Tailspin.SpaceGame.Web/Views/Home/Index.cshtml +++ b/Tailspin.SpaceGame.Web/Views/Home/Index.cshtml @@ -5,8 +5,7 @@
Space Game -

An example site for learning

-
+

Welcome to the official Space Game site!

diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 23402e427df..4786113a48b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,3 +1,17 @@ -pool: MyAgentPool -steps: -- bash: echo hello world \ No newline at end of file +# 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: +- main + +pool: + vmImage: ubuntu-latest + +variables: + buildConfiguration: 'Release' + +steps: +- script: dotnet build --configuration $(buildConfiguration) + displayName: 'dotnet build $(buildConfiguration)'