diff --git a/src/RazorPageGenerator/project.json b/src/RazorPageGenerator/project.json index f9abeb1193..f22978a4d0 100644 --- a/src/RazorPageGenerator/project.json +++ b/src/RazorPageGenerator/project.json @@ -14,6 +14,6 @@ } }, "frameworks": { - "netcoreapp1.0": {} + "netcoreapp1.1": {} } } \ 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 c68aa85e6f..d4f15ae939 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_0 +#if !NETCOREAPP1_1 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 0c8ec8a835..db0cfd96b0 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_0 +#if !NETCOREAPP1_1 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 ce8aa97b68..3b11304b9a 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.0": { + "netcoreapp1.1": { "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 0790e62896..ff117e8282 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_0 +#if NETCOREAPP1_1 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 7da6268c91..aa66115eee 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_0 +#if NETCOREAPP1_1 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 b8ebbebff7..d2456587b4 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.0": { + "netcoreapp1.1": { "dependencies": { "Microsoft.NETCore.App": { "version": "1.1.0-*",