Yashwanth Nataraj
Yashwanth Nataraj

Reputation: 193

How to build and deploy windows application coded in .net using Azure DevOps

I am trying to learn how can I build and deploy windows application coded in .net using Azure DevOps. I am learning phase of DevOps. Don't have much idea. Any links would be great full for building and deploying windows application. I have gone through webapps, But I want to know for windows

Upvotes: 0

Views: 2574

Answers (1)

Shamrai Aleksander
Shamrai Aleksander

Reputation: 16163

  1. The build process for windows app is simple. You just create a new build definition and select the template ".Net Desktop" then after build you may find the result on Artifact option. (Create a build pipeline)

Select Template

Select Template

Find Result

Find Result

  1. The deploy process depends from the type of your app (just folder with exe and dlls, or you use installer to deploy). So you may add the step to copy your build result to stage or run an installer in quiet mode. (Create a release pipeline) But before it you have to configure your deploy agents to some stages (Deploy an agent on Windows). More information: Why use Azure Pipelines for releases?

Upvotes: 1

Related Questions