Skip to content

CM-36341 - Create plugin skeleton #4

CM-36341 - Create plugin skeleton

CM-36341 - Create plugin skeleton #4

Workflow file for this run

name: Build extension
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '3.1.x'
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
with:
vs-version: '[17.0, )'
- name: Build extension
run: msbuild Cycode\Cycode.csproj /t:Rebuild
env:
DeployExtension: False