Skip to content

Instantly share code, notes, and snippets.

@agc93
Last active November 17, 2016 03:28
Show Gist options
  • Save agc93/7339e43d0720ee2033734de4795f726e to your computer and use it in GitHub Desktop.
Save agc93/7339e43d0720ee2033734de4795f726e to your computer and use it in GitHub Desktop.
xUnit Test Project for .NET Core
{
"version": "1.0.0-*",
"testRunner": "xunit",
"dependencies": {
"ProjectUnderTest": {
"target": "project"
},
"Cake.Testing": "0.16.2",
"dotnet-test-xunit": "2.2.0-preview2-build1029",
"xunit.assert": "2.2.0-beta2-build3300"
},
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
},
"xunit.core": "2.2.0-beta2-build3300"
},
"imports": ["dnxcore50"]
},
"net451": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"frameworkAssemblies": {
"System.Runtime": {
"type": "build"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment