-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
1,081 additions
and
763 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import 'package:msix/msix.dart'; | ||
|
||
void main(List<String> arguments) { | ||
Msix().createMsix(arguments); | ||
Future<void> main(List<String> arguments) async { | ||
await Msix(arguments).create(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import 'package:msix/msix.dart'; | ||
|
||
Future<void> main(List<String> arguments) async { | ||
await Msix(arguments).publish(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
<link rel="icon" type="image/png" href="data:image/png;base64, FAVICON_BASE64" /> | ||
<meta name="description" content="PAGE_DESCRIPTION"> | ||
<title>PAGE_TITLE</title> | ||
</head> | ||
|
||
<body> | ||
|
||
<div class="flex m-14"> | ||
<div class="mr-5"> | ||
<img class="w-48" src="data:image/png;base64, IMAGE_BASE64" alt="logo"> | ||
</div> | ||
<div> | ||
<h1 class="text-3xl text-sky-500 mb-5">APP_NAME</h1> | ||
<h3 class="text-xl text-gray-600 mb-8">Version APP_VERSION</h3> | ||
<button class="bg-sky-500 hover:bg-sky-400 transition-colors rounded-md text-white px-8 py-1 mb-3" | ||
onclick="download()">Install</button> | ||
<a href="https://go.microsoft.com/fwlink/?linkid=870616" target="_blank"> | ||
<p class="text-sky-500 mb-5">Troubleshoot installation</p> | ||
</a> | ||
<h3 class="text-xl text-gray-600 mb-4">Application Information</h3> | ||
|
||
<div class="flex text-gray-500"> | ||
<div class="font-bold mr-14"> | ||
<div class="mb-4">Version</div> | ||
<div class="mb-4">Required Operating System</div> | ||
<div class="mb-4">Architectures</div> | ||
<div class="mb-4">Publisher</div> | ||
</div> | ||
<div> | ||
<div class="mb-4">APP_VERSION</div> | ||
<div class="mb-4">REQUIRED_OS_VERSION</div> | ||
<div class="mb-4">ARCHITECTURE</div> | ||
<div class="mb-4">PUBLISHER_NAME</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
<script> | ||
function download() { | ||
var a = document.createElement("a"); | ||
a.href = '/APP_INSTALLER_LINK'; | ||
a.setAttribute("download", 'APP_INSTALLER_LINK'); | ||
a.click(); | ||
} | ||
</script> | ||
</body> | ||
|
||
</html> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Import-PfxCertificate -FilePath "test_certificate.pfx" -Password (ConvertTo-SecureString -String "1234" -AsPlainText -Force) -CertStoreLocation Cert:\LocalMachine\Root |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.