File tree 3 files changed +37
-1
lines changed
3 files changed +37
-1
lines changed Original file line number Diff line number Diff line change
1
+ ** /bin
2
+ ** /obj
3
+ ** /out
4
+ ** /.vscode
5
+ ** /.vs
6
+ .dotnet
7
+ .Microsoft.DotNet.ImageBuilder
Original file line number Diff line number Diff line change
1
+ # Build output
2
+ [Bb ]in /
3
+ [Oo ]bj /
4
+ [Oo ]ut /
5
+
6
+ # cache for misc downloads
7
+ artifacts /
8
+
9
+ # dotnet install directory
10
+ .dotnet /
11
+
12
+ # Visual Studio 2015 cache/options directory
13
+ .vs /
14
+
15
+ # Visual Studio Code cache/options directory
16
+ .vscode /
17
+
18
+ # Visual Studio debug profile
19
+ ** /launchSettings.json
20
+
21
+ # Test files
22
+ * .trx
23
+
24
+ # User-specific files
25
+ * .suo
26
+ * .user
27
+
28
+ # ImageBuilder directory
29
+ .Microsoft.DotNet.ImageBuilder
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Set-StrictMode -Version Latest
8
8
$ErrorActionPreference = ' Stop'
9
9
pushd $PSScriptRoot
10
10
try {
11
- ./ scripts / Invoke-ImageBuilder.ps1 " build --path '$DockerfilePath ' $ImageBuilderCustomArgs "
11
+ ./ eng / common / Invoke-ImageBuilder.ps1 " build --path '$DockerfilePath ' $ImageBuilderCustomArgs "
12
12
}
13
13
finally {
14
14
popd
You can’t perform that action at this time.
0 commit comments