File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
// Copyright (c) 2022-2023 Weihan Li. All rights reserved.
2
2
// Licensed under the Apache license version 2.0 http://www.apache.org/licenses/LICENSE-2.0
3
3
4
- var target = CommandLineParser . Val ( "target" , args , "Default" ) ;
5
- var apiKey = CommandLineParser . Val ( "apiKey" , args ) ;
6
- var stable = CommandLineParser . BooleanVal ( "stable" , args ) ;
7
- var noPush = CommandLineParser . BooleanVal ( "noPush" , args ) ;
4
+ var target = CommandLineParser . Val ( args , "target" , "Default" ) ;
5
+ var apiKey = CommandLineParser . Val ( args , "apiKey" ) ;
6
+ var stable = CommandLineParser . BooleanVal ( args , "stable" ) ;
7
+ var noPush = CommandLineParser . BooleanVal ( args , "noPush" ) ;
8
8
var branchName = EnvHelper . Val ( "BUILD_SOURCEBRANCHNAME" , "local" ) ;
9
9
10
10
var solutionPath = "./WeihanLi.Common.sln" ;
You can’t perform that action at this time.
0 commit comments