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
To simplify passing the version as argument to the different tools in the build pipeline (e.g. dotnet build, dotnet pack, etc.).
var version = MinVer();
// Currently
var customVersion1 = BuildCustomVersion(version.Version);
var customVersion2 = BuildCustomVersion(version.ToString());
// Desired:
var customVersion2 = BuildCustomVersion(version);
// ---
static string BuildCustomVersion(string versionString)
{
// ...
}
The text was updated successfully, but these errors were encountered:
To simplify passing the version as argument to the different tools in the build pipeline (e.g.
dotnet build
,dotnet pack
, etc.).The text was updated successfully, but these errors were encountered: