46ab621422
- Given a project migrate all the project references recursively. - Add a boolean option '--skip-project-references' to skip migrating P2P references. By default P2P references are migrated. - Remove the '--output' since it is not used heavily and makes migrating multiple projects easier. - Add tests
15 lines
379 B
C#
15 lines
379 B
C#
// 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;
|
|
|
|
namespace TestLibrary
|
|
{
|
|
public static class ProjectB
|
|
{
|
|
public static string GetMessage()
|
|
{
|
|
return "This string came from ProjectB";
|
|
}
|
|
}
|
|
}
|