YamlCreate.ps1 #21005
-
Is there a reason that the YamlCreate powershell script doesn't listen for keypresses and goes based on strings when selecting whether to create a new manifest or update an existing one? Would this be something that could be, or should be, changed about it? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
If you know some Powershell, feel free to go crazy with improving the YamlCreate script, i would love more contributors... It kinda also badly need a better way to process the yaml file instead of reading line by line in raw, someone suggested using YamlDotNet but i'm unsure what we can use.. The current YamlCreate.ps1 is basically a beefed up version of the old one which KevinLaMS created over a year ago (Latest small fix) Also wingetcreate have the potential to be a way better CLI Yaml Creator, however the development is.. slow.. and its missing the features from YamlCreate which i expected to be in v0.1 |
Beta Was this translation helpful? Give feedback.
-
Feel free to make suggestions for the Windows Package Manager Manifest Creator as well. We want to make authoring and validating manifests easier without compromising on quality. YamlCreate has been very helpful, and iterates quickly, so use what tool works for you. |
Beta Was this translation helpful? Give feedback.
If you know some Powershell, feel free to go crazy with improving the YamlCreate script, i would love more contributors...
If you just have ideas, i could try to add them, but since none is giving feedback or helping with the code i have no idea what to do 🤷♂️
It kinda also badly need a better way to process the yaml file instead of reading line by line in raw, someone suggested using YamlDotNet but i'm unsure what we can use..
The current YamlCreate.ps1 is basically a beefed up version of the old one which KevinLaMS created over a year ago (Latest small fix)
Also wingetcreate have the potential to be a way better CLI Yaml Creator, however the development is.. slow.. and its missing the …