Last active
November 17, 2016 03:28
-
-
Save agc93/7339e43d0720ee2033734de4795f726e to your computer and use it in GitHub Desktop.
xUnit Test Project for .NET Core
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
{ | |
"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