Uh oh!
There was an error while loading. Please reload this page.
Add dotnet tool ability to XMLtoMD proj - #157
Conversation
BenjaminMichaelis
commented
Mar 6, 2021
- DragonFruit CLI tool added
- pack and nupkg tool ability added
- upgraded from .netcore3.1 to .net5.0 - suppressed warning syslib0012 Will need to address https://docs.microsoft.com/en-us/dotnet/core/compatibility/syslib-warnings/syslib0012 Most likely by using Assembly.Location
- added XML nodes for ability to pack and distribute the application as a nupkg
.Net 5.0 upgrade will be coming in the future
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
| /// <param name="i">The xml file to process when using the -m option</param> | ||
| /// <param name="o">The md file to create when using the -m option </param> | ||
| /// <param name="m">Manual Run - Use xmlFilePath and outputMDFilePath</param> | ||
| static void Main(string[] args, string xmlFileName, string i = "null", string o = "null", bool m = false) |
There was a problem hiding this comment.
You shouldn't need to take in the string args and instead just specify the parameters that you need.
This will likely require changing the invocation on the GitHub Action.
You can use FileInfo as the parameter type and it will properly parse it for you.
| staticvoidMain(string[]args,stringxmlFileName,stringi="null",stringo="null",boolm=false) | |
| staticvoidMain(stringxmlFileName,stringi="null",stringo="null",boolm=false) |
There was a problem hiding this comment.
Removed default args []
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Co-authored-by: Kevin B <Keboo@users.noreply.github.com>
BenjaminMichaelis
commented
Mar 30, 2021
What's the status on this? @Keboo |