-
Hello! We are planning to use Prism for our .NET MAUI project. I was hoping to know if there were any additional details on the included features. Specifically, Commercial Plus has:
What are the additional containers? Is DryIoc available in the Commercial edition, or would Commercial Plus be needed? For the most part, we think the commercial edition would be fine, but if we choose incorrect, can we later upgrade to Commercial Plus at reduced cost? I've only seen the comparison at the pricing page, but any additional details would be appreciated. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Honestly we've found that the majority of people are opting for the Commercial Plus because we have made every effort to provide a lot of extra value, but we encourage you to make the choice that is right for you and your team.
Short answer is yes you can upgrade paying the difference between the licenses.
It is available to users with all licenses, including those who qualify for the Community License.
DryIoc is a fantastic container and continues to be my container of choice, and I continue to recommend that anyone capable of it, please consider sponsoring @dadhi. That said we recognize that having a single DI Container supported poses a security risk for the Prism Community. As a result we have taken the time to provide support for some additional containers to help safeguard your software investments. Currently, Commercial Plus users have access to two additional Containers
Note that we may add additional containers in the future. For instance we do have an open request for Castle Windsor.
In addition to the private NuGet feed you also get access to the Prism Discord server where you can ask questions. We find the Prism Community to be a fantastic one full of individuals who step up to help out. @brianlagunas and I try to answer questions as we can, but often times you may also find that another community member has encountered the same issue before and they will step up to help you out far faster than other public methods including GitHub Discussions. Do keep in mind that the Discord is not a substitution and should not be confused with actual Enterprise Support. As for the private NuGet feed, in addition to having access to bug fixes/features for Prism as soon as they're merged you also have access to the Prism Plugins. Plugin Popups Plugin Logging I am also currently working on putting together a demo that makes use of Aspire to launch Raygun locally with Ollama, Open WebUI and Graylog Server. This will give you a complete dev setup to capture logs, events, and errors with AI integration from the Raygun Team to analyze your errors, and Open WebUI to give you a private/local portal to interrogate the model(s) of your choice on anything you may want without concerns of your private data being used by any 3rd parties. Plugin Essentials One of my personal favorites in the Essentials Plugin is that this is 100% of the code you need to write to implement a Secure Store and access your secure value in code. As you'll see though in the docs there are a lot more APIs either already available or that will be available in the coming weeks. [SecureStore]
public partial interface IUserStore
{
string? Jwt { get; set; }
}
container.RegisterStore<IUserStore>(); Plugin Observable Regions General NoteMany of the features within Essentials and other plugins/tooling that we provide has also come from companies privately sponsoring these features. So if there is a feature that you require we can have the conversation with you to see what it might take to get additional features that you're looking for. |
Beta Was this translation helpful? Give feedback.
Honestly we've found that the majority of people are opting for the Commercial Plus because we have made every effort to provide a lot of extra value, but we encourage you to make the choice that is right for you and your team.
Short answer is yes you can upgrade paying the difference between the licenses.
It is available to users with all licenses, including those who qualify for the Community License.
DryIoc is a fantastic container and continues to be my container of choice, and I continue to recom…