Rank: Administration
Groups: Administrators, Moderator, Registered Joined: 2/28/2018(UTC) Posts: 53 Location: Red Wing, MN
Was thanked: 4 time(s) in 4 post(s)
|
If you are attempting to use the DataBrowser API in your own projects, you will need to do the following after upgrading to .NET 6: 1. Register the Code Page providers available in .NET Framework that aren't part of .NET CORE by default. Code:
static void Main(string[] args)
{
System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance);
// ...
}
2. Add references to the following CenterPoint assemblies:
- RedWingSoftware.CenterPoint.Domain.L0.V1.dll
- RedWingSoftware.Core.Server.L0.V1.dll
- RedWingSoftware.MainCBL.L0.V1.dll
- RedWingSoftware.ExternalAPI.L0.V1.dll
- DataBrowser.dll
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.
Important Information:
The Red Wing Software Developer Forum uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close