Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
mmajcica committed May 30, 2019
1 parent f930775 commit 054f4db
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions task/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"version": {
"Major": "2",
"Minor": "0",
"Patch": "4"
"Patch": "5"
},
"minimumAgentVersion": "1.95.0",
"instanceNameFormat": "Build solution with DevEnv: $(solution)",
Expand All @@ -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."
},
Expand Down
2 changes: 1 addition & 1 deletion vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 054f4db

Please sign in to comment.