Skip to content

Commit 3a6522e

Browse files
authored
chore(mvc): update version in mvc sample apps (#263)
1 parent 5479fca commit 3a6522e

File tree

6 files changed

+16
-15
lines changed

6 files changed

+16
-15
lines changed

common/razor-components/mvc-views/BlazorInMVC.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.8.0" />
15+
<PackageReference Include="Telerik.UI.for.Blazor" Version="4.5.0" />
1616
</ItemGroup>
1717

1818

common/razor-components/mvc-views/Properties/launchSettings.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
{
1+
{
22
"iisSettings": {
3-
"windowsAuthentication": false,
4-
"anonymousAuthentication": true,
3+
"windowsAuthentication": false,
4+
"anonymousAuthentication": true,
55
"iisExpress": {
6-
"applicationUrl": "http://localhost:52941",
6+
"applicationUrl": "https://localhost:52941",
77
"sslPort": 0
88
}
99
},
@@ -18,10 +18,10 @@
1818
"BlazorInMVC": {
1919
"commandName": "Project",
2020
"launchBrowser": true,
21-
"applicationUrl": "http://localhost:5000",
21+
"applicationUrl": "https://localhost:5000",
2222
"environmentVariables": {
2323
"ASPNETCORE_ENVIRONMENT": "Development"
2424
}
2525
}
2626
}
27-
}
27+
}

common/razor-components/razor-pages/BlazorInRazorPages.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.7.0" />
8+
<PackageReference Include="Telerik.UI.for.Blazor" Version="4.5.0" />
99
</ItemGroup>
1010

1111
</Project>

common/razor-components/razor-pages/Components/MyWindow.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h3>My Window</h3>
22

3-
<TelerikButton Icon="window" OnClick=@(()=> WindowVisible = true)>Open Modal</TelerikButton>
3+
<TelerikButton Icon="@SvgIcon.Window" OnClick=@(()=> WindowVisible = true)>Open Modal</TelerikButton>
44

55
<TelerikRootComponent>
66
<TelerikWindow Class="demo-window" Width="500px" Height="300px" Centered="true" @bind-Visible=@WindowVisible Modal="true">
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@using Microsoft.AspNetCore.Components.Web
22
@using Microsoft.AspNetCore.Components.Forms
33
@using Telerik.Blazor
4-
@using Telerik.Blazor.Components
4+
@using Telerik.Blazor.Components
5+
@using Telerik.SvgIcons

common/razor-components/razor-pages/Properties/launchSettings.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
{
1+
{
22
"iisSettings": {
3-
"windowsAuthentication": false,
4-
"anonymousAuthentication": true,
3+
"windowsAuthentication": false,
4+
"anonymousAuthentication": true,
55
"iisExpress": {
6-
"applicationUrl": "http://localhost:52032",
6+
"applicationUrl": "https://localhost:52032",
77
"sslPort": 44353
88
}
99
},
@@ -24,4 +24,4 @@
2424
}
2525
}
2626
}
27-
}
27+
}

0 commit comments

Comments
 (0)