Skip to content

Commit ac33e59

Browse files
authored
Merge pull request #13 from cloudscribe/netcore50
Net5.0
2 parents 2ca5876 + 0f099cd commit ac33e59

4 files changed

Lines changed: 9 additions & 10 deletions

File tree

src/WebLib/WebLib.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
5-
<RazorLangVersion>3.0</RazorLangVersion>
4+
<TargetFramework>net5.0</TargetFramework>
65
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
76

87
</PropertyGroup>
@@ -14,7 +13,7 @@
1413

1514
<ItemGroup>
1615

17-
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="3.0.0-*" />
16+
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="5.0.0" />
1817
</ItemGroup>
1918

2019
</Project>

src/cloudscribe.Web.Localization/cloudscribe.Web.Localization.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<Description>more flexible localization for ASP.NET Core</Description>
5-
<Version>3.1.0</Version>
5+
<Version>5.0.0</Version>
6+
<TargetFramework>net5.0</TargetFramework>
67
<Authors>Joe Audette</Authors>
7-
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
88
<PackageId>cloudscribe.Web.Localization</PackageId>
99
<PackageTags>cloudscribe;localization;resx</PackageTags>
1010
<PackageIcon>icon.png</PackageIcon>
@@ -16,16 +16,16 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<None Include="icon.png" Pack="true" PackagePath="\"/>
19+
<None Include="icon.png" Pack="true" PackagePath="\" />
2020
</ItemGroup>
2121

2222
<ItemGroup>
2323
<FrameworkReference Include="Microsoft.AspNetCore.App" />
2424
</ItemGroup>
2525

2626
<ItemGroup>
27-
<PackageReference Include="Microsoft.Extensions.Localization" Version="3.0.0" />
28-
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="3.0.0" />
27+
<PackageReference Include="Microsoft.Extensions.Localization" Version="5.0.0" />
28+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="5.0.0" />
2929
</ItemGroup>
3030

3131

src/localization.WebApp/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"anonymousAuthentication": true,
55
"iisExpress": {
66
"applicationUrl": "http://localhost:51296/",
7-
"sslPort": 0
7+
"sslPort": 44310
88
}
99
},
1010
"profiles": {

src/localization.WebApp/localization.WebApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<UserSecretsId>aspnet-localization.WebApp-940cc8f9-71c6-4716-a22f-dac5c78eb805</UserSecretsId>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)