Skip to content

Commit 2c73929

Browse files
committed
chore: include restore and build steps for other projects
1 parent e69951f commit 2c73929

File tree

3 files changed

+20
-28
lines changed

3 files changed

+20
-28
lines changed

.github/workflows/build-debug.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
with:
1919
dotnet-version: 9.x.x
2020

21+
# Telerik.Examples.Mvc Project Restore & Build
2122
- name: Restore NuGet Packages for Telerik.Examples.Mvc
2223
run: |
2324
dotnet restore Telerik.Examples.Mvc/Telerik.Examples.Mvc/Telerik.Examples.Mvc.csproj --configfile NuGet.Config -r win-x64
@@ -26,5 +27,24 @@ jobs:
2627

2728
- name: Build Telerik.Examples.Mvc Project
2829
run: dotnet build Telerik.Examples.Mvc/Telerik.Examples.Mvc/Telerik.Examples.Mvc.csproj -r win-x64 --no-restore
30+
env:
31+
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}
32+
33+
# Telerik.Examples.RazorPages Project Restore & Build
34+
- name: Restore NuGet Packages for Telerik.Examples.RazorPages
35+
run: |
36+
dotnet restore Telerik.Examples.RazorPages/Telerik.Examples.RazorPages/Telerik.Examples.RazorPages.csproj --configfile NuGet.Config -r win-x64
37+
env:
38+
TELERIK_NUGET_KEY: ${{secrets.TELERIK_NUGET_KEY}}
39+
40+
# Telerik.Examples.ContentSecurityPolicy Project Restore & Build
41+
- name: Restore NuGet Packages for Telerik.Examples.ContentSecurityPolicy Project
42+
run: |
43+
dotnet restore Telerik.Examples.RazorPages/Telerik.Examples.RazorPages/Telerik.Examples.RazorPages.csproj --configfile NuGet.Config -r win-x64
44+
env:
45+
TELERIK_NUGET_KEY: ${{secrets.TELERIK_NUGET_KEY}}
46+
47+
- name: Build Telerik.Examples.ContentSecurityPolicy Project
48+
run: dotnet build Telerik.Examples.ContentSecurityPolicy/Telerik.Examples.ContentSecurityPolicy/Telerik.Examples.ContentSecurityPolicy.csproj -r win-x64 --no-restore
2949
env:
3050
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}

Telerik.Examples.ContentSecurityPolicy/NuGet.Config

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

Telerik.Examples.RazorPages/NuGet.config

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

0 commit comments

Comments
 (0)