03be0e56d4
* WIP * Do not add runtime identifiers for libraries * Reusing an existing test project * Fix up tests
12 lines
178 B
C#
12 lines
178 B
C#
using System;
|
|
|
|
namespace Library
|
|
{
|
|
public class TestLib
|
|
{
|
|
public static void Test()
|
|
{
|
|
Console.WriteLine("Hello World!");
|
|
}
|
|
}
|
|
}
|