-
Notifications
You must be signed in to change notification settings - Fork 6k
.NET Framework markdig conversion issues, Part 1 #6786
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM but left a few comments for you to address before merging
|
||
``` | ||
<% @ServiceHost Service="MyNamespace.MyServiceImplementationTypeName" %> | ||
``` | ||
|
||
It consists of the [@ServiceHost](../../../../docs/framework/configure-apps/file-schema/wcf-directive/servicehost.md) directive and a single attribute, `Service`. The value of the `Service` attribute is the common language runtime (CLR) type name of the service implementation. Using this directive is basically equivalent to creating a service host using the following code. | ||
It consists of the \[@ServiceHost](../../../../docs/framework/configure-apps/file-schema/wcf-directive/servicehost.md) directive and a single attribute, `Service`. The value of the `Service` attribute is the common language runtime (CLR) type name of the service implementation. Using this directive is basically equivalent to creating a service host using the following code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The \ needs to be inside the bracket
@@ -45,7 +45,7 @@ This topic describes the steps required to set up Windows Process Activation Ser | |||
``` | |||
|
|||
> [!NOTE] | |||
> This command is a single line of text. This command enables the /\<*WCF Application*> application to be accessed using both http://localhost*/\<WCF Application>* and net.tcp://localhost/*\<WCF Application>*. | |||
> This command is a single line of text. This command enables the /\<*WCF Application*> application to be accessed using both `http://localhost`*/\<WCF Application>* and `net.tcp://localhost/`*\<WCF Application>*. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this renders a bit weird. Maybe it would be better to just have everything inside backticks?
@@ -51,12 +53,12 @@ public interface ICalculatorSession | |||
|
|||
The service maintains state, using the feature, for each client as multiple service operations are called to perform a calculation. The client can retrieve the current result by calling `Result` and can clear the result to zero by calling `Clear`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not related to your change:
formatting on this session here on GitHub diff looks a bit odd. Not sure what's causing that.
line 35 and 62- add language identifier?
@@ -6,26 +6,26 @@ ms.assetid: 69a21511-0871-4c41-9a53-93110e84d7fd | |||
# Troubleshooting the Getting Started Tutorial | |||
This topic lists the most common problems encountered when working through the Getting Started Tutorial and how to resolve them. | |||
|
|||
1. [I am unable to find the project files on my hard drive.](../../../docs/framework/wcf/troubleshooting-the-getting-started-tutorial.md#BKMK_q1) | |||
1. [I am unable to find the project files on my hard drive.](#BKMK_q1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not related to your change but this topic looks pretty bad with this layout. The section names look ridiculously long. Wondering if removing this menu from the top and just listing the different problems on a bulleted list could make this look a bit better
.NET Framework markdig conversion issues
Related to #6581