Skip to content

Change license to MIT #14

Change license to MIT

Change license to MIT #14

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 tic_tac_toe.sln
- name: Create 32-bit Release build
run: msbuild.exe /p:Configuration=Release /p:Platform=x86 tic_tac_toe.sln