Skip to content

Commit

Permalink
Readme update; Version number
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkone committed Apr 22, 2016
1 parent 62d9fda commit 9b389fb
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -237,3 +237,5 @@ _Pvt_Extensions
*.vsix
/VSTS.DNX.Tasks.BuildWebPackage/InstallDNVM.psm1
/VSTS.DNX.Tasks.BuildNugetPackage/InstallDNVM.psm1
/VSTS.DNX.Tasks.BuildNugetPackage/Common.psm1
/VSTS.DNX.Tasks.BuildWebPackage/Common.psm1
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ Please have a look here: [GitHub Issues](https://github.com/kirkone/vsts-dnx-tas

### Release Notes

#### Version 0.0.20
#### Version 0.0.21

- updated Readme file
- code cleanup

##### DNX Tasks Build Nuget 0.0.4
##### DNX Tasks Build Nuget 0.0.5

- added option for "**Source Folder**"
- fixed project count in console output
Expand All @@ -82,6 +82,16 @@ Please have a look here: [GitHub Issues](https://github.com/kirkone/vsts-dnx-tas

- fixed project count in console output

##### DNX Tasks Publish Web 0.0.3

- added option for "**Web App Location**"

##### DNX Tasks Azure SlotSwap 0.0.3

- added option for "**Web App Location**"



#### Version 0.0.19

- updated Readme file
Expand Down
14 changes: 7 additions & 7 deletions VSTS.DNX.Tasks.BuildNugetPackage/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"name": "DNX.Tasks.BuildNugetPackage",
"friendlyName": "DNX Tasks Build Nuget Package",
"description": "Build a Nuget package with dnx.",
"helpMarkDown": "Version: 0.0.4",
"helpMarkDown": "Version: 0.0.5",
"category": "Build",
"author": "Kirsten Kluge",
"version": {
"Major": 0,
"Minor": 0,
"Patch": 4
"Patch": 5
},
"visibility": [
"Build"
Expand Down Expand Up @@ -67,16 +67,16 @@
{
"name": "WorkingFolder",
"type": "filePath",
"label": "Working folder",
"label": "Working Folder",
"defaultValue": "$(Build.SourcesDirectory)",
"required": false,
"helpMarkDown": "Current working directory when script is run.",
"groupName": "advanced"
},
{
"name": "SourceFolder",
"type": "filePath",
"label": "Source folder",
"type": "string",
"label": "Source Folder",
"defaultValue": "\\src",
"required": false,
"helpMarkDown": "Folder where your project directories are. <br>Default is: \\src",
Expand All @@ -85,7 +85,7 @@
{
"name": "SpecificRuntime",
"type": "boolean",
"label": "Specific runtime",
"label": "Specific Runtime",
"defaultValue": "false",
"required": true,
"helpMarkDown": "If this is true, the runtime will be same as in global.json including architecture",
Expand All @@ -94,7 +94,7 @@
{
"name": "UnstableRuntime",
"type": "boolean",
"label": "Unstable runtime",
"label": "Unstable Runtime",
"defaultValue": "false",
"required": true,
"helpMarkDown": "If this is true, the runtime will be from the unstable dev feed. This will give you the latest development version of the runtime.",
Expand Down
4 changes: 2 additions & 2 deletions VSTS.DNX.Tasks.BuildWebPackage/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
{
"name": "SpecificRuntime",
"type": "boolean",
"label": "Specific runtime",
"label": "Specific Runtime",
"defaultValue": "false",
"required": true,
"helpMarkDown": "If this is true, the runtime will be same as in global.json including architecture",
Expand All @@ -94,7 +94,7 @@
{
"name": "UnstableRuntime",
"type": "boolean",
"label": "Unstable runtime",
"label": "Unstable Runtime",
"defaultValue": "false",
"required": true,
"helpMarkDown": "If this is true, the runtime will be from the unstable dev feed. This will give you the latest development version of the runtime.",
Expand Down
10 changes: 9 additions & 1 deletion vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "vsts-dnx-tasks",
"name": "VSTS DNX Tasks",
"version": "0.0.20",
"version": "0.0.21",
"publisher": "kirkone",
"public": true,
"targets": [
Expand Down Expand Up @@ -59,6 +59,10 @@
{
"path": "VSTS.DNX.Tasks.BuildWebPackage/BuildWebPackage.ps1"
},
{
"path": "VSTS.DNX.Tasks.BuildWebPackage/Common.psm1",
"contentType": "text/plain"
},
{
"path": "VSTS.DNX.Tasks.BuildWebPackage/InstallDNVM.psm1",
"contentType": "text/plain"
Expand All @@ -73,6 +77,10 @@
{
"path": "VSTS.DNX.Tasks.BuildNugetPackage/BuildNugetPackage.ps1"
},
{
"path": "VSTS.DNX.Tasks.BuildNugetPackage/Common.psm1",
"contentType": "text/plain"
},
{
"path": "VSTS.DNX.Tasks.BuildNugetPackage/InstallDNVM.psm1",
"contentType": "text/plain"
Expand Down

0 comments on commit 9b389fb

Please sign in to comment.