Skip to content

fix: escape * in detection service for vswhere usage #19

fix: escape * in detection service for vswhere usage

fix: escape * in detection service for vswhere usage #19

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths:
- 'src/**'
- '*.sln'
- '.github/workflows/ci.yml'
pull_request:
branches: [main]
paths:
- 'src/**'
- '*.sln'
- '.github/workflows/ci.yml'
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
platform: [x64, x86]
configuration: [Debug, Release]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Restore dependencies
run: dotnet restore CodingWithCalvin.VSToolbox.sln
- name: Build
run: dotnet build CodingWithCalvin.VSToolbox.sln --configuration ${{ matrix.configuration }} -p:Platform=${{ matrix.platform }} --no-restore
- name: Test
run: dotnet test CodingWithCalvin.VSToolbox.sln --configuration ${{ matrix.configuration }} -p:Platform=${{ matrix.platform }} --no-build --verbosity normal