dotnet-installer/TestAssets/TestPackages/PackageWithFakeNativeDep/Lib.cs

11 lines
176 B
C#
Raw Normal View History

2016-04-11 19:19:42 +00:00
namespace PackageWithFakeNativeDep
{
public static class Lib
{
public static string GetMessage()
{
return "Hello, World";
}
}
}