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

13 lines
171 B
C#
Raw Normal View History

2017-02-14 23:47:06 +00:00
using System;
namespace Lib
{
public class Library
{
public static string GetMessage()
{
return "Message from Lib";
}
}
}