2016-08-22 12:21:52 -07:00
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System ;
using Microsoft.DotNet.Cli.CommandLine ;
using Microsoft.DotNet.Cli.Utils ;
namespace Microsoft.DotNet.Tools.Migrate
{
public partial class MigrateCommand
{
public static int Run ( string [ ] args )
{
2016-10-05 14:26:20 -07:00
// IMPORTANT:
// When updating the command line args for dotnet-migrate, we need to update the in-VS caller of dotnet migrate as well.
// It is located at dotnet/roslyn-project-system:
// src/Microsoft.VisualStudio.ProjectSystem.CSharp.VS/ProjectSystem/VS/Xproj/MigrateXprojFactory.cs
2016-08-22 12:21:52 -07:00
DebugHelper . HandleDebugSwitch ( ref args ) ;
2016-08-23 13:50:05 -07:00
CommandLineApplication app = new CommandLineApplication ( ) ;
2016-08-22 12:21:52 -07:00
app . Name = "dotnet migrate" ;
app . FullName = ".NET Migrate Command" ;
app . Description = "Command used to migrate project.json projects to msbuild" ;
app . HandleResponseFiles = true ;
app . HelpOption ( "-h|--help" ) ;
2016-10-04 10:39:55 -07:00
CommandArgument projectArgument = app . Argument ( "<PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR>" ,
2016-10-05 16:25:04 -07:00
string . Join ( Environment . NewLine ,
"The path to " ,
" - a project.json file to migrate." ,
"or" ,
" - a global.json file, it will migrate the folders specified in global.json." ,
"or" ,
" - a directory to migrate, it will recursively search for project.json files to migrate." ,
"Defaults to current directory if nothing is specified." ) ) ;
2016-09-26 14:16:17 -07:00
2016-10-14 00:06:35 -07:00
CommandOption template = app . Option ( "-t|--template-file" , "Base MSBuild template to use for migrated app. The default is the project included in dotnet new" , CommandOptionType . SingleValue ) ;
2016-10-18 10:35:04 -07:00
CommandOption sdkVersion = 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" , CommandOptionType . SingleValue ) ;
2016-09-21 17:27:02 -07:00
CommandOption xprojFile = app . Option ( "-x|--xproj-file" , "The path to the xproj file to use. Required when there is more than one xproj in a project directory." , CommandOptionType . SingleValue ) ;
2016-09-23 00:30:41 -07:00
CommandOption skipProjectReferences = app . Option ( "-s|--skip-project-references" , "Skip migrating project references. By default project references are migrated recursively" , CommandOptionType . BoolValue ) ;
2016-10-04 14:59:04 -07:00
CommandOption reportFile = app . Option ( "-r|--report-file" , "Output migration report to a file in addition to the console." , CommandOptionType . SingleValue ) ;
CommandOption structuredReportOutput = app . Option ( "--format-report-file-json" , "Output migration report file as json rather than user messages" , CommandOptionType . BoolValue ) ;
2016-08-22 12:21:52 -07:00
app . OnExecute ( ( ) = >
{
MigrateCommand migrateCommand = new MigrateCommand (
2016-09-23 00:30:41 -07:00
template . Value ( ) ,
2016-09-26 14:16:17 -07:00
projectArgument . Value ,
2016-09-21 17:27:02 -07:00
sdkVersion . Value ( ) ,
2016-09-23 00:30:41 -07:00
xprojFile . Value ( ) ,
2016-10-04 14:59:04 -07:00
reportFile . Value ( ) ,
skipProjectReferences . BoolValue . HasValue ? skipProjectReferences . BoolValue . Value : false ,
structuredReportOutput . BoolValue . HasValue ? structuredReportOutput . BoolValue . Value : false ) ;
2016-08-22 12:21:52 -07:00
2016-08-23 13:50:05 -07:00
return migrateCommand . Execute ( ) ;
2016-08-22 12:21:52 -07:00
} ) ;
try
{
return app . Execute ( args ) ;
}
catch ( Exception ex )
{
#if DEBUG
Reporter . Error . WriteLine ( ex . ToString ( ) ) ;
#else
Reporter . Error . WriteLine ( ex . Message ) ;
#endif
2016-10-10 15:38:25 -07:00
Reporter . Error . WriteLine ( "Migration failed." ) ;
2016-08-22 12:21:52 -07:00
return 1 ;
}
}
}
}