dotnet-installer/TestAssets/NonRestoredTestProjects/PJAppWithSlnThatDoesNotRefCsproj/TestLibrary/Helper.cs
2017-02-17 17:02:15 -08:00

15 lines
278 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TestLibrary
{
public static class Lib
{
public static string GetMessage()
{
return "Hello from TestLibrary.Lib";
}
}
}