Generating packages for .NET 6 is not supported by the UI-package builder.
The requirement is to use PackageBuilder-Console with the pkdesc-file having appropriate arguments.
(Spotfire.Dxp.PackageBuilder-Console.exe)
There are a few examples of a pkdesc-file(
Package description file (tibco.com)) in the SDK that supports multiple frameworks (NETFRAMEWORK and NETCORE /net6).
E.g. CustomToolsExample.
pkdesc-file arguments for the framework :
------
TargetFramework: Optional
One of the following:
- NETFRAMEWORK -> The package is targeted for .NETFramework. This also implies that IntendedPlatform is one of the WINDOWS alternatives.
- NETCORE -> The package is targeted for .NETCore (.NET 6 or higher). Currently this implies that IntendedPlatform is LINUX, but in the future also WINDOWS could be supported.
- ANY -> The package is targeted for any platform.
The default is "NETFRAMEWORK".
Note that this can be overridden on the command line when invoking PackageBuilder-Console.
------