Skip to content

Commit dcd98d4

Browse files
Merge pull request #10 from SubathraKaliamoorthy/master
v30.1.37
2 parents 882f2f7 + 26a499a commit dcd98d4

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 StoryEstimator_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-story-estimator/actions/workflows/dotnet.yml/badge.svg)](https://github.com/syncfusion/ej2-showcase-aspnetcore-story-estimator/actions/workflows/dotnet.yml)
2+
13
# Overview
24

35
Story Estimator is an agile based tool to effectively estimate stories using planning poker technique. Planning Poker is a consensus based technique used for estimating and planning. Agile teams around the world use this kind of tool to estimate their product backlogs and how long a certain amount of work will take to complete.

Views/Shared/_Layout.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<script src="~/js/crossroads.js"></script>
5555
<script src="~/js/hasher.min.js"></script>
5656
<script src="~/js/common.data.js"></script>
57-
<script src="https://cdn.syncfusion.com/ej2/29.1.33/dist/ej2.min.js"></script>
57+
<script src="https://cdn.syncfusion.com/ej2/30.1.37/dist/ej2.min.js"></script>
5858
<script src="~/js/timer.jquery.js"></script>
5959
<script src="~/js/signalr.min.js"></script>
6060
<script src="~/js/jquery.qrcode.js"></script>

0 commit comments

Comments
 (0)