Looking for Book(s) on VS2019 -> Azure Deployment
-
Hi all, I am looking for recommendations on books or other resources that can walk me through taking an app I have built in Visual Studio 2019, using Azure DevOps for a code repo (which I do now), and deploying to Azure (I have an Azure account and two subscriptions). Most of what I find is out of date, is geared around Visual Studio Code, or even worse, using the command line for Azure. For me, this is not the 1980s, so I don't use command line ops unless there is no other way. VS Code, while great for Linux users, is little more than vi or Notepad++ compared to VS 2019. If that is your cup of tea, that is fine, and I am not being judgmental, just clarifying my preference for productivity in a Windows development environment. If you know of any such books or other resources, particularly that go step-by-step through the overcomplicated machinations of deploying to Azure, I would appreciate your input. And no, I am not interested in AWS. I can create and deploy to the Azure DevOps repo now, and all the associated project management there. It is getting an app (web app, API app, SQL DB, etc.) deployed to Azure that I need to learn. Thanks in advance
-
Hi all, I am looking for recommendations on books or other resources that can walk me through taking an app I have built in Visual Studio 2019, using Azure DevOps for a code repo (which I do now), and deploying to Azure (I have an Azure account and two subscriptions). Most of what I find is out of date, is geared around Visual Studio Code, or even worse, using the command line for Azure. For me, this is not the 1980s, so I don't use command line ops unless there is no other way. VS Code, while great for Linux users, is little more than vi or Notepad++ compared to VS 2019. If that is your cup of tea, that is fine, and I am not being judgmental, just clarifying my preference for productivity in a Windows development environment. If you know of any such books or other resources, particularly that go step-by-step through the overcomplicated machinations of deploying to Azure, I would appreciate your input. And no, I am not interested in AWS. I can create and deploy to the Azure DevOps repo now, and all the associated project management there. It is getting an app (web app, API app, SQL DB, etc.) deployed to Azure that I need to learn. Thanks in advance
Don't know much about the books, but I know in DevOps this is referred to as "Pipelines". So, I would search for DevOps Pipelines: creating and managing, etc. It's all part of continuous integration, using the repo and pipelines. instead of deploying to AWS (what we do), you would deploy to Azure instead, or wherever for that matter (could be on a server somewhere). We use Git for our repo, and ALL code has to be approved via the Pull Request system, where it then gets merged to master branch, and kicks off a validation and dev build (pipelines). you would set up pipeline(s) for DEV, QA, and PROD, etc. of your choosing, automatic deploy, or manual, up to you.
-
Don't know much about the books, but I know in DevOps this is referred to as "Pipelines". So, I would search for DevOps Pipelines: creating and managing, etc. It's all part of continuous integration, using the repo and pipelines. instead of deploying to AWS (what we do), you would deploy to Azure instead, or wherever for that matter (could be on a server somewhere). We use Git for our repo, and ALL code has to be approved via the Pull Request system, where it then gets merged to master branch, and kicks off a validation and dev build (pipelines). you would set up pipeline(s) for DEV, QA, and PROD, etc. of your choosing, automatic deploy, or manual, up to you.
Thanks. That is a good start.
-
Don't know much about the books, but I know in DevOps this is referred to as "Pipelines". So, I would search for DevOps Pipelines: creating and managing, etc. It's all part of continuous integration, using the repo and pipelines. instead of deploying to AWS (what we do), you would deploy to Azure instead, or wherever for that matter (could be on a server somewhere). We use Git for our repo, and ALL code has to be approved via the Pull Request system, where it then gets merged to master branch, and kicks off a validation and dev build (pipelines). you would set up pipeline(s) for DEV, QA, and PROD, etc. of your choosing, automatic deploy, or manual, up to you.
you don't need to use pipelines to deploy to Azure, although I certainly do
-
Hi all, I am looking for recommendations on books or other resources that can walk me through taking an app I have built in Visual Studio 2019, using Azure DevOps for a code repo (which I do now), and deploying to Azure (I have an Azure account and two subscriptions). Most of what I find is out of date, is geared around Visual Studio Code, or even worse, using the command line for Azure. For me, this is not the 1980s, so I don't use command line ops unless there is no other way. VS Code, while great for Linux users, is little more than vi or Notepad++ compared to VS 2019. If that is your cup of tea, that is fine, and I am not being judgmental, just clarifying my preference for productivity in a Windows development environment. If you know of any such books or other resources, particularly that go step-by-step through the overcomplicated machinations of deploying to Azure, I would appreciate your input. And no, I am not interested in AWS. I can create and deploy to the Azure DevOps repo now, and all the associated project management there. It is getting an app (web app, API app, SQL DB, etc.) deployed to Azure that I need to learn. Thanks in advance
you can use devops to do CI, or you can just deploy from VS by choosing 'publish' The easiest way is to use the built in Azure browser to find your function, download a publish profile and use that. Depoyment is pretty easy, you don't need a book. I'm happy to answer questions
-
you can use devops to do CI, or you can just deploy from VS by choosing 'publish' The easiest way is to use the built in Azure browser to find your function, download a publish profile and use that. Depoyment is pretty easy, you don't need a book. I'm happy to answer questions
I appreciate the response, but no, it is not easy for me at this point. It is easy for you because you already know how. That is what books or other resources are for, is to convey that knowledge. Hence, the only thing of use to me at this point is a book or other resource that explains it step by step.
-
I appreciate the response, but no, it is not easy for me at this point. It is easy for you because you already know how. That is what books or other resources are for, is to convey that knowledge. Hence, the only thing of use to me at this point is a book or other resource that explains it step by step.
Ok, I didn't mean to be condescending. It's not that complex, but all of Azure is poorly documented and labrythine at times. I don't know of any books. But I'm happy to try to explain it. In the Cloud Explorer you can right click on a function and download a publishing profile. If you right click on your code and choose publish, you can choose 'publish from a profile', select your downloaded file, and it will publish.
-
Ok, I didn't mean to be condescending. It's not that complex, but all of Azure is poorly documented and labrythine at times. I don't know of any books. But I'm happy to try to explain it. In the Cloud Explorer you can right click on a function and download a publishing profile. If you right click on your code and choose publish, you can choose 'publish from a profile', select your downloaded file, and it will publish.
That part I have done, but it is useless in its current condition. I am connected to Azure DevOps in Team Explorer, and sync'd my code with no problem. When I open Cloud Explorer, it remains blank.
-
That part I have done, but it is useless in its current condition. I am connected to Azure DevOps in Team Explorer, and sync'd my code with no problem. When I open Cloud Explorer, it remains blank.
devops lets you build a pipeline for CI, it's a step above what you want to do. Your code being in source control means you CAN use pipelines but you don't need to If cloud explorer is blank, the resources don't exist. You need to log into the portal to create a function group for you to publish to
-
That part I have done, but it is useless in its current condition. I am connected to Azure DevOps in Team Explorer, and sync'd my code with no problem. When I open Cloud Explorer, it remains blank.
My gmail is christian.graus@gmail.com. You're welcome to message me in hangouts to chat through this if you want
-
My gmail is christian.graus@gmail.com. You're welcome to message me in hangouts to chat through this if you want
Thanks. It is getting late here, and I need to work out a couple bugs in publishing first.
-
Thanks. It is getting late here, and I need to work out a couple bugs in publishing first.
I'm in Australia so I'm not around in your morning but I'm happy to help out if I can.
-
Hi all, I am looking for recommendations on books or other resources that can walk me through taking an app I have built in Visual Studio 2019, using Azure DevOps for a code repo (which I do now), and deploying to Azure (I have an Azure account and two subscriptions). Most of what I find is out of date, is geared around Visual Studio Code, or even worse, using the command line for Azure. For me, this is not the 1980s, so I don't use command line ops unless there is no other way. VS Code, while great for Linux users, is little more than vi or Notepad++ compared to VS 2019. If that is your cup of tea, that is fine, and I am not being judgmental, just clarifying my preference for productivity in a Windows development environment. If you know of any such books or other resources, particularly that go step-by-step through the overcomplicated machinations of deploying to Azure, I would appreciate your input. And no, I am not interested in AWS. I can create and deploy to the Azure DevOps repo now, and all the associated project management there. It is getting an app (web app, API app, SQL DB, etc.) deployed to Azure that I need to learn. Thanks in advance
You may be interested in my signature. The Succinctly books are free downloads and the DevOps one takes you through all DevOps has to offer. You can probably skip right to the build and deployment pipelines chapters. It's pretty detailed, so you should be able to follow along and deploy your app after reading it. The Migrating Apps to the Cloud book is not free and has an emphasis on Azure, so probably not what you're looking for. Although it does have chapters on DevOps and using Azure with Visual Studio. If you have any questions I'd be happy to help!
Best, Sander Azure DevOps Succinctly (free eBook) Azure Serverless Succinctly (free eBook) Migrating Apps to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript
-
Hi all, I am looking for recommendations on books or other resources that can walk me through taking an app I have built in Visual Studio 2019, using Azure DevOps for a code repo (which I do now), and deploying to Azure (I have an Azure account and two subscriptions). Most of what I find is out of date, is geared around Visual Studio Code, or even worse, using the command line for Azure. For me, this is not the 1980s, so I don't use command line ops unless there is no other way. VS Code, while great for Linux users, is little more than vi or Notepad++ compared to VS 2019. If that is your cup of tea, that is fine, and I am not being judgmental, just clarifying my preference for productivity in a Windows development environment. If you know of any such books or other resources, particularly that go step-by-step through the overcomplicated machinations of deploying to Azure, I would appreciate your input. And no, I am not interested in AWS. I can create and deploy to the Azure DevOps repo now, and all the associated project management there. It is getting an app (web app, API app, SQL DB, etc.) deployed to Azure that I need to learn. Thanks in advance
I found Microsoft docs & tutorials very helpful enough to deploy my apps to Azure (Azure Functions and Websites). I think their documentaion improved quite a lot. Some processes are not easy so there is lot to digest. If I have doubts and still struggle I would google it as the dev community writes also nice quality articles. I know it is not a book and it is here and there but these docs get updated + you might have discusssions below to answer related issues. Some tech changes so fast that at the time you read a book about Azure DevOps (previuosly Visual Studio Online previosly who know what) it might be something else ;) . Deploy ASP.NET Core apps to Azure App Service | Microsoft Docs[^] Build, test, and deploy .NET Core apps - Azure Pipelines | Microsoft Docs[^]
-
You may be interested in my signature. The Succinctly books are free downloads and the DevOps one takes you through all DevOps has to offer. You can probably skip right to the build and deployment pipelines chapters. It's pretty detailed, so you should be able to follow along and deploy your app after reading it. The Migrating Apps to the Cloud book is not free and has an emphasis on Azure, so probably not what you're looking for. Although it does have chapters on DevOps and using Azure with Visual Studio. If you have any questions I'd be happy to help!
Best, Sander Azure DevOps Succinctly (free eBook) Azure Serverless Succinctly (free eBook) Migrating Apps to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript
Sander, thanks for the reminder about your books. I've downloaded and read some of your earlier books, and the new ones will be useful. You have a good ability to explain and illustrate. Thanks also to your publisher for making these available.
-
Sander, thanks for the reminder about your books. I've downloaded and read some of your earlier books, and the new ones will be useful. You have a good ability to explain and illustrate. Thanks also to your publisher for making these available.
Thanks, I hope it'll help! :)
Best, Sander Azure DevOps Succinctly (free eBook) Azure Serverless Succinctly (free eBook) Migrating Apps to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript
-
Hi all, I am looking for recommendations on books or other resources that can walk me through taking an app I have built in Visual Studio 2019, using Azure DevOps for a code repo (which I do now), and deploying to Azure (I have an Azure account and two subscriptions). Most of what I find is out of date, is geared around Visual Studio Code, or even worse, using the command line for Azure. For me, this is not the 1980s, so I don't use command line ops unless there is no other way. VS Code, while great for Linux users, is little more than vi or Notepad++ compared to VS 2019. If that is your cup of tea, that is fine, and I am not being judgmental, just clarifying my preference for productivity in a Windows development environment. If you know of any such books or other resources, particularly that go step-by-step through the overcomplicated machinations of deploying to Azure, I would appreciate your input. And no, I am not interested in AWS. I can create and deploy to the Azure DevOps repo now, and all the associated project management there. It is getting an app (web app, API app, SQL DB, etc.) deployed to Azure that I need to learn. Thanks in advance