diff --git a/README.md b/README.md index 49ac981..5f03c8b 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ This extension will add a build task in your TFS/VSTS instance that will allow you to build your projects using DevEnv.com (Visual Studio). Most of the .Net projects are built by MSBuild and there are out of the box tasks that will allow you to do so. However, some project types, as Integration Services Project can only be built with Visual Studio as they are not based on MSBuild. +You can read more about this extension in the post [Building Visual Studio projects with DevEnv.com](http://blog.majcica.com/2019/05/30/building-visual-studio-projects-with-devenv-com/) and get some insights in practical usage of it in the post [Deploy SSIS packages from TFS/VSTS Build/Release](http://blog.majcica.com/2018/04/25/deploy-ssis-packages-from-tfs-vsts-build-release/). + ## Requirements The desired Visual Studio version needs to be present on your build server. diff --git a/task/task.json b/task/task.json index 4095268..ee5b7e9 100644 --- a/task/task.json +++ b/task/task.json @@ -15,7 +15,7 @@ "version": { "Major": "2", "Minor": "0", - "Patch": "4" + "Patch": "5" }, "minimumAgentVersion": "1.95.0", "instanceNameFormat": "Build solution with DevEnv: $(solution)", @@ -24,7 +24,7 @@ "name": "solution", "type": "filePath", "label": "Solution / Project", - "defaultValue": "", + "defaultValue": "**\\*.sln", "required": true, "helpMarkDown": "Solution or Project to build. When you enter a project file, the IDE looks for an .sln file with the same base name as the project file in the parent directory for the project file. If no such .sln file exists, then the IDE looks for a single .sln file that references the project. If no such single .sln file exists, then the IDE creates an unsaved solution with a default .sln file name that has the same base name as the project file." }, diff --git a/vss-extension.json b/vss-extension.json index c04a1a3..7231420 100644 --- a/vss-extension.json +++ b/vss-extension.json @@ -2,7 +2,7 @@ "manifestVersion": 1, "extensionId": "devenv-build", "name": "Build with devenv (Visual Studio)", - "version": "2.0.2", + "version": "2.0.3", "publisher": "mmajcica", "description": "Build a project using devenv.com", "public": false,