Comments for Azure DevOps and Visual Studio Awesomeness https://blogs.like10.com DevOps like 10!? Turn your DevOps up to 11! Fri, 09 Dec 2022 06:18:33 +0000 hourly 1 http://wordpress.com/ Comment on Working with Web Deploy and Release Management by Lance I https://blogs.like10.com/2016/09/08/working-with-web-deploy-and-release-management/#comment-141588 Fri, 09 Dec 2022 06:18:33 +0000 http://blogs.like10.com/?p=2138#comment-141588 Thank yyou

Like

]]>
Comment on Using the Power Platform Build Tools w/Azure Pipelines by Wes MacDonald https://blogs.like10.com/2020/09/01/using-the-power-platform-build-tools-w-azure-pipelines/#comment-140292 Thu, 06 Oct 2022 13:25:06 +0000 http://blogs.like10.com/?p=4057#comment-140292 In reply to chandra.

You can use the Set Version task in this extension. https://marketplace.visualstudio.com/items?itemName=WaelHamze.xrm-ci-framework-build-tasks here is an example using the PowerPlatform Build Tools in a YAML pipeline https://dev.azure.com/like10-demos/dynamics/_git/SampleSolution?path=/azure-pipelines-build-deploy.yml

Like

]]>
Comment on Using the Power Platform Build Tools w/Azure Pipelines by chandra https://blogs.like10.com/2020/09/01/using-the-power-platform-build-tools-w-azure-pipelines/#comment-140291 Thu, 06 Oct 2022 12:53:13 +0000 http://blogs.like10.com/?p=4057#comment-140291 If possible could you please share the Powershell scripts which you have used for set solution versions in the DevOps pipelines.

Liked by 1 person

]]>
Comment on Integrate Azure DevOps work items into your work search results (Microsoft Bing) by Top Stories from the Microsoft DevOps Community – 2021.01.08 - Microsoft Today https://blogs.like10.com/2021/01/06/integrate-azure-devops-work-items-into-your-work-search-results-microsoft-bing/#comment-115167 Fri, 08 Jan 2021 18:50:04 +0000 http://blogs.like10.com/?p=4127#comment-115167 […] Integrate Azure DevOps work items into your work search results (Microsoft Bing)Wes shows us a handy trick for letting Bing (when property authenticated to) return results from your Azure DevOps organization. […]

Like

]]>
Comment on Versioning your SQL Server Database using Team Build and Release Management by Wes MacDonald https://blogs.like10.com/2014/06/17/versioning-your-sql-server-database-using-team-build-and-release-management/#comment-100458 Wed, 28 Oct 2020 15:07:07 +0000 http://blogs.like10.com/?p=1152#comment-100458 In reply to Eduardo Zabat Lorenzo.

No but the PowerShell script used above is located here: https://github.com/wesmacdonald/blog-code-snippets/tree/master/build/PowerShell

Wes

Like

]]>
Comment on Versioning your SQL Server Database using Team Build and Release Management by Eduardo Zabat Lorenzo https://blogs.like10.com/2014/06/17/versioning-your-sql-server-database-using-team-build-and-release-management/#comment-98556 Wed, 21 Oct 2020 06:11:12 +0000 http://blogs.like10.com/?p=1152#comment-98556 Is there an Azure DevOps version of this task?

Like

]]>
Comment on Continuous Delivery of your NuGet Packages with VSTS – SemVer by anderly https://blogs.like10.com/2018/03/18/continuous-delivery-of-your-nuget-packages-with-vsts-semver/#comment-54328 Thu, 02 Apr 2020 17:11:22 +0000 http://blogs.like10.com/?p=3883#comment-54328 In reply to Wes MacDonald.

I’m working on a similar approach that works with DevOps TFVC for a client with a standing Development branch that auto builds pre-release versions similar to your setup. However, we’re reading the Version from the .csproj file. Our thinking is that the developer really needs to think about the “nature of the change” they are making.

Devopment branch builds auto append a pre-release tag like “-dev.1234” so that you don’t have to keep bumping the version in .csproj for every little commit. These are essentially “release candidate” builds. Once it’s signed off on, the Development branch would get merged to Release branch and that would trigger a Release build and drop the pre-release suffix “-dev.1234” resulting in 1.0.0, for example.

If we need to do a bug fix/hotfix, we can either make a change directly on Release branch or branch from the Release branch and create a Hotfix branch and merge back into Release for something like 1.0.1.

The reason we’re going with two different builds is so we can have Debug compilation of -dev pre-packages and Release compilation of production builds (i.e. 1.0.0).

We’ve got debugging working with debug versions and source symbols, but still trying to get debugging to work with release versions and source symbols.

I really like your release promotion strategy as it “feels” better than running a separate build from a separate branch. If I could iron out the bug fix/hotfix strategy and debugging of production nuget packages, I think we could simplify with just one build and a multi-phase release/deployment like yours.

Curious to get your thoughts.

Like

]]>
Comment on Continuous Delivery of your NuGet Packages with VSTS – SemVer by Wes MacDonald https://blogs.like10.com/2018/03/18/continuous-delivery-of-your-nuget-packages-with-vsts-semver/#comment-54324 Thu, 02 Apr 2020 16:50:08 +0000 http://blogs.like10.com/?p=3883#comment-54324 In reply to Adam Anderly.

Hey Adam,

Great question, obviously we’d have to allow the editing of Major & Minor variables including specifying a branch or tag so the correct code gets built and tagged so it is published to the proper feed.

I think that would give you what you need.

Wes

Like

]]>
Comment on Continuous Delivery of your NuGet Packages with VSTS – SemVer by anderly https://blogs.like10.com/2018/03/18/continuous-delivery-of-your-nuget-packages-with-vsts-semver/#comment-54323 Thu, 02 Apr 2020 16:44:48 +0000 http://blogs.like10.com/?p=3883#comment-54323 Hey Wes,

Great stuff here. This looks like a great pipeline setup for planned work. My question is let’s say you have released 1.0.0 through this setup with alpha, beta, release versions of the package making it release.

Now, you have started on version 2.0.0 of the package. How do you handle a bug fix to the 1.0.0 version if you need to get that out before 2.0.0 is released?

Thanks in advance!

Adam

Like

]]>
Comment on Continuous Delivery of your NuGet Packages with VSTS – SemVer by Adam Anderly https://blogs.like10.com/2018/03/18/continuous-delivery-of-your-nuget-packages-with-vsts-semver/#comment-54322 Thu, 02 Apr 2020 16:44:19 +0000 http://blogs.like10.com/?p=3883#comment-54322 Hey Wes,

Great stuff here. This looks like a great pipeline setup for planned work. My question is let’s say you have released 1.0.0 through this setup with alpha, beta, release versions of the package making it release.

Now, you have started on version 2.0.0 of the package. How do you handle a bug fix to the 1.0.0 version if you need to get that out before 2.0.0 is released?

Thanks in advance!

Adam

Like

]]>