Skip to content

Commit 4ebb004

Browse files
Merge pull request #59 from SubathraKaliamoorthy/master
v32.1.19
2 parents 6cea0f0 + 5d2ee98 commit 4ebb004

File tree

3 files changed

+31
-154
lines changed

3 files changed

+31
-154
lines changed

.github/PULL_REQUEST_TEMPLATE/Bug.md

Lines changed: 0 additions & 74 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE/Feature.md

Lines changed: 0 additions & 80 deletions
This file was deleted.

.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 EJ2MVCSampleBrowser.sln
29+
30+
- name: Build MVC
31+
run: msbuild EJ2MVCSampleBrowser.sln /p:Configuration=Release /p:Platform="Any CPU"

0 commit comments

Comments
 (0)