Skip to content

Change license to MIT #16

Change license to MIT

Change license to MIT #16

Workflow file for this run

name: Build Windows Forms app
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: [windows-latest]
steps:
- uses: actions/checkout@v4
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Create 64-bit Release build
run: msbuild.exe /p:Configuration=Release /p:Platform=x64 Memory_Game.sln
- name: Create 32-bit Release build
run: msbuild.exe /p:Configuration=Release /p:Platform=x86 Memory_Game.sln