Adds example for getting the QueryCompletionInformation from the query response #38
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |