Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/core/additional-tools/dotnet-svcutil-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public interface ISayHello
string Hello(string name);
}
```
For this example, the web service will be assumed to be hosted at the following address: _http://myhost/SayHello.svc_
For this example, the web service will be assumed to be hosted at the following address: `http://contoso.com/SayHello.svc`

From a `Windows`, `macOS`, or `Linux` command window perform the following steps:

Expand Down Expand Up @@ -66,7 +66,7 @@ dotnet restore
5. Run _dotnet_ with the _svcutil_ command to generate the web service reference file as follows:

```console
dotnet svcutil http://myhost/SayHello.svc
dotnet svcutil http://contoso.com/SayHello.svc
```
The generated file is saved as _HelloSvcutil/ServiceReference1/Reference.cs_. The _dotnet_svcutil_ tool also adds to the project the appropriate WCF packages required by the proxy code as package references.

Expand Down