Files
eShopOnWeb/.github/workflows/richnav.yml
Cédric Michel fdb1c34d61 Feature/dotnet7 migration (#828)
* migration to .net 7

* remove temp memory database

* adapt global.json .net 7

* adapt Rich Code Navigation to .net 7

* update and clean run for .net 7

* update .net ef tool

Co-authored-by: cedri <cedri@BAS>
2022-12-20 13:20:50 -05:00

22 lines
470 B
YAML

name: eShopOnWeb Rich Code Navigation
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Build with dotnet
run: dotnet build ./eShopOnWeb.sln --configuration Release
- uses: microsoft/RichCodeNavIndexer@v0.1
with:
repo-token: ${{ github.token }}