Skip to content

Instantly share code, notes, and snippets.

@JunSuzukiJapan
Created November 23, 2016 14:33
Show Gist options
  • Select an option

  • Save JunSuzukiJapan/f5df1756b7a3ec401be2e68250faba1f to your computer and use it in GitHub Desktop.

Select an option

Save JunSuzukiJapan/f5df1756b7a3ec401be2e68250faba1f to your computer and use it in GitHub Desktop.
{
"version": "1.0.0-*",
"buildOptions": {
"debugType": "portable",
"emitEntryPoint": false
},
"dependencies": {
},
"testRunner": "xunit",
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.1"
},
"xunit": "2.2.0-*",
"dotnet-test-xunit": "2.2.0-*"
},
"imports": "dnxcore50"
}
}
}
@JunSuzukiJapan
Copy link
Author

メモ

"emitEntryPoint": falseが実行可能ファイルではなくライブラリであることを表す。
xunitはDLLに含む必要がないので、"frameworks"の方に書く。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment