You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 10, 2022. It is now read-only.
When running on VS 2015, I got syntax errors until I updated the Web client Nuget package and configured the solution to run multiple projects.
To update the nuget package, run the following command at the Package MAnager Console:
Install-Package Microsoft.AspNet.WebApi.Client
Once that's updated, to run the server and client you need to configure the solution to run two projects at once.
Right click solution and select "Properties"
While on the page Common Properties > Startup Project toggle "Multiple startup projects" and move the server project (ProductApi) above the client (HttpClientSample).
Set Action to "Start" for both projects.
Click OK, then click Start button or press F5 to run your project
The text was updated successfully, but these errors were encountered:
When running on VS 2015, I got syntax errors until I updated the Web client Nuget package and configured the solution to run multiple projects.
Install-Package Microsoft.AspNet.WebApi.Client
Once that's updated, to run the server and client you need to configure the solution to run two projects at once.
Right click solution and select "Properties"
While on the page Common Properties > Startup Project toggle "Multiple startup projects" and move the server project (ProductApi) above the client (HttpClientSample).
Set Action to "Start" for both projects.
Click OK, then click Start button or press F5 to run your project
The text was updated successfully, but these errors were encountered: