RJCP.DLL.SerialPortStream icon indicating copy to clipboard operation
RJCP.DLL.SerialPortStream copied to clipboard

Multiple dependencies missing from the project.

Open Sebbasstt opened this issue 1 year ago • 1 comments

Unable to compile this project. Is it possible to obtain the component only without racking my brains to find everything that is missing to compile it?

RJCP.IO.Buffer RJCP.IO.DeviceMgr

I'm not very advanced in .net core and it seems to be very complicated to compile to get the .dll that I need.

I name only these two but, there are more than 100 errors if I want to compile it.

I'm looking for something simple to use a serial port in .net framework 4.8 under mono so I don't want to bother with an incomplete project

thank you

Sebbasstt avatar Apr 29 '24 23:04 Sebbasstt

You can do this in two ways:

  1. Check out my other repositories at the same level as this repo, so it looks like:
  • serialportstream -> rjcp.dll.serialportstream.git
  • environment -> RJCP.DLL.Environment.git
  • bufferio -> RJCP.DLL.BufferIO.git
  • trace -> RJCP.DLL.Trace.git
  • devicemgr -> RJCP.DLL.DeviceMgr.git
  1. The second way, is to check out my base repository, initialise and build from there
  • git checkout rjcp.base
  • git submodule init
  • cd framework/serialportstream
  • dotnet build

Otherwise, why don't you just use the NuGet package? It's tested under Mono. https://www.nuget.org/packages/RJCP.SerialPortStream

jcurl avatar Apr 30 '24 06:04 jcurl