File tree Expand file tree Collapse file tree 5 files changed +10
-2
lines changed
build/build/Tasks/Package Expand file tree Collapse file tree 5 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1313 dotnet_versions :
1414 required : true
1515 type : string
16+
1617env :
1718 DOTNET_INSTALL_DIR : " ./.dotnet"
1819 DOTNET_ROLL_FORWARD : " Major"
Original file line number Diff line number Diff line change 1313 dotnet_versions :
1414 required : true
1515 type : string
16+
1617env :
1718 DOTNET_INSTALL_DIR : " ./.dotnet"
1819 DOTNET_ROLL_FORWARD : " Major"
Original file line number Diff line number Diff line change 77 dotnet_versions :
88 required : true
99 type : string
10+
1011env :
1112 DOTNET_INSTALL_DIR : " ./.dotnet"
1213 DOTNET_ROLL_FORWARD : " Major"
Original file line number Diff line number Diff line change 77 dotnet_versions :
88 description : ' List of .NET versions'
99 value : ${{ jobs.set_matrix.outputs.dotnet_versions }}
10+
11+ env :
12+ DOTNET_INSTALL_DIR : " ./.dotnet"
13+ DOTNET_ROLL_FORWARD : " Major"
14+
1015jobs :
1116 prepare :
1217 name : ${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ private static void PackageWithCli(BuildContext context)
2525 // GitVersion.MsBuild, global tool & core
2626 context . DotNetPack ( "./src/GitVersion.Core" , settings ) ;
2727
28- settings . ArgumentCustomization = arg => arg . Append ( "/ p:PackAsTool=true" ) ;
28+ settings . ArgumentCustomization = arg => arg . Append ( "- p:PackAsTool=true" ) ;
2929 context . DotNetPack ( "./src/GitVersion.App" , settings ) ;
3030
31- settings . ArgumentCustomization = arg => arg . Append ( "/ p:IsPackaging=true" ) ;
31+ settings . ArgumentCustomization = arg => arg . Append ( "- p:IsPackaging=true" ) ;
3232 context . DotNetPack ( "./src/GitVersion.MsBuild" , settings ) ;
3333 }
3434}
You can’t perform that action at this time.
0 commit comments