how to fix 10.2.4.1 Security - Software Dependencies ( .net blazor maui 8.0) to microsoft store

Maharasa Subramaniyan 0 Reputation points
2024-05-04T06:48:07.5833333+00:00

i have published my application in store, recently update my maui blazor application 6.0 tp 8.0 when I submit my msix package to store I am getting

10.2.4.1 Security - Software Dependencies Products may depend on non-integrated software (such as another product or module) to deliver primary functionality only as long as the additional required software is disclosed within the first two lines of the description in the Store. .NET

to resolve what I need to do

Blazor
Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML being developed by Microsoft.
1,410 questions
.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
2,959 questions
Microsoft Partner Center
Microsoft Partner Center
A Microsoft website for partners that provides access to product support, a partner community, and other partner services.
886 questions
Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
8,357 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. S.Sengupta 15,601 Reputation points MVP
    2024-05-05T02:31:00.9666667+00:00

    The error message you're encountering (10.2.4.1 Security - Software Dependencies) indicates that the Microsoft Store review process flagged your .NET MAUI Blazor application (updated from 6.0 to 8.0) because it likely depends on external software that isn't directly included in your MSIX package.

    To address this issue and ensure compliance with the Microsoft Store requirements, you need to clearly mention any dependencies, including the .NET runtime, within the first two lines of your app's description.

    Here's an example of how you can modify your app's description to comply with this requirement:

    [Your App Name]

    [Short description of your app]

    Dependencies: This app requires the .NET runtime for operation.

    Refer to the Microsoft documentation on MSIX package requirements and dependencies: https://learn.microsoft.com/en-us/windows/msix/

    Search online for specific guidance on including external dependencies in .NET MAUI Blazor MSIX packages (considering version compatibility).