Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade .net core support to 1.0 #76

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
adjusted the project file for .net core rc2 release
kerryjiang committed May 21, 2016

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 14544d01ebdb0d1e554ac59051e12ad0f35e19ea
9 changes: 0 additions & 9 deletions MarkdownDeep/NuGet.Config

This file was deleted.

15 changes: 8 additions & 7 deletions MarkdownDeep/project.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{
"name": "MarkdownDeep",
"version": "1.0.0-*",
"compilationOptions": {
"buildOptions": {
"emitEntryPoint": false
},

"frameworks": {
"netstandard1.1": {
"compilationOptions": {
"buildOptions": {
"define": [ "DOTNET_CORE" ]
},
"dependencies": {
"System.Diagnostics.Debug": "4.0.11-rc3-*",
"System.Linq": "4.1.0-rc3-*",
"System.Runtime.Extensions": "4.1.0-rc3-*",
"System.Runtime.InteropServices": "4.1.0-rc3-*",
"System.Text.RegularExpressions": "4.1.0-rc3-*"
"System.Diagnostics.Debug": "4.0.11-rc2-*",
"System.Linq": "4.1.0-rc2-*",
"System.Runtime.Extensions": "4.1.0-rc2-*",
"System.Runtime.InteropServices": "4.1.0-rc2-*",
"System.Text.RegularExpressions": "4.0.12-rc2-*"
}
}
}