Skip to content

Instantly share code, notes, and snippets.

@goyalmohit
Created September 14, 2020 10:31
Show Gist options
  • Save goyalmohit/676a9c77dc99b71019bae8d980b05588 to your computer and use it in GitHub Desktop.
Save goyalmohit/676a9c77dc99b71019bae8d980b05588 to your computer and use it in GitHub Desktop.
# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
- group: "Any CPU - Release"
steps:
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
inputs:
solution: '$(solution)'
msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:DesktopBuildPackageLocation="$(build.artifactStagingDirectory)\WebApp.zip" /p:DeployIisAppPath="Default Web Site"'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
- task: VSTest@2
inputs:
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment