Skip to content

Commit 04ab01e

Browse files
v30.1.37
1 parent 5b652b8 commit 04ab01e

File tree

4 files changed

+19
-23
lines changed

4 files changed

+19
-23
lines changed

Loan_Calculator.csproj

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<AppDesignerFolder>Properties</AppDesignerFolder>
1414
<RootNamespace>EJ2MVCSampleBrowser</RootNamespace>
1515
<AssemblyName>EJ2MVCSampleBrowser</AssemblyName>
16-
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
16+
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
1717
<MvcBuildViews>false</MvcBuildViews>
1818
<UseIISExpress>true</UseIISExpress>
1919
<IISExpressSSLPort />
@@ -45,13 +45,13 @@
4545
<ItemGroup>
4646
<Reference Include="Microsoft.CSharp" />
4747
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
48-
<HintPath>packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
48+
<HintPath>packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
4949
</Reference>
5050
<Reference Include="Syncfusion.EJ2">
51-
<HintPath>packages\Syncfusion.EJ2.MVC5.29.1.33\lib\net462\Syncfusion.EJ2.dll</HintPath>
51+
<HintPath>packages\Syncfusion.EJ2.MVC5.30.1.37\lib\net462\Syncfusion.EJ2.dll</HintPath>
5252
</Reference>
5353
<Reference Include="Syncfusion.Licensing">
54-
<HintPath>packages\Syncfusion.Licensing.29.1.33\lib\net462\Syncfusion.Licensing.dll</HintPath>
54+
<HintPath>packages\Syncfusion.Licensing.30.1.37\lib\net462\Syncfusion.Licensing.dll</HintPath>
5555
</Reference>
5656
<Reference Include="System" />
5757
<Reference Include="System.Data" />
@@ -82,30 +82,30 @@
8282
</Reference>
8383
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
8484
<Private>True</Private>
85-
<HintPath>packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.Helpers.dll</HintPath>
85+
<HintPath>packages\Microsoft.AspNet.WebPages.3.3.0\lib\net45\System.Web.Helpers.dll</HintPath>
8686
</Reference>
87-
<Reference Include="System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
87+
<Reference Include="System.Web.Mvc, Version=5.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
8888
<Private>True</Private>
89-
<HintPath>packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll</HintPath>
89+
<HintPath>packages\Microsoft.AspNet.Mvc.5.3.0\lib\net45\System.Web.Mvc.dll</HintPath>
9090
</Reference>
9191
<Reference Include="System.Web.Optimization">
9292
<HintPath>packages\Microsoft.AspNet.Web.Optimization.1.1.3\lib\net40\System.Web.Optimization.dll</HintPath>
9393
</Reference>
9494
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
9595
<Private>True</Private>
96-
<HintPath>packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll</HintPath>
96+
<HintPath>packages\Microsoft.AspNet.Razor.3.3.0\lib\net45\System.Web.Razor.dll</HintPath>
9797
</Reference>
9898
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
9999
<Private>True</Private>
100-
<HintPath>packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.dll</HintPath>
100+
<HintPath>packages\Microsoft.AspNet.WebPages.3.3.0\lib\net45\System.Web.WebPages.dll</HintPath>
101101
</Reference>
102102
<Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
103103
<Private>True</Private>
104-
<HintPath>packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
104+
<HintPath>packages\Microsoft.AspNet.WebPages.3.3.0\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
105105
</Reference>
106106
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
107107
<Private>True</Private>
108-
<HintPath>packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
108+
<HintPath>packages\Microsoft.AspNet.WebPages.3.3.0\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
109109
</Reference>
110110
<Reference Include="WebGrease">
111111
<Private>True</Private>

Scripts/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function paymentGraphChartMouseup(args) {
162162
}
163163
}
164164

165-
function paymentGraphAxisLabelRender() {
165+
function paymentGraphAxisLabelRender(args) {
166166
if (window.innerWidth < 576) {
167167
if (args.axis.name === 'primaryYAxis' || args.axis.name === 'yAxis') {
168168
var value = Number(args.value) / 1000;

Web.config

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,7 @@
4141
</dependentAssembly>
4242
<dependentAssembly>
4343
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
44-
<bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
45-
</dependentAssembly>
46-
<dependentAssembly>
47-
<assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" />
48-
<bindingRedirect oldVersion="0.0.0.0-19.2460.0.44" newVersion="19.2460.0.44" />
44+
<bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0" />
4945
</dependentAssembly>
5046
</assemblyBinding>
5147
</runtime>

packages.config

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
<package id="Antlr" version="3.4.1.9004" targetFramework="net46" />
44
<package id="bootstrap" version="5.3.3" targetFramework="net46" />
55
<package id="jQuery" version="3.5.0" targetFramework="net46" />
6-
<package id="Microsoft.AspNet.Mvc" version="5.2.3" targetFramework="net46" />
7-
<package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net46" />
6+
<package id="Microsoft.AspNet.Mvc" version="5.3.0" targetFramework="net46" />
7+
<package id="Microsoft.AspNet.Razor" version="3.3.0" targetFramework="net46" />
88
<package id="Microsoft.AspNet.Web.Optimization" version="1.1.3" targetFramework="net46" />
9-
<package id="Microsoft.AspNet.WebPages" version="3.2.3" targetFramework="net46" />
9+
<package id="Microsoft.AspNet.WebPages" version="3.3.0" targetFramework="net46" />
1010
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net46" />
1111
<package id="Modernizr" version="2.6.2" targetFramework="net46" />
12-
<package id="Newtonsoft.Json" version="13.0.2" targetFramework="net46" />
12+
<package id="Newtonsoft.Json" version="13.0.3" targetFramework="net46" />
1313
<package id="Respond" version="1.2.0" targetFramework="net46" />
14-
<package id="Syncfusion.EJ2.MVC5" version="29.1.33" targetFramework="net48" />
15-
<package id="Syncfusion.Licensing" version="29.1.33" targetFramework="net48" />
14+
<package id="Syncfusion.EJ2.MVC5" version="30.1.37" targetFramework="net462" />
15+
<package id="Syncfusion.Licensing" version="30.1.37" targetFramework="net462" />
1616
<package id="WebGrease" version="1.5.2" targetFramework="net46" />
1717
</packages>

0 commit comments

Comments
 (0)