Skip to content

Commit 009ba2e

Browse files
Merge pull request #16 from SubathraKaliamoorthy/master
v30.1.37
2 parents d618cb8 + ea99e6e commit 009ba2e

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
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 Outlook_Core_NET8.csproj

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-outlook/actions/workflows/dotnet.yml/badge.svg)](https://github.com/syncfusion/ej2-showcase-aspnetcore-outlook/actions/workflows/dotnet.yml)
2+
13
# ej2-showcase-aspnetcore-outlook
24
Outlook like demo application with similar user interface to manage your mailbox.
35

Views/Shared/_Layout.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
document.write('<script src="Scripts/bluebird.min.js"><\/script>');
2020
}
2121
</script>
22-
<script src="https://cdn.syncfusion.com/ej2/29.1.33/dist/ej2.min.js"></script>
22+
<script src="https://cdn.syncfusion.com/ej2/30.1.37/dist/ej2.min.js"></script>
2323
<script src="~/scripts/datasource.js"></script>
2424

2525
</head>

0 commit comments

Comments
 (0)