File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class BuildVersion
14
14
15
15
if ( ! string . IsNullOrWhiteSpace ( gitVersion . BuildMetaData ) ) {
16
16
semVersion += "-" + gitVersion . BuildMetaData ;
17
- tfxVersion += "." + gitVersion . BuildMetaData ;
17
+ tfxVersion += "." + DateTime . UtcNow . ToString ( "yyMMddHH" ) ;
18
18
}
19
19
20
20
return new BuildVersion
Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ export class GitVersionTask {
45
45
parser . addArgument (
46
46
[ '-r' , '--runtime' ] ,
47
47
{
48
- help : '[mono |netcore]' ,
49
- defaultValue : 'mono '
48
+ help : '[full |netcore]' ,
49
+ defaultValue : 'full '
50
50
}
51
51
) ;
52
52
@@ -58,7 +58,7 @@ export class GitVersionTask {
58
58
toolRunner . arg ( gitVersionPath ) ;
59
59
break ;
60
60
61
- case 'mono ' :
61
+ case 'full ' :
62
62
default :
63
63
const isWin32 = os . platform ( ) == "win32" ;
64
64
if ( isWin32 ) {
You can’t perform that action at this time.
0 commit comments