diff --git a/src/RazorPageGenerator/project.json b/src/RazorPageGenerator/project.json index f22978a4d0..f9abeb1193 100644 --- a/src/RazorPageGenerator/project.json +++ b/src/RazorPageGenerator/project.json @@ -14,6 +14,6 @@ } }, "frameworks": { - "netcoreapp1.1": {} + "netcoreapp1.0": {} } } \ No newline at end of file diff --git a/test/Microsoft.AspNetCore.Razor.Runtime.Test/Runtime/TagHelpers/TagHelperDescriptorFactoryTest.cs b/test/Microsoft.AspNetCore.Razor.Runtime.Test/Runtime/TagHelpers/TagHelperDescriptorFactoryTest.cs index d4f15ae939..c68aa85e6f 100644 --- a/test/Microsoft.AspNetCore.Razor.Runtime.Test/Runtime/TagHelpers/TagHelperDescriptorFactoryTest.cs +++ b/test/Microsoft.AspNetCore.Razor.Runtime.Test/Runtime/TagHelpers/TagHelperDescriptorFactoryTest.cs @@ -2202,7 +2202,7 @@ namespace Microsoft.AspNetCore.Razor.Runtime.TagHelpers } // TagHelperDesignTimeDescriptors are not created in CoreCLR. -#if !NETCOREAPP1_1 +#if !NETCOREAPP1_0 public static TheoryData OutputElementHintData { get diff --git a/test/Microsoft.AspNetCore.Razor.Runtime.Test/Runtime/TagHelpers/XmlDocumentationProviderTest.cs b/test/Microsoft.AspNetCore.Razor.Runtime.Test/Runtime/TagHelpers/XmlDocumentationProviderTest.cs index db0cfd96b0..0c8ec8a835 100644 --- a/test/Microsoft.AspNetCore.Razor.Runtime.Test/Runtime/TagHelpers/XmlDocumentationProviderTest.cs +++ b/test/Microsoft.AspNetCore.Razor.Runtime.Test/Runtime/TagHelpers/XmlDocumentationProviderTest.cs @@ -1,7 +1,7 @@ // Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -#if !NETCOREAPP1_1 +#if !NETCOREAPP1_0 using System; using System.Globalization; using System.IO; diff --git a/test/Microsoft.AspNetCore.Razor.Runtime.Test/project.json b/test/Microsoft.AspNetCore.Razor.Runtime.Test/project.json index 3b11304b9a..ce8aa97b68 100644 --- a/test/Microsoft.AspNetCore.Razor.Runtime.Test/project.json +++ b/test/Microsoft.AspNetCore.Razor.Runtime.Test/project.json @@ -18,7 +18,7 @@ }, "testRunner": "xunit", "frameworks": { - "netcoreapp1.1": { + "netcoreapp1.0": { "dependencies": { "Microsoft.NETCore.App": { "version": "1.1.0-*", diff --git a/test/Microsoft.AspNetCore.Razor.Test/CodeGenerators/CSharpTagHelperRenderingTest.cs b/test/Microsoft.AspNetCore.Razor.Test/CodeGenerators/CSharpTagHelperRenderingTest.cs index ff117e8282..0790e62896 100644 --- a/test/Microsoft.AspNetCore.Razor.Test/CodeGenerators/CSharpTagHelperRenderingTest.cs +++ b/test/Microsoft.AspNetCore.Razor.Test/CodeGenerators/CSharpTagHelperRenderingTest.cs @@ -4,7 +4,7 @@ using System; using System.Collections.Generic; using System.Linq; -#if NETCOREAPP1_1 +#if NETCOREAPP1_0 using System.Reflection; #endif using Microsoft.AspNetCore.Razor.CodeGenerators; diff --git a/test/Microsoft.AspNetCore.Razor.Test/CodeGenerators/TagHelperAttributeValueCodeRendererTest.cs b/test/Microsoft.AspNetCore.Razor.Test/CodeGenerators/TagHelperAttributeValueCodeRendererTest.cs index aa66115eee..7da6268c91 100644 --- a/test/Microsoft.AspNetCore.Razor.Test/CodeGenerators/TagHelperAttributeValueCodeRendererTest.cs +++ b/test/Microsoft.AspNetCore.Razor.Test/CodeGenerators/TagHelperAttributeValueCodeRendererTest.cs @@ -2,7 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; -#if NETCOREAPP1_1 +#if NETCOREAPP1_0 using System.Reflection; #endif using Microsoft.AspNetCore.Razor.CodeGenerators.Visitors; diff --git a/test/Microsoft.AspNetCore.Razor.Test/project.json b/test/Microsoft.AspNetCore.Razor.Test/project.json index d2456587b4..b8ebbebff7 100644 --- a/test/Microsoft.AspNetCore.Razor.Test/project.json +++ b/test/Microsoft.AspNetCore.Razor.Test/project.json @@ -14,7 +14,7 @@ }, "testRunner": "xunit", "frameworks": { - "netcoreapp1.1": { + "netcoreapp1.0": { "dependencies": { "Microsoft.NETCore.App": { "version": "1.1.0-*",