Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2

- name: Setup NuGet
uses: nuget/setup-nuget@v2

- name: Restore NuGet packages
run: nuget restore EJ2MVCSampleBrowser.sln

- name: Build MVC
run: msbuild EJ2MVCSampleBrowser.sln /p:Configuration=Release /p:Platform="Any CPU"
4 changes: 2 additions & 2 deletions EJ2MVCSampleBrowser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<HintPath>packages\Syncfusion.DocIO.AspNet.Mvc5.31.2.2\lib\net462\Syncfusion.DocIO.Base.dll</HintPath>
</Reference>
<Reference Include="Syncfusion.Compression.Base">
<HintPath>packages\\lib\net462\Syncfusion.Compression.Base.dll</HintPath>
<HintPath>packages\Syncfusion.Compression.Base.31.2.2\lib\net462\Syncfusion.Compression.Base.dll</HintPath>
</Reference>
<Reference Include="Syncfusion.Presentation.Base">
<HintPath>packages\Syncfusion.Presentation.AspNet.Mvc5.31.2.2\lib\net462\Syncfusion.Presentation.Base.dll</HintPath>
Expand All @@ -104,7 +104,7 @@
</Reference>
<Reference Include="Syncfusion.Licensing">
<SpecificVersion>False</SpecificVersion>
<HintPath>packages\\lib\net45\Syncfusion.Licensing.dll</HintPath>
<HintPath>packages\Syncfusion.Licensing.31.2.2\lib\net462\Syncfusion.Licensing.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down