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,24 @@
|
|||
using System;
|
||||
using NSLib4;
|
||||
|
||||
namespace NSLib2
|
||||
{
|
||||
public class Lib2
|
||||
{
|
||||
#if NETCOREAPP1_0
|
||||
public static void HelloNCA()
|
||||
{
|
||||
Console.WriteLine("Hello World from Lib2! (netcoreapp)");
|
||||
Lib4.HelloNCA();
|
||||
}
|
||||
#endif
|
||||
|
||||
#if NET451
|
||||
public static void HelloNet451()
|
||||
{
|
||||
Console.WriteLine("Hello World from Lib2! (net45)");
|
||||
Lib4.HelloNet451();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue