Set version to build for staging

This commit is contained in:
2023-02-19 10:29:29 +01:00
parent efbe6efc20
commit aa38623633
90 changed files with 343 additions and 189 deletions

View File

@@ -1,19 +1,19 @@
export class SoftwareVersion {
Major: string;
Minor: string;
Micro: string;
Major: string;
Minor: string;
Micro: string;
constructor(
major: string,
minor: string,
micro: string
) {
this.Major = major;
this.Minor = minor;
this.Micro = micro;
}
constructor(
major: string,
minor: string,
micro: string
) {
this.Major = major;
this.Minor = minor;
this.Micro = micro;
}
getVersionString(): string {
return `${this.Major}.${this.Minor}.${this.Micro}`;
}
}
getVersionString(): string {
return `${this.Major}.${this.Minor}.${this.Micro}`;
}
}