dotnet-installer/TestAssets/TestProjects/TestAppDependencyGraph/CsprojLibrary2/Helper.cs

16 lines
385 B
C#
Raw Normal View History

2016-09-26 22:30:51 +00: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;
namespace TestLibrary
{
public static class ProjectC
2016-09-26 22:30:51 +00:00
{
public static string GetMessage()
{
return "This string came from CsprojLibrary2";
2016-09-26 22:30:51 +00:00
}
}
}