Skip to content

Commit

Permalink
chore: readme update, replace html table with markdown syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
linusruth committed May 11, 2018
1 parent 970d4ea commit c92f34d
Showing 1 changed file with 11 additions and 64 deletions.
75 changes: 11 additions & 64 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,70 +51,17 @@ If you _really_ want to install VS 2015 on Windows Server 2012R2 over naked WinR

## Optional

<table>
<tr>
<th>Key</th>
<th>Type</th>
<th>Description</th>
<th>Default</th>
</tr>
<tr>
<td><code>['visualstudio']['source']</code></td>
<td>Url</td>
<td>http(s) root url to all version/edition's ISOs are stored for VisualStudio installation.</td>
<td></td>
</tr>
<tr>
<td><code>['visualstudio'][VERSION][EDITION]['source']</code></td>
<td>Url</td>
<td>
http(s) root url to this version/edition's ISO is stored for VisualStudio installation. VERSION and EDITION should be replaced with one of the supported VS versions/editions. This attribute when set takes precedence over node['visualstudio']['source'].
</td>
<td></td>
</tr>
<tr>
<td><code>['visualstudio'][VERSION]['update']['source']</code></td>
<td>Url</td>
<td>http(s) root url to this version's update ISO is stored for installation.</td>
<td></td>
</tr>
<tr>
<td><code>['visualstudio']['edition']</code></td>
<td>Boolean</td>
<td>The VisualStudio edition to install, i.e. community, professional, premium, ultimate, testprofessional.</td>
<td><code>community</code></td>
</tr>
<tr>
<td><code>['visualstudio']['version']</code></td>
<td>Integer</td>
<td>The VisualStudio version to install, i.e. 2010, 2012, 2013, 2015.</td>
<td><code>2015</code></td>
</tr>
<tr>
<td><code>['visualstudio']['enable_nuget_package_restore']</code></td>
<td>Boolean</td>
<td>Sets the system wide environment variable to enable MSBuild/VisualStudio package restore on build.</td>
<td><code>True</code></td>
</tr>
<tr>
<td><code>['visualstudio']['installs']</code></td>
<td>Array</td>
<td>An array of hashes that contain the various versions and editions of VS to install. See Usage below for an example.</td>
<td></td>
</tr>
<tr>
<td><code>['visualstudio']['install_items'][FEATURE]['selected']</code></td>
<td>Boolean</td>
<td>Configures the feature on/off. This currently applies to all versions/editions being installed.</td>
<td></td>
</tr>
<tr>
<td><code>['visualstudio']['2010']['professional']['config_file']</code></td>
<td>String</td>
<td>The name of the VS 2010 unattend.ini template to use.</td>
<td></td>
</tr>
</table>
| Key | Type | Description | Default |
|-----|------|-------------|---------|
| `['visualstudio']['source']` | URL | HTTP(S) root URL beneath which ISOs for all versions/editions of Visual Studio are stored. | |
| `['visualstudio'][VERSION][EDITION]['source']` | URL | HTTP(S) root URL beneath which the ISO for a specific `VERSION` and `EDITION` of Visual Studio is stored. `VERSION` and `EDITION` should be replaced with one of the supported Visual Studio versions/editions. This attribute, when set, takes precedence over `node['visualstudio']['source']`. | |
| `['visualstudio'][VERSION]['update']['source']` | URL | HTTP(S) root URL beneath which the update ISO for a specific `VERSION` is stored. | |
| `['visualstudio']['edition']` | Boolean | The Visual Studio edition to install, i.e. community, professional, premium, ultimate, testprofessional. | `community` |
| `['visualstudio']['version']` | Integer | The Visual Studio version to install, i.e. 2010, 2012, 2013, 2015. | `2015` |
| `['visualstudio']['enable_nuget_package_restore']` | Boolean | Sets the system wide environment variable to enable MSBuild/Visual Studio package restore on build. | `True` |
| `['visualstudio']['installs']` | Array | An array of hashes that contain the various versions and editions of Visual Studio to install. See Usage below for an example. | |
| `['visualstudio']['install_items'][FEATURE]['selected']` | Boolean | Configures the feature on/off. This currently applies to all versions/editions being installed. | |
| `['visualstudio']['2010']['professional']['config_file']` | String | The name of the Visual Studio 2010 unattend.ini template to use. | |

# Usage

Expand Down

0 comments on commit c92f34d

Please sign in to comment.