Skip to content

Commit 968ece9

Browse files
Merge pull request #47 from ArunKumar-SF3979/master
V30.1.37
2 parents 70ecb24 + ab84c2f commit 968ece9

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

.github/workflows/dotnet.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 Server
28+
run: dotnet build ./Server-side/DiagramBuilder.csproj
29+
- name: Build Wasm
30+
run: dotnet build ./wasm-side/DiagramBuilder/DiagramBuilder.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/blazor-showcase-diagram-builder/actions/workflows/dotnet.yml/badge.svg)](https://github.com/syncfusion/blazor-showcase-diagram-builder/actions/workflows/dotnet.yml)
2+
13
# Essential Studio® for Blazor - Diagram Builder
24

35
The Blazor diagram builder application is used to create diagrams such as FlowChart and MindMap diagrams. In the diagram builder application, all support diagrams, such as Print, Export, and Drawing Tool support, are available in the Diagram Builder application. You can interact with the diagram or create your own using shapes.

wasm-side/DiagramBuilder.Client/DiagramBuilder.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</ItemGroup>
4646

4747
<ItemGroup>
48-
<ProjectReference Include="..\..\common\BlazorWasmCommon_NET8.csproj" />
48+
<ProjectReference Include="..\..\Common\BlazorWasmCommon_NET8.csproj" />
4949
</ItemGroup>
5050

5151
</Project>

0 commit comments

Comments
 (0)