Skip to content

Commit 6297dec

Browse files
Merge pull request #57 from SubathraKaliamoorthy/master
v31.2.2
2 parents c2853b0 + e088416 commit 6297dec

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
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: 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"

EJ2MVCSampleBrowser.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<HintPath>packages\Syncfusion.DocIO.AspNet.Mvc5.31.2.2\lib\net462\Syncfusion.DocIO.Base.dll</HintPath>
9595
</Reference>
9696
<Reference Include="Syncfusion.Compression.Base">
97-
<HintPath>packages\\lib\net462\Syncfusion.Compression.Base.dll</HintPath>
97+
<HintPath>packages\Syncfusion.Compression.Base.31.2.2\lib\net462\Syncfusion.Compression.Base.dll</HintPath>
9898
</Reference>
9999
<Reference Include="Syncfusion.Presentation.Base">
100100
<HintPath>packages\Syncfusion.Presentation.AspNet.Mvc5.31.2.2\lib\net462\Syncfusion.Presentation.Base.dll</HintPath>
@@ -104,7 +104,7 @@
104104
</Reference>
105105
<Reference Include="Syncfusion.Licensing">
106106
<SpecificVersion>False</SpecificVersion>
107-
<HintPath>packages\\lib\net45\Syncfusion.Licensing.dll</HintPath>
107+
<HintPath>packages\Syncfusion.Licensing.31.2.2\lib\net462\Syncfusion.Licensing.dll</HintPath>
108108
</Reference>
109109
<Reference Include="System" />
110110
<Reference Include="System.Data" />

0 commit comments

Comments
 (0)