Skip to content

Commit

Permalink
Adding note about usage with .NET Framework.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbailiss committed Feb 28, 2023
1 parent f2e1236 commit 861f684
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ Obtaining Apache NMS Libraries

The examples all connect to the messaging platforms using the .NET Apache NMS assemblies. These are not included in the repo. After opening the solution/projects in Visual Studio 2022 you can download/restore the assemblies using NuGet.

Can I use this code with .NET Framework?
----------------------------------------

The example projects are based on .NET 6 - i.e. .NET Core. For the most part, the code could be used in a project based on the older .NET Framework.
A few small syntax changes may be needed, e.g. removing the nullable declarations so `private string? msText = null;` becomes `private string msText = null;`.

Minimal Examples
----------------

Expand Down

0 comments on commit 861f684

Please sign in to comment.