dotnet-installer/TestAssets/TestProjects/InvalidSolution/Lib/Library.cs

13 lines
171 B
C#
Raw Normal View History

using System;
namespace Lib
{
public class Library
{
public static string GetMessage()
{
return "Message from Lib";
}
}
}