Added comment about updating in VS calls of dotnet migrate when cli args change.

This commit is contained in:
Fredric Silberberg 2016-10-05 14:26:20 -07:00
parent 50e83b9c65
commit b2802cdf50
No known key found for this signature in database
GPG key ID: D2DE2F12CBC24B30

View file

@ -11,6 +11,12 @@ namespace Microsoft.DotNet.Tools.Migrate
{
public static int Run(string[] args)
{
// 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
DebugHelper.HandleDebugSwitch(ref args);
CommandLineApplication app = new CommandLineApplication();