Skip to content

Commit b17ecf6

Browse files
Merge pull request #39 from SubathraKaliamoorthy/master
v30.1.37
2 parents 7beeb63 + 6426169 commit b17ecf6

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
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: 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 NET8
28+
run: dotnet build EJ2CoreSampleBrowser_NET8.csproj
29+
- name: Build NET9
30+
run: dotnet build EJ2CoreSampleBrowser_NET9.csproj
31+

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Syncfusion ASP.NET Core Component Examples
1+
[![.NET](https://github.com/syncfusion/ej2-aspnetcore-samples/actions/workflows/dotnet.yml/badge.svg)](https://github.com/syncfusion/ej2-aspnetcore-samples/actions/workflows/dotnet.yml)
2+
3+
# Syncfusion ASP.NET Core Component Examples
24

35
This repository contains the demos of [Syncfusion ASP.NET Core Components](https://www.syncfusion.com/aspnet-core-ui-controls/). This is the best place to check the controls to get more insight into the usage of APIs.
46

0 commit comments

Comments
 (0)