I have created a Blazor Hybrid application and deploy it as a msix file.After i needed to distribute that app from my local iis server .i followed this link to do that https://learn.microsoft.com/en-us/windows/msix/app-installer/web-install-iis
but i am getting a error called "Error in parsing the package" when going to install
what i have done over here is ,i have created a asp .net web application and created a folder called packages and included a my msix file and certificate file into it. and after i created a html file and included a link inorder to install that app. after that i have created a virtual directory in my local iis and uploaded my project to that. above issue(Fig(1)) is coming after run the app even thopugh app installler is opened .following you can see folder structure of mine.
this is my index.html file
<html>
<head>
<meta charset="utf-8" />
<title> Install Page </title>
</head>
<body>
<a href="ms-appinstaller:?source=http://localhost/blapphoster/packages/BLMAUI_3.2.1.0_x64.msix"> Install My Sample App</a>
</body>
</html>
i have added the this section to web.config
<system.webServer>
<!--This is to allow the web server to serve resources with the appropriate file extension-->
<staticContent>
<mimeMap fileExtension=".appx" mimeType="application/appx" />
<mimeMap fileExtension=".msix" mimeType="application/msix" />
<mimeMap fileExtension=".appxbundle" mimeType="application/appxbundle" />
<mimeMap fileExtension=".msixbundle" mimeType="application/msixbundle" />
<mimeMap fileExtension=".appinstaller" mimeType="application/appinstaller" />
</staticContent>
<directoryBrowse enabled="true" />
</system.webServer>
am i doing any wrong thing here?