|
I'm planning to use Bluetooth with my .Net Console Application. |
Answered by
jkotas
Dec 8, 2023
Replies: 2 comments 9 replies
32feet.NET (I have no experience with this library myself, it just appeared multiple times in the search result when googling for "C# bluetooth", and it is actively maintained as far as i can tell...) |
2 replies
|
I believe this is too specific to include in the .NET Base Class Libraries. |
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You do not have to use UWP or MAUI to use Windows SDK.
For example, this console app is going to enumerate all devices on the system:
(Make sure to have -windows target framework in your .csproj file. Like
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>.)https://github.com/dotnet/iot is probably the best repo in the dotnet org to discuss a d…