File tree 9 files changed +35
-184
lines changed
jobs/windows-netframework-dev-tools
windows-netframework-dev-tools
9 files changed +35
-184
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
name: windows-netframework-dev-tools
3
3
4
- templates: {}
5
-
6
- packages:
7
- - windows-netframework-dev-tools
8
- - unzip
9
- - git
4
+ templates:
5
+ pre-start.ps1: bin/pre-start.ps1
6
+
7
+ packages:[]
10
8
11
9
properties: {}
12
10
Original file line number Diff line number Diff line change
1
+ Set-PSDebug - trace 1 # "set -x"
2
+ Set-PSDebug - strict # "set -u"
3
+ $ErrorActionPreference = " Stop" # "set -e"
4
+
5
+ # avoid overly narrow default linewrap
6
+ $term = (get-host ).ui.rawui
7
+ $size = $term.buffersize
8
+ $size.width = 128
9
+ $term.buffersize = $size
10
+ $size = $term.windowsize
11
+ $size.width = 128
12
+ $term.windowsize = $size
13
+
14
+ [Net.ServicePointManager ]::SecurityProtocol = [Net.SecurityProtocolType ]::Tls12
15
+
16
+ Set-ExecutionPolicy Bypass - Scope Process - Force
17
+ Invoke-WebRequest https:// chocolatey.org/ install.ps1 - UseBasicParsing | Invoke-Expression
18
+
19
+ $env: Path += " ;%ALLUSERSPROFILE%\chocolatey\bin"
20
+
21
+ choco install powershell- packagemanagement - y
22
+ choco install visualstudio2017community - y
23
+ choco install visualstudio2017- workload- netcoretools - y
24
+ choco install visualstudio2017- workload- netweb - y
25
+ choco install visualstudio2017- workload- node - y
26
+ choco install visualstudio2017- workload- azure - y
27
+ choco install visualstudio2017- workload- nativedesktop - y
28
+ choco install visualstudio2017- workload- manageddesktop - y
29
+ choco install nodejs.install - y
30
+ choco install cloudfoundry- cli - y
31
+ choco install nuget.commandline - y
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments