Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Remove unused useless DLLs #25

Remove unused useless DLLs

Remove unused useless DLLs #25

Workflow file for this run

# This workflow defines a build and test process for your .NET project
name: Build and test
# Triggers the workflow on pushes to the main branch
on:
push:
branches: [ main ]
# Jobs section defines the execution environment for the steps
jobs:
build:
runs-on: windows-latest # This workflow will run on a Windows machine
steps:
- uses: actions/checkout@v4.1.2
# Check available MSBuild versions
- name: Check available MSBuild versions
run: |
where msbuild
# Setup .NET environment
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2.0.0
with:
vs-version: '[16.4,16.5)'
msbuild-architecture: x64
- name: Build the solution
run: msbuild /p:Configuration=Release M-Centres_2.0.sln