Skip to content

Commit 6a8ecc5

Browse files
committed
Updated NuGet readme.md files.
1 parent f9144ac commit 6a8ecc5

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

AntPlus.Extensions.Hosting/ISelectImplementation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ internal class SelectBicyclePowerImplementation : ISelectImplementation
2727
/// Gets the type of the bicycle power sensor.
2828
/// </summary>
2929
/// <remarks>
30-
/// <see cref="CrankTorqueFrequencySensor"/>s only broadcast their main page. Other bicycle power sensors broadcast
30+
/// <see cref="CrankTorqueFrequencySensor"/> sensors only broadcast their main page. Other bicycle power sensors broadcast
3131
/// any number of other pages. This allows the method to determine the sensor type.
3232
/// </remarks>
3333
/// <inheritdoc />

AntPlus.Extensions.Hosting/readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ complete library is ready to be used by the app. Here's a snippet from the WPF s
1818
// create the device collection - this starts scanning for devices
1919
AntDevices = _host.Services.GetRequiredService<AntCollection>();
2020
```
21-
MAUI apps can use `UseMauiAntPlus()` to add the dependencies to `MauiApp.CreateBuilder()`.
21+
MAUI apps can also invoke `UseAntPlus()` to add the dependencies to `MauiApp.CreateBuilder()`.
2222

2323
An ==important== benefit of using dependency injection is that you can now add ANT devices not supported by the current
24-
ANT+ Class Library. A detailed guide on how to do this available in the documentation. You can also set the global
24+
ANT+ Class Library. A detailed guide on how to do this is available in the documentation. You can also set the global
2525
ANT device timeout from a variety of sources such as the command line, appsettings.json, etc. and let the DI container
2626
inject them into the ANT+ Class Library.
2727

28-
##### Addtional Links
29-
* [Documentation](https://stephenhidem.github.io/AntPlus/html/40537603-f0ed-f134-8e97-bd58d1d8b17d.htm)
30-
* [Examples](https://github.com/StephenHidem/AntPlus/tree/master/Examples) - MAUI-gRPC and WpfUsbStickApp examples.
31-
* [Issues](https://github.com/StephenHidem/AntPlus/issues) - Mention AntPlus class library in the issue title.
28+
### Addtional Links
29+
* [Documentation](https://stephenhidem.github.io/AntPlus/html/5e5a5e1c-a0e6-4ef0-a8f5-12f9394450c4.htm)
30+
* [Examples Overview](https://stephenhidem.github.io/AntPlus/html/27d74052-f564-4aaa-97a0-5f166ffd5ce3.htm)
31+
* [Issues](https://github.com/StephenHidem/AntPlus/issues) - Mention hosting extensions in the issue title.
3232
* [Discussions](https://github.com/StephenHidem/AntPlus/discussions) - Post questions and join discussions.
3333

AntPlus/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Add a reference to this class in your application to interact with ANT+ devices
1111
- Stride based speed and distance
1212

1313
Unknown devices are supported by the UnknownDevice class.
14-
#### Additional Links
15-
* [Documentation](https://stephenhidem.github.io/AntPlus/html/40537603-f0ed-f134-8e97-bd58d1d8b17d.htm)
16-
* [Examples](https://github.com/StephenHidem/AntPlus/tree/master/Examples) - See MAUI-gRPC and WpfUsbStickApp examples.
14+
### Additional Links
15+
* [Documentation](https://stephenhidem.github.io/AntPlus/html/5e5a5e1c-a0e6-4ef0-a8f5-12f9394450c4.htm)
16+
* [Examples Overview](https://stephenhidem.github.io/AntPlus/html/27d74052-f564-4aaa-97a0-5f166ffd5ce3.htm)
1717
* [Issues](https://github.com/StephenHidem/AntPlus/issues) - Mention AntPlus class library in the issue title.
1818
* [Discussions](https://github.com/StephenHidem/AntPlus/discussions) - Post questions and join discussions.
1919

AntRadioInterface/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ See AntUsbStick in the [repository](https://github.com/StephenHidem/AntPlus/tree
77
that supports the Dynastream/Garmin ANT USB stick.
88
One important thing to note is this example uses the .NET and native DLLs provided in Dynastream's PC SDK.
99
### Additional Links
10-
* [Documentation](https://stephenhidem.github.io/AntPlus/html/e3aaa19e-2c22-c645-29dd-df0b206bf71f.htm)
11-
* [Examples](https://github.com/StephenHidem/AntPlus/tree/master/Examples) - See AntUsbStick for an example implementation.
10+
* [Documentation](https://stephenhidem.github.io/AntPlus/html/5e5a5e1c-a0e6-4ef0-a8f5-12f9394450c4.htm)
11+
* [Examples Overview](https://stephenhidem.github.io/AntPlus/html/27d74052-f564-4aaa-97a0-5f166ffd5ce3.htm)
1212
* [Issues](https://github.com/StephenHidem/AntPlus/issues) - Mention AntRadioInterface in the issue title.
1313
* [Discussions](https://github.com/StephenHidem/AntPlus/discussions) - Post questions and join discussions.

Examples/AntUsbStick/readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Small Earth Technology ANT+ USB Stick Class Library
22
This package implements the Small Earth Technology ANT radio interface. It supports Garmin/Dynastream ANT USB sticks and some development
33
boards with USB interfaces.
4-
##### Getting Started
4+
### Getting Started
55
> **Important:** Projects that consume this package must set the platform target to x86. This is due to the native DLLs that are a part of the package.
66
77
The easiest way to make use of the package is to add it to your DI container.
@@ -19,8 +19,8 @@ _host = Host.CreateDefaultBuilder().
1919
```
2020
This snippet makes use of the Small Earth Technology ANT+ Class Library AntDeviceCollection class and DI container constructor injection. The DI container
2121
will provide logging services and the IAntRadio implementation provided by the ANT+ USB Stick Class Library to the AntDeviceCollection.
22-
##### Addtional Links
23-
* [Documentation](https://stephenhidem.github.io/AntPlus/html/bf8a5d40-6d1a-6d79-a57f-fd17688d7682.htm)
24-
* [Examples](https://github.com/StephenHidem/AntPlus/tree/master/Examples) - Includes AntUsbStick source code
22+
### Addtional Links
23+
* [Documentation](https://stephenhidem.github.io/AntPlus/html/5e5a5e1c-a0e6-4ef0-a8f5-12f9394450c4.htm)
24+
* [Examples Overview](https://stephenhidem.github.io/AntPlus/html/27d74052-f564-4aaa-97a0-5f166ffd5ce3.htm)
2525
* [Issues](https://github.com/StephenHidem/AntPlus/issues) - Mention AntUsbStick in the issue title.
2626
* [Discussions](https://github.com/StephenHidem/AntPlus/discussions) - Post questions and join discussions.

0 commit comments

Comments
 (0)