Skip to content

docs: Add NuGet install steps in README #31

docs: Add NuGet install steps in README

docs: Add NuGet install steps in README #31

Workflow file for this run


on:
pull_request:
types: [ assigned, opened, synchronize, reopened ]
push:
branches:
- 'feature/**'
jobs:
build:
runs-on: windows-latest
name: Building
steps:
- name: Checkout code base
uses: actions/checkout@v2
- uses: actions/setup-dotnet@v3
with:
global-json-file: ./global.json
- name: Cleaning
run: dotnet clean
#- name: Restore NuGet packages
# run: dotnet restore EAVFW.Extensions.Manifest.ManifestEnricherTool.sln
- name: Build solution
run: dotnet build -c Release
#- name: Archive build to artifacts
# uses: actions/upload-artifact@v2
# with:
# name: build
# path: |
# build/*
# retention-days: 5