File tree 5 files changed +10
-2
lines changed
build/build/Tasks/Package
5 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 13
13
dotnet_versions :
14
14
required : true
15
15
type : string
16
+
16
17
env :
17
18
DOTNET_INSTALL_DIR : " ./.dotnet"
18
19
DOTNET_ROLL_FORWARD : " Major"
Original file line number Diff line number Diff line change 13
13
dotnet_versions :
14
14
required : true
15
15
type : string
16
+
16
17
env :
17
18
DOTNET_INSTALL_DIR : " ./.dotnet"
18
19
DOTNET_ROLL_FORWARD : " Major"
Original file line number Diff line number Diff line change 7
7
dotnet_versions :
8
8
required : true
9
9
type : string
10
+
10
11
env :
11
12
DOTNET_INSTALL_DIR : " ./.dotnet"
12
13
DOTNET_ROLL_FORWARD : " Major"
Original file line number Diff line number Diff line change 7
7
dotnet_versions :
8
8
description : ' List of .NET versions'
9
9
value : ${{ jobs.set_matrix.outputs.dotnet_versions }}
10
+
11
+ env :
12
+ DOTNET_INSTALL_DIR : " ./.dotnet"
13
+ DOTNET_ROLL_FORWARD : " Major"
14
+
10
15
jobs :
11
16
prepare :
12
17
name : ${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ private static void PackageWithCli(BuildContext context)
25
25
// GitVersion.MsBuild, global tool & core
26
26
context . DotNetPack ( "./src/GitVersion.Core" , settings ) ;
27
27
28
- settings . ArgumentCustomization = arg => arg . Append ( "/ p:PackAsTool=true" ) ;
28
+ settings . ArgumentCustomization = arg => arg . Append ( "- p:PackAsTool=true" ) ;
29
29
context . DotNetPack ( "./src/GitVersion.App" , settings ) ;
30
30
31
- settings . ArgumentCustomization = arg => arg . Append ( "/ p:IsPackaging=true" ) ;
31
+ settings . ArgumentCustomization = arg => arg . Append ( "- p:IsPackaging=true" ) ;
32
32
context . DotNetPack ( "./src/GitVersion.MsBuild" , settings ) ;
33
33
}
34
34
}
You can’t perform that action at this time.
0 commit comments