Skip to content
This repository was archived by the owner on Nov 29, 2018. It is now read-only.

Commit 837e5c4

Browse files
committed
Updating to netcoreapp1.1
1 parent 9bf00ff commit 837e5c4

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

samples/LocalizationSample/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void Configure(IApplicationBuilder app, IStringLocalizer<Startup> SR)
3434
new CultureInfo("zh"),
3535
new CultureInfo("zh-CN")
3636
};
37-
#if !NETCOREAPP1_0
37+
#if !NETCOREAPP1_1
3838
supportedCultures.Add(new CultureInfo("zh-CHT"));
3939
#endif
4040
var options = new RequestLocalizationOptions

samples/LocalizationSample/project.json

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

test/LocalizationWebsite/project.json

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

test/Microsoft.AspNetCore.Localization.FunctionalTests/TestRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ private async Task<string> RunTestAndGetResponse(
5959
{
6060
ApplicationBaseUriHint = applicationBaseUrl,
6161
EnvironmentName = environmentName,
62-
TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0"
62+
TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.1"
6363
};
6464

6565
using (var deployer = ApplicationDeployerFactory.Create(deploymentParameters, logger))

test/Microsoft.AspNetCore.Localization.FunctionalTests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"xunit": "2.2.0-*"
1313
},
1414
"frameworks": {
15-
"netcoreapp1.0": {
15+
"netcoreapp1.1": {
1616
"dependencies": {
1717
"Microsoft.NETCore.App": {
1818
"version": "1.1.0-*",

test/Microsoft.AspNetCore.Localization.Routing.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"testRunner": "xunit",
1313
"frameworks": {
14-
"netcoreapp1.0": {
14+
"netcoreapp1.1": {
1515
"dependencies": {
1616
"Microsoft.NETCore.App": {
1717
"version": "1.0.0-*",

test/Microsoft.AspNetCore.Localization.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"testRunner": "xunit",
1212
"frameworks": {
13-
"netcoreapp1.0": {
13+
"netcoreapp1.1": {
1414
"dependencies": {
1515
"Microsoft.NETCore.App": {
1616
"version": "1.1.0-*",

test/Microsoft.Extensions.Localization.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"xunit": "2.2.0-*"
1212
},
1313
"frameworks": {
14-
"netcoreapp1.0": {
14+
"netcoreapp1.1": {
1515
"dependencies": {
1616
"Microsoft.NETCore.App": {
1717
"version": "1.1.0-*",

0 commit comments

Comments
 (0)