Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 87545af

Browse files
author
N. Taylor Mullen
committed
Transition to netstandard.
- dotnet5.X => netstandard1.y (where y = x-1). - DNXCore50 => netstandardapp1.5. - Applied the same changes to ifdefs.
1 parent a438972 commit 87545af

2 files changed

Lines changed: 13 additions & 5 deletions

File tree

src/dotnet-razor-tooling/project.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@
99
"keyFile": "../../tools/Key.snk",
1010
"warningsAsErrors": true,
1111
"emitEntryPoint": true,
12-
"nowarn": [ "CS1591" ],
12+
"nowarn": [
13+
"CS1591"
14+
],
1315
"xmlDoc": true
1416
},
1517
"frameworks": {
16-
"dnxcore50": {
18+
"netstandardapp1.5": {
1719
"dependencies": {
1820
"Microsoft.DotNet.Cli.Utils": "1.0.0-*",
1921
"Microsoft.AspNetCore.Razor.Runtime": "1.0.0-*",
@@ -24,7 +26,10 @@
2426
"NETStandard.Library": "1.0.0-*",
2527
"Microsoft.NETCore.Platforms": "1.0.1-*"
2628
},
27-
"imports": "portable-net451+win8"
29+
"imports": [
30+
"dnxcore50",
31+
"portable-net451+win8"
32+
]
2833
}
2934
}
3035
}

test/dotnet-razor-tooling.Test/project.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"testRunner": "xunit",
33
"frameworks": {
4-
"dnxcore50": {
4+
"netstandardapp1.5": {
55
"dependencies": {
66
"dotnet-razor-tooling": "1.0.0-*",
77
"dotnet-test-xunit": "1.0.0-dev-*",
@@ -16,7 +16,10 @@
1616
"Microsoft.NETCore.Platforms": "1.0.1-*",
1717
"xunit": "2.1.0"
1818
},
19-
"imports": "portable-net451+win8"
19+
"imports": [
20+
"dnxcore50",
21+
"portable-net451+win8"
22+
]
2023
}
2124
}
2225
}

0 commit comments

Comments
 (0)