This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using ClassLibraryNetStandard; | |
using Newtonsoft.Json; | |
using System; | |
namespace ConsoleAppNetFramework | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var test = new Test { SomeProperty = "One", SomeOtherProperty = "Two" }; | |
Console.WriteLine($"Hello from .net framework! Here's one .net standard Test instance:{JsonConvert.SerializeObject(test)}"); | |
Console.ReadLine(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment