Add test assets for testing and tiny bugfix
This commit is contained in:
parent
7edcf556d7
commit
8416085b3a
11 changed files with 283 additions and 3 deletions
|
@ -0,0 +1,21 @@
|
|||
using System;
|
||||
|
||||
namespace NSLib4
|
||||
{
|
||||
public class Lib4
|
||||
{
|
||||
#if NETCOREAPP1_0
|
||||
public static void HelloNCA()
|
||||
{
|
||||
Console.WriteLine("Hello World from Lib4! (netcoreapp)");
|
||||
}
|
||||
#endif
|
||||
|
||||
#if NET451
|
||||
public static void HelloNet451()
|
||||
{
|
||||
Console.WriteLine("Hello World from Lib4! (net45)");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue