Skip to content

Commit 1cb69e1

Browse files
authored
Fix up product metadata (and spelling) (#5922)
1 parent a74e411 commit 1cb69e1

File tree

38 files changed

+55
-76
lines changed

38 files changed

+55
-76
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The content team tracks issues for .NET documentation in the [dotnet/docs](https
1515
The code in this repository represents programs that demonstrate application or library scenarios. These samples often use more than one technology, feature, or toolkit. Each sample has a readme.md file that explains the sample and links to resources for more information.
1616

1717
Samples should be buildable projects. Those projects should build and
18-
run on the widest set of platforms possible for the given sample. In practice, that means building .NET Core-based console applications where possible. Samples that are specific to the web or a UI framework should add those tools as needed. Examples include web applications, mobile apps, WPF or WinForms apps, and so on.
18+
run on the widest set of platforms possible for the given sample. In practice, that means building .NET Core-based console applications where possible. Samples that are specific to the web or a UI framework should add those tools as needed. Examples include web applications, mobile apps, WPF or Windows Forms apps, and so on.
1919

2020
We are working toward having a CI system in place for all code. When you make any updates to samples, make sure each update is part of a buildable
2121
project. Ideally, add tests for correctness on samples as well.

azure/app-configuration-dynamic-reload/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
languages:
33
- csharp
44
products:
5-
- dotnet-core
5+
- aspnet-core
66
- azure
77
page_type: sample
88
name: "Azure App Configuration dynamic settings sample"

azure/app-insights-aspnet-core-quickstart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
languages:
33
- csharp
44
products:
5-
- dotnet-core
5+
- aspnet-core
66
- azure
77
page_type: sample
88
name: "Azure Monitor Application Insights Quickstart for ASP.NET Core"

azure/sdk-identity-resources-storage/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ languages:
33
- csharp
44
products:
55
- dotnet-core
6-
- azure
6+
- azure-sdks
77
page_type: sample
88
name: "Azure Identity, Resource Management, and Storage sample"
99
urlFragment: "azure-identity-resource-management-storage"

core/extensions/COMServerDemo/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ languages:
33
- csharp
44
products:
55
- dotnet-core
6-
- windows
76
page_type: sample
87
name: "COM Server Demo"
98
urlFragment: "com-server-demo"

core/extensions/ExcelDemo/ReadMe.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ languages:
33
- csharp
44
products:
55
- dotnet-core
6-
- windows
76
page_type: sample
87
name: "Excel Demo"
98
urlFragment: "excel-demo"

core/extensions/NetComSxS/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ languages:
44
products:
55
- dotnet-core
66
- dotnet-framework
7-
- windows
87
page_type: sample
98
name: ".NET Framework and .NET Core COM interoperability"
109
urlFragment: "net-framework-net-core-com-interop"

core/extensions/VisioDemo/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ languages:
33
- csharp
44
products:
55
- dotnet-core
6-
- windows
76
page_type: sample
87
name: "Visio Demo"
98
urlFragment: "visio-demo"

core/interop/comwrappers/IDispatch/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The [`ComWrappers`](https://docs.microsoft.com/dotnet/api/system.runtime.interop
66
Key Features
77
------------
88

9-
Demonstrates how to implement and utilize the `ComWrappers` API by manually implementing a subset of [`IDispatch`](https://docs.microsoft.com/windows/win32/api/oaidl/nn-oaidl-idispatch) for .NET objects. The consumer of the `IDispatch` instance is the [WinForms `WebBrowser`](https://docs.microsoft.com/dotnet/framework/winforms/controls/webbrowser-control-windows-forms) API for [exposing an object to the JavaScript engine](https://docs.microsoft.com/dotnet/api/system.windows.forms.webbrowser.objectforscripting).
9+
Demonstrates how to implement and utilize the `ComWrappers` API by manually implementing a subset of [`IDispatch`](https://docs.microsoft.com/windows/win32/api/oaidl/nn-oaidl-idispatch) for .NET objects. The consumer of the `IDispatch` instance is the [Windows Forms `WebBrowser`](https://docs.microsoft.com/dotnet/framework/winforms/controls/webbrowser-control-windows-forms) API for [exposing an object to the JavaScript engine](https://docs.microsoft.com/dotnet/api/system.windows.forms.webbrowser.objectforscripting).
1010

1111
This is already fully supported by the built-in COM interop system, but this demonstrates a way for users to provide their own implementation.
1212

core/interop/pinvoke/marshaling/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ languages:
55
products:
66
- dotnet-core
77
page_type: sample
8-
name: "P/Invoke Marshaling Sample"
8+
name: "P/Invoke Marshalling Sample"
99
urlFragment: "pinvoke-marshal-arguments"
1010
description: "A .NET application that demonstrates different ways to marshal arguments to native functions when using P/Invokes."
1111
---
1212

13-
# .NET Core P/Invoke Marshaling Sample
13+
# .NET Core P/Invoke Marshalling Sample
1414

1515
This project demonstrates different ways to marshal arguments to native functions when using P/Invokes. Documentation can be found here for [P/Invokes](https://docs.microsoft.com/dotnet/standard/native-interop/pinvoke) and here for the [Type marshaling](https://docs.microsoft.com/dotnet/standard/native-interop/type-marshaling).
1616

0 commit comments

Comments
 (0)