Unit testing a .NET Standard 1.6 library
I am having trouble finding up to date documentation on how to unit test a .NET Standard 1.6 class library (which can be referenced from a .NET Core project). Here is what my project.json looks like for my library: { "supports": {}, "dependencies": { "Microsoft.NETCore.Portable.Compatibility": "1.0.1", "NETStandard.Library": "1.6.0", "Portable.BouncyCastle": "1.8.1.2" }, "frameworks": { "netstandard1.6": {} } } Now the left over task is to be able to create some sort of a project that can do the unit testing. The goal is to use xUnit since it seems that this is what the .NET Core team is