Version numbers were all over the place - different versions in localization files (3.0.0.13, and 3.0.0.1 in PL), GitHub manifest (3.0.0.12), extension stores manifest (3.0.0.14), and package.json (2.0.0).
This pull request aims to fix the problem by changing all the version references except for one in package.json to template strings. These template strings will be replaced to the actual build number from package.json at build time.
Because versioning scheme of this project is not compatible with SemVer, it looks different in package.json (e.g. 3.0.0-14 instead of 3.0.0.14), but it's converted back to the currently used versioning scheme during the build.
Version numbers were all over the place - different versions in localization files (
3.0.0.13
, and3.0.0.1
in PL), GitHub manifest (3.0.0.12
), extension stores manifest (3.0.0.14
), andpackage.json
(2.0.0
).This pull request aims to fix the problem by changing all the version references except for one in
package.json
to template strings. These template strings will be replaced to the actual build number frompackage.json
at build time.Because versioning scheme of this project is not compatible with SemVer, it looks different in
package.json
(e.g.3.0.0-14
instead of3.0.0.14
), but it's converted back to the currently used versioning scheme during the build.