diff --git a/.github/workflows/test-dotnet-samples.yml b/.github/workflows/test-dotnet-samples.yml index a14a50d..77cdfa7 100644 --- a/.github/workflows/test-dotnet-samples.yml +++ b/.github/workflows/test-dotnet-samples.yml @@ -24,13 +24,6 @@ jobs: 'Annotations/PolygonAnnotations/', 'Annotations/PolyLineAnnotations/' ] - dlls: [ - 'Annotations.dll', - 'InkAnnotations.dll', - 'LinkAnnotation.dll', - 'PolygonAnnotations.dll', - 'PolyLineAnnotations.dll' - ] steps: - name: Checkout uses: actions/checkout@v4 @@ -47,4 +40,7 @@ jobs: - name: Run samples working-directory: ${{matrix.dir}} run: | - dotnet bin/Release/net6.0/${{ matrix.dlls}} + file_path="${{ matrix.dir }}" + dll_name=$(echo "$file_path" | cut -d'/' -f2) + echo "Now running ${{ dll_name }}.dll" + dotnet bin/Release/net6.0/${{ dll_name }}