Skip to content

Placed the checkbox above the deprecated checkbox #689

Placed the checkbox above the deprecated checkbox

Placed the checkbox above the deprecated checkbox #689

Workflow file for this run

name: Build & Test & SonarQube
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
- name: add DevExpress nuget feed
run: dotnet nuget add source https://nuget.devexpress.com/api -n DXFeed -u DevExpress -p ${{ secrets.DEVEXPRESS_NUGET_KEY }} --store-password-in-clear-text
- name: Restore dependencies
run: dotnet restore CDP4-CE.sln
- name: Navigate to Workspace
run: cd $GITHUB_WORKSPACE
- name: Build
run: msbuild.exe CDP4-CE.sln /p:platform="Any CPU" /p:configuration="Debug"