Skip to content

Commit c561482

Browse files
Merge pull request #16 from SubathraKaliamoorthy/master
v30.1.37
2 parents 0359f5e + 85bc844 commit c561482

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Setup .NET8
20+
uses: actions/setup-dotnet@v4
21+
with:
22+
dotnet-version: 8.0.x
23+
- name: Setup .NET9
24+
uses: actions/setup-dotnet@v4
25+
with:
26+
dotnet-version: 9.0.x
27+
- name: Build Showcase
28+
run: dotnet build LoanCalculator.csproj

LoanCalculator.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>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>

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-aspnetcore-loan-calculator/actions/workflows/dotnet.yml/badge.svg)](https://github.com/syncfusion/ej2-showcase-aspnetcore-loan-calculator/actions/workflows/dotnet.yml)
2+
13
# ej2-showcase-aspnetcore-loan-calculator
24
Demo application that Calculates your loan payment based on your loan amount, interest and term.
35

Views/Shared/_Layout.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
2323
document.write('<script src="Scripts/bluebird.min.js"><\/script>');
2424
}
2525
</script>
26-
<script src="https://cdn.syncfusion.com/ej2/29.1.33/dist/ej2.min.js"></script>
26+
<script src="https://cdn.syncfusion.com/ej2/30.1.37/dist/ej2.min.js"></script>
2727
<link href="~/css/styles.css" rel="stylesheet" />
2828
<link href="~/css/index.css" rel="stylesheet" />
2929

0 commit comments

Comments
 (0)