In the latest post I talked about how we can migrate project files from VS 2015 to VS 2017 and the changes introduced in this migration. One of the improvements is that the new project file is based on .NET SDK that we can use to manage the project. Of course we can continue to … Continue reading Versioning a Visual Studio 2017 project with Atlassian Bamboo
Category: Continuous Integration
Continuous integration with Atlassian Bamboo
The continuous integration is a frequent theme in the application development, expecially in the projects with many developers involved that work on differents components of the application. Just because the developers works on different features, a process that integrate the new code frequently in project and verify that all the dependencies of that are working … Continue reading Continuous integration with Atlassian Bamboo
Deploy a .NET project with powershell and git
In this topic I want to share my experience in writing a powershell script to compile and publish a .NET project. I use Git and a GitHub repository, so in my mind the script should restore the nuget packages, build the project with MSBuild, take the last tag (version) from the master branch of the … Continue reading Deploy a .NET project with powershell and git