Skip to content

Commit 1c9fde3

Browse files
Merge pull request #18 from SubathraKaliamoorthy/master
v30.1.37
2 parents 5b652b8 + 3f0ae18 commit 1c9fde3

File tree

7 files changed

+55
-26
lines changed

7 files changed

+55
-26
lines changed

.github/workflows/dotnet.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This workflow will build a .NET project
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3+
4+
name: .NET
5+
6+
on:
7+
push:
8+
branches: [ "master" ]
9+
pull_request:
10+
branches: [ "master" ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: windows-latest
16+
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@v4
20+
21+
- name: Setup MSBuild
22+
uses: microsoft/setup-msbuild@v2
23+
24+
- name: Setup NuGet
25+
uses: nuget/setup-nuget@v2
26+
27+
- name: Restore NuGet packages
28+
run: nuget restore Loan_Calculator.sln
29+
30+
- name: Build the solution
31+
run: msbuild Loan_Calculator.sln /p:Configuration=Release /p:Platform="Any CPU" /p:TargetFrameworkVersion=v4.6.2

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>

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![.NET](https://github.com/syncfusion/ej2-showcase-aspnetmvc-loan-calculator/actions/workflows/dotnet.yml/badge.svg)](https://github.com/syncfusion/ej2-showcase-aspnetmvc-loan-calculator/actions/workflows/dotnet.yml)
2+
13
# ej2-showcase-aspnetmvc-loan-calculator
24
Demo application that calculates your loan payment based on your loan amount, interest and term.
35

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;

Views/Shared/_Layout.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
3030
}
3131
</script>
3232
@Scripts.Render("~/bundles/dependencies")
33-
<script src="https://cdn.syncfusion.com/ej2/29.1.33/dist/ej2.min.js"></script>
34-
<link href="https://cdn.syncfusion.com/ej2/29.1.33/bootstrap5.css" rel="stylesheet">
33+
<script src="https://cdn.syncfusion.com/ej2/30.1.37/dist/ej2.min.js"></script>
34+
<link href="https://cdn.syncfusion.com/ej2/30.1.37/bootstrap5.css" rel="stylesheet">
3535
@Styles.Render("~/Content/css")
3636
<link href="~/Content/styles.css" rel="stylesheet" />
3737
<link href="~/Content/index.css" rel="stylesheet" />
@@ -50,4 +50,4 @@ height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
5050
window.default();
5151
</script>
5252
</body>
53-
</html>
53+
</html>

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)