-
Notifications
You must be signed in to change notification settings - Fork 34
2. Installation
Vishal Rao edited this page Dec 11, 2021
·
11 revisions
Installation requires a few things
- Certificate.
- .appxbundle file (xxxxxxxx.appxbundle).
- and a server application (publish.zip).
Download the above files from here.
Note that since you can install any software from a trusted publisher only, you need to add this certificate to your "Trusted Root Certification Authorities" folder.
Once you have the required files downloaded, follow the below steps:-
- Open the certificate file by double-clicking on it. If you open it for the first time you may see something like the following. Click on "Install Certificate". Note that the filename may vary for you based on the release.
- Choose "Local Machine". Then click on "Next".
- Choose "Place all certificates in the following store" and click on "Browse". Then select the "Trusted Root Certification Authorities" folder and click on "Ok". Then "Next".
- Click on "Finish".
- Now when you open the certificate you should see something like below.
Now you can simply install the application by double-clicking on the ".appxbundle" file.
Alternatively, you can run the command Add-AppxPackage -Path "PATH_TO_.appxbundle_File"
.
- Unzip the "server" application. Go inside the "Publish" folder.
- Open any terminal and run the Server executable or Server.dll.
./Server
or
dotnet Server.dll
You may need to set the permission to execute "Server". Run chmod +x Server
to give execution permission.