Skip to content

Adds example for getting the QueryCompletionInformation from the query response #38

Adds example for getting the QueryCompletionInformation from the query response

Adds example for getting the QueryCompletionInformation from the query response #38

Workflow file for this run

name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Setup NuGet
uses: NuGet/[email protected]
- name: Navigate to Workspace
run: cd $GITHUB_WORKSPACE
- name: Restore Packages - client
run: nuget restore client\Samples.sln
- name: Build Solution - client
run: |
msbuild.exe client\Samples.sln /p:configuration="Release"
- name: Restore Packages - kafka
run: nuget restore kafka\KafkaSampleData.sln
- name: Build Solution - kafka
run: |
msbuild.exe kafka\KafkaSampleData.sln /p:configuration="Release"