You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Log.Warning("Config file not found. The provided version ({version}) will still be used",Version);
63
+
Log.Warning("Config file not found. The provided version ({Version}) will still be used",Version);
64
64
_workingVersion=Version;
65
65
}
66
66
else
@@ -79,7 +79,7 @@ internal class Build : NukeBuild
79
79
{
80
80
if(Version!=null)
81
81
{
82
-
Log.Warning("Failed to load the config file. The provided version ({version}) will still be used",Version);
82
+
Log.Warning("Failed to load the config file. The provided version ({Version}) will still be used",Version);
83
83
_workingVersion=Version;
84
84
}
85
85
else
@@ -98,12 +98,12 @@ internal class Build : NukeBuild
98
98
{
99
99
if(Version!=null)
100
100
{
101
-
Log.Warning("The version provided by the config file ({configVersion}) is invalid. The provided version ({version}) will still be used",version,Version);
101
+
Log.Warning("The version provided by the config file ({ConfigVersion}) is invalid. The provided version ({Version}) will still be used",version,Version);
102
102
_workingVersion=Version;
103
103
}
104
104
else
105
105
{
106
-
Log.Warning("The version provided by the config file ({configVersion}) is invalid. The version \"1.0.0\" will be used as a fallback",version);
106
+
Log.Warning("The version provided by the config file ({ConfigVersion}) is invalid. The version \"1.0.0\" will be used as a fallback",version);
107
107
_workingVersion="1.0.0";
108
108
}
109
109
@@ -152,8 +152,8 @@ internal class Build : NukeBuild
0 commit comments