This repository has been archived on 2025-09-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
app.Description="Command used to migrate project.json projects to msbuild";
app.HandleResponseFiles=true;
app.HelpOption("-h|--help");
CommandOptiontemplate=app.Option("-t|--template-file","Base MSBuild template to use for migrated app. The default is the project included in dotnet new -t msbuild",CommandOptionType.SingleValue);
CommandOptionoutput=app.Option("-o|--output","Directory to output migrated project to. The default is the project directory",CommandOptionType.SingleValue);
CommandOptionproject=app.Option("-p|--project","The path to the project to run (defaults to the current directory). Can be a path to a project.json or a project directory",CommandOptionType.SingleValue);
CommandOptionsdkVersion=app.Option("-v|--sdk-package-version","The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new -t msbuild",CommandOptionType.SingleValue);