Skip to content

Commit 0a3a03b

Browse files
committed
Bold Solution Explorer instances
1 parent 0b49cd4 commit 0a3a03b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/data-tools/walkthrough-creating-a-simple-wcf-service-in-windows-forms.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: ghogen
66
manager: mijacobs
77
ms.subservice: data-tools
88
ms.topic: how-to
9-
ms.date: 03/17/2025
9+
ms.date: 03/19/2025
1010
dev_langs:
1111
- VB
1212
- CSharp
@@ -16,7 +16,7 @@ helpviewer_keywords:
1616
- WCF services
1717
- WCF services, walkthrough
1818

19-
# Customer intent: As a developer, I want to understand how to create a WCF Service in .NET Framework so I can access it from a Windows Forms app.
19+
# Customer intent: As a developer, I want to understand how to create a WCF Service in .NET Framework so that I can access it from a Windows Forms app.
2020

2121
---
2222

@@ -54,7 +54,7 @@ To create a WCF service in Visual Studio, follow these steps:
5454

5555
This step creates a working WCF service that you can test and access. The following steps demonstrate how to modify the default method to use a different data type. In a real application, you'd also add your own functions to the service.
5656

57-
4. In Solution Explorer, double-click **IService1.cs** or **IService1.vb** in your WCF service library project, depending on which type of project you created.
57+
4. In **Solution Explorer**, double-click **IService1.cs** or **IService1.vb** in your WCF service library project, depending on which type of project you created.
5858

5959
:::image type="content" alt-text="Screenshot that shows the IService1 file in Solution Explorer." source="../data-tools/media/wcf2.png":::
6060

@@ -84,7 +84,7 @@ To create a WCF service in Visual Studio, follow these steps:
8484

8585
---
8686

87-
7. In Solution Explorer, double-click **Service1.cs** or **Service1.vb**.
87+
7. In **Solution Explorer**, double-click **Service1.cs** or **Service1.vb**.
8888

8989
:::image type="content" alt-text="Screenshot that shows the Service1 file in Solution Explorer." source="../data-tools/media/wcf3.png":::
9090

@@ -150,7 +150,7 @@ To reference the WCF service from a project, follow these steps:
150150

151151
1. In the **Add a New Project** window, choose either a C# or Visual Basic **Windows Forms App (.NET Framework)** project. Select **Next**, and then **Create** to create the project.
152152

153-
1. In Solution Explorer, right-click the project node of the new project, and select **Add** > **Service Reference**.
153+
1. In **Solution Explorer**, right-click the project node of the new project, and select **Add** > **Service Reference**.
154154

155155
The **Add Service Reference** dialog box appears.
156156

@@ -166,7 +166,7 @@ To reference the WCF service from a project, follow these steps:
166166

167167
To use a WCF service reference to build a client application, follow these steps.
168168

169-
1. In Solution Explorer, double-click **Form1.cs** or **Form1.vb** in the Windows Forms app.
169+
1. In **Solution Explorer**, double-click **Form1.cs** or **Form1.vb** in the Windows Forms app.
170170

171171
The form opens in Windows Forms Designer.
172172

@@ -188,7 +188,7 @@ To use a WCF service reference to build a client application, follow these steps
188188

189189
---
190190

191-
1. In Solution Explorer, right-click the project node (for example, **WindowsFormsApp1**), and select **Set as StartUp Project**.
191+
1. In **Solution Explorer**, right-click the project node (for example, **WindowsFormsApp1**), and select **Set as StartUp Project**.
192192

193193
1. Press **F5** to run the project. Enter some text and select the button. The label displays **You entered:**, followed by your text.
194194

0 commit comments

Comments
 (0)