Refactoring: extracted a new private method WriteSettings() to the Fr… #252
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# SPDX-FileCopyrightText: 2011-2025 EasyCoding Team | |
# | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
# | |
name: Windows CI | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
build: | |
name: Build project using .NET Framework | |
runs-on: windows-latest | |
steps: | |
- name: Fetching sources | |
uses: actions/checkout@v4 | |
- name: Configuring MSBuild service | |
uses: microsoft/setup-msbuild@v2 | |
- name: Restoring dependencies with NuGet | |
run: | | |
nuget restore mhed.sln | |
- name: Building project with MSBuild | |
run: | | |
msbuild /p:Configuration=Release mhed.sln |