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

Commit 0b6b3be

Browse files
committed
Revert "Updating to netcoreapp1.1"
This reverts commit ec00972.
1 parent ec00972 commit 0b6b3be

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/Microsoft.AspNetCore.Razor.Design/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"Newtonsoft.Json": "9.0.1"
4343
},
4444
"frameworks": {
45-
"netcoreapp1.1": {
45+
"netcoreapp1.0": {
4646
"dependencies": {
4747
"Microsoft.NETCore.App": {
4848
"type": "platform",

src/Microsoft.AspNetCore.Razor.Tools/Internal/PackageOnlyResolveTagHelpersRunCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
#if NETCOREAPP1_1
4+
#if NETCOREAPP1_0
55
using System;
66
using System.Collections.Generic;
77
using System.IO;

src/Microsoft.AspNetCore.Razor.Tools/Internal/RazorProjectLoadContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
#if NETCOREAPP1_1
4+
#if NETCOREAPP1_0
55
using System;
66
using System.Collections.Generic;
77
using System.IO;

src/Microsoft.AspNetCore.Razor.Tools/Internal/ResolveTagHelpersDispatchCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected override int OnExecute()
5959
return 0;
6060
}
6161

62-
#if NETCOREAPP1_1
62+
#if NETCOREAPP1_0
6363
int exitCode;
6464
if (PackageOnlyResolveTagHelpersRunCommand.TryPackageOnlyTagHelperResolution(
6565
AssemblyNamesArgument,

src/Microsoft.AspNetCore.Razor.Tools/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
}
3434
},
3535
"frameworks": {
36-
"netcoreapp1.1": {
36+
"netcoreapp1.0": {
3737
"dependencies": {
3838
"Microsoft.DotNet.ProjectModel.Loader": "1.0.0-*",
3939
"Microsoft.NETCore.App": {

test/Microsoft.AspNetCore.Razor.Design.Test/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
"xunit": "2.2.0-*"
1919
},
2020
"frameworks": {
21-
"netcoreapp1.1": {}
21+
"netcoreapp1.0": {}
2222
}
2323
}

test/Microsoft.AspNetCore.Razor.Tools.Test/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"xunit": "2.2.0-*"
1818
},
1919
"frameworks": {
20-
"netcoreapp1.1": {
20+
"netcoreapp1.0": {
2121
"dependencies": {
2222
"Microsoft.NETCore.App": {
2323
"version": "1.1.0-*",

testapps/RazorToolingTestApp/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-*"
1616
},
1717
"frameworks": {
18-
"netcoreapp1.1": {
18+
"netcoreapp1.0": {
1919
"dependencies": {
2020
"Microsoft.NETCore.App": {
2121
"version": "1.1.0-*",

0 commit comments

Comments
 (0)