Skip to content

Commit

Permalink
Last clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorHofer committed Sep 18, 2023
1 parent 934eeea commit f4d9074
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ The main types provided by this library are:
* [Microsoft.Extensions.Configuration.UserSecrets](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets)
* [Microsoft.Extensions.Configuration.Xml](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Xml)


## Feedback & Contributing

<!-- How to provide feedback on this package and contribute to it -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<!-- A description of the package and where one can find more documentation -->
`Microsoft.Extensions.Logging.Debug` provides a Debug output logger provider implementation for Microsoft.Extensions.Logging. This logger logs messages to a debugger monitor by writing messages with `System.Diagnostics.Debug.WriteLine()`.


## Key Features

<!-- The key features of this package -->
Expand Down
1 change: 1 addition & 0 deletions src/libraries/Microsoft.Extensions.Logging/src/PACKAGE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## About

<!-- A description of the package and where one can find more documentation -->

`Microsoft.Extensions.Logging` is combined with a core logging abstraction under `Microsoft.Extensions.Logging.Abstractions`. This abstraction is available in our basic built-in implementations like console, event log, and debug (Debug.WriteLine) logging.

## Key Features
Expand Down
3 changes: 3 additions & 0 deletions src/libraries/System.Data.Odbc/src/PACKAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ Allows access to ODBC data sources.
This is a basic example of retrieving the results of a query using an [OdbcDataReader](https://learn.microsoft.com/dotnet/api/system.data.odbc.odbcdatareader). For examples of using an [OdbcDataAdapter](https://learn.microsoft.com/dotnet/api/system.data.odbc.odbcdataadapter), and of updating an ODBC data source, please see the documentation.

```cs
using System.Data.Odbc;

string connectionString = "";
string queryString = "SELECT DISTINCT CustomerID FROM Orders";

using OdbcConnection connection = new OdbcConnection(connectionString);
Expand Down
3 changes: 3 additions & 0 deletions src/libraries/System.Data.OleDb/src/PACKAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ Allows access to legacy OLE DB data sources.
This is a basic example of retrieving the results of a query using an [OleDbDataReader](https://learn.microsoft.com/dotnet/api/system.data.oledb.oledbdatareader). For examples of using an [OleDbDataAdapter](https://learn.microsoft.com/dotnet/api/system.data.oledb.oledbdataadapter), and of updating an OLE DB data source, please see the documentation.

```cs
using System.Data.OleDb;

string connectionString = "";
string queryString = "SELECT OrderID, CustomerID FROM Orders";

using OleDbConnection connection = new OleDbConnection(connectionString);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ The main types provided by this library are:

[System.DirectoryServices](https://learn.microsoft.com/dotnet/api/system.directoryservices)


## Feedback & Contributing

<!-- How to provide feedback on this package and contribute to it -->
Expand Down
1 change: 0 additions & 1 deletion src/libraries/System.DirectoryServices/src/PACKAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ The main types provided by this library are:
* [Active Directory Service Interfaces](https://learn.microsoft.com/windows/win32/adsi/active-directory-service-interfaces-adsi)
* [Lightweight Directory Access Protocol (LDAP)](https://learn.microsoft.com/previous-versions/windows/desktop/ldap/lightweight-directory-access-protocol-ldap-api)


## Related Packages

* [System.DirectoryServices.AccountManagement](https://learn.microsoft.com/dotnet/api/system.directoryservices.accountmanagement)
Expand Down
1 change: 1 addition & 0 deletions src/libraries/System.IO.Ports/src/PACKAGE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## About

<!-- A description of the package and where one can find more documentation -->

[System.IO.Ports](https://www.nuget.org/packages/System.IO.Ports) package provides synchronous serial port file resource. Additionally, the functionality of this class can be wrapped in an internal `Stream` object, accessible through the `BaseStream` property, and passed to classes that wrap or use streams.

## Key Features
Expand Down
1 change: 1 addition & 0 deletions src/libraries/System.Management/src/PACKAGE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## About

<!-- A description of the package and where one can find more documentation -->

Provides access to a rich set of management information and management events about the system, devices, and applications instrumented to the Windows Management Instrumentation (WMI) infrastructure. Not supported on other platforms.

## Key Features
Expand Down
1 change: 1 addition & 0 deletions src/libraries/System.Speech/src/PACKAGE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## About

<!-- A description of the package and where one can find more documentation -->

Provides APIs for speech recognition and synthesis built on the [Microsoft Speech API](https://learn.microsoft.com/previous-versions/windows/desktop/ms723627(v=vs.85)) in Windows. Not supported on other platforms.

This package is provided primarily for compatibility with code being ported from .NET Framework and is not accepting new features.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

## How to Use

```csharp
```C#
using System.Text;

// Register the CodePages encoding provider at application startup to enable using single and double byte encodings.
Expand Down

0 comments on commit f4d9074

Please sign in to comment.