HttpClientSample
HttpClientSample copied to clipboard
Solution doesn't start. Needs to be configured first
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
i have a question, how to create a dotnet core web server using sslv3 protocol?