Skip to content

Bump CommunityToolkit.HighPerformance from 8.2.1 to 8.2.2 #61

Bump CommunityToolkit.HighPerformance from 8.2.1 to 8.2.2

Bump CommunityToolkit.HighPerformance from 8.2.1 to 8.2.2 #61

Workflow file for this run

name: TACTLib
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: 'recursive'
- name: Install .NET Core 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore project
run: dotnet restore TACTLib.sln --verbosity m -r win7-x64
- name: Build Release
run: dotnet publish -f net6.0 --configuration Release -r win7-x64 --self-contained false -o dist/Release
- name: Upload Release
uses: actions/upload-artifact@v2
with:
name: TACTLib-release
path: dist/Release
- name: Build Debug
run: dotnet publish -f net6.0 --configuration Debug -r win7-x64 --self-contained false -o dist/Debug
- name: Upload Debug
uses: actions/upload-artifact@v2
with:
name: TACTLib-debug
path: dist/Debug