@ -0,0 +1,2 @@ |
|||||||
|
# Auto detect text files and perform LF normalization |
||||||
|
* text=auto |
@ -0,0 +1,43 @@ |
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00 |
||||||
|
# Visual Studio Version 17 |
||||||
|
VisualStudioVersion = 17.4.33213.308 |
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1 |
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StabilityMatrix", "StabilityMatrix\StabilityMatrix.csproj", "{FB37844E-2B59-4AA2-A140-B230F095218B}" |
||||||
|
EndProject |
||||||
|
Global |
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
||||||
|
Debug|ARM64 = Debug|ARM64 |
||||||
|
Debug|x64 = Debug|x64 |
||||||
|
Debug|x86 = Debug|x86 |
||||||
|
Release|ARM64 = Release|ARM64 |
||||||
|
Release|x64 = Release|x64 |
||||||
|
Release|x86 = Release|x86 |
||||||
|
EndGlobalSection |
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Debug|ARM64.ActiveCfg = Debug|ARM64 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Debug|ARM64.Build.0 = Debug|ARM64 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Debug|ARM64.Deploy.0 = Debug|ARM64 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Debug|x64.ActiveCfg = Debug|x64 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Debug|x64.Build.0 = Debug|x64 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Debug|x64.Deploy.0 = Debug|x64 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Debug|x86.ActiveCfg = Debug|x86 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Debug|x86.Build.0 = Debug|x86 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Debug|x86.Deploy.0 = Debug|x86 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Release|ARM64.ActiveCfg = Release|ARM64 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Release|ARM64.Build.0 = Release|ARM64 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Release|ARM64.Deploy.0 = Release|ARM64 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Release|x64.ActiveCfg = Release|x64 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Release|x64.Build.0 = Release|x64 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Release|x64.Deploy.0 = Release|x64 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Release|x86.ActiveCfg = Release|x86 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Release|x86.Build.0 = Release|x86 |
||||||
|
{FB37844E-2B59-4AA2-A140-B230F095218B}.Release|x86.Deploy.0 = Release|x86 |
||||||
|
EndGlobalSection |
||||||
|
GlobalSection(SolutionProperties) = preSolution |
||||||
|
HideSolutionNode = FALSE |
||||||
|
EndGlobalSection |
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution |
||||||
|
SolutionGuid = {46EBF17D-F7E8-465B-94F1-26FC5BDEF80B} |
||||||
|
EndGlobalSection |
||||||
|
EndGlobal |
@ -0,0 +1,18 @@ |
|||||||
|
<!-- Copyright (c) Microsoft Corporation and Contributors. --> |
||||||
|
<!-- Licensed under the MIT License. --> |
||||||
|
|
||||||
|
<Application |
||||||
|
x:Class="StabilityMatrix.App" |
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||||
|
xmlns:local="using:StabilityMatrix"> |
||||||
|
<Application.Resources> |
||||||
|
<ResourceDictionary> |
||||||
|
<ResourceDictionary.MergedDictionaries> |
||||||
|
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" /> |
||||||
|
<!-- Other merged dictionaries here --> |
||||||
|
</ResourceDictionary.MergedDictionaries> |
||||||
|
<!-- Other app resources here --> |
||||||
|
</ResourceDictionary> |
||||||
|
</Application.Resources> |
||||||
|
</Application> |
@ -0,0 +1,53 @@ |
|||||||
|
// Copyright (c) Microsoft Corporation and Contributors. |
||||||
|
// Licensed under the MIT License. |
||||||
|
|
||||||
|
using Microsoft.UI.Xaml; |
||||||
|
using Microsoft.UI.Xaml.Controls; |
||||||
|
using Microsoft.UI.Xaml.Controls.Primitives; |
||||||
|
using Microsoft.UI.Xaml.Data; |
||||||
|
using Microsoft.UI.Xaml.Input; |
||||||
|
using Microsoft.UI.Xaml.Media; |
||||||
|
using Microsoft.UI.Xaml.Navigation; |
||||||
|
using Microsoft.UI.Xaml.Shapes; |
||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.IO; |
||||||
|
using System.Linq; |
||||||
|
using System.Runtime.InteropServices.WindowsRuntime; |
||||||
|
using Windows.ApplicationModel; |
||||||
|
using Windows.ApplicationModel.Activation; |
||||||
|
using Windows.Foundation; |
||||||
|
using Windows.Foundation.Collections; |
||||||
|
|
||||||
|
// To learn more about WinUI, the WinUI project structure, |
||||||
|
// and more about our project templates, see: http://aka.ms/winui-project-info. |
||||||
|
|
||||||
|
namespace StabilityMatrix |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// Provides application-specific behavior to supplement the default Application class. |
||||||
|
/// </summary> |
||||||
|
public partial class App : Application |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// Initializes the singleton application object. This is the first line of authored code |
||||||
|
/// executed, and as such is the logical equivalent of main() or WinMain(). |
||||||
|
/// </summary> |
||||||
|
public App() |
||||||
|
{ |
||||||
|
this.InitializeComponent(); |
||||||
|
} |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// Invoked when the application is launched. |
||||||
|
/// </summary> |
||||||
|
/// <param name="args">Details about the launch request and process.</param> |
||||||
|
protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args) |
||||||
|
{ |
||||||
|
m_window = new MainWindow(); |
||||||
|
m_window.Activate(); |
||||||
|
} |
||||||
|
|
||||||
|
private Window m_window; |
||||||
|
} |
||||||
|
} |
After Width: | Height: | Size: 432 B |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 637 B |
After Width: | Height: | Size: 283 B |
After Width: | Height: | Size: 456 B |
After Width: | Height: | Size: 2.0 KiB |
@ -0,0 +1,42 @@ |
|||||||
|
<!-- Copyright (c) Microsoft Corporation and Contributors. --> |
||||||
|
<!-- Licensed under the MIT License. --> |
||||||
|
|
||||||
|
<Page |
||||||
|
x:Class="StabilityMatrix.InstallPage" |
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||||
|
xmlns:local="using:StabilityMatrix" |
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||||||
|
xmlns:system="using:System" |
||||||
|
mc:Ignorable="d" |
||||||
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> |
||||||
|
|
||||||
|
<Grid> |
||||||
|
|
||||||
|
<Grid.Resources> |
||||||
|
<local:Package x:Key="ItemsViewSource" /> |
||||||
|
</Grid.Resources> |
||||||
|
|
||||||
|
<ListView x:Name="ItemListView" |
||||||
|
Margin="120,0,0,60" |
||||||
|
ItemsSource="{x:Bind packages}" |
||||||
|
BorderThickness="1" |
||||||
|
BorderBrush="{ThemeResource SystemControlForegroundBaseMediumLowBrush}" |
||||||
|
Width="350" |
||||||
|
Height="400" |
||||||
|
HorizontalAlignment="Left"> |
||||||
|
|
||||||
|
<ListView.ItemTemplate> |
||||||
|
<DataTemplate x:DataType="local:Package"> |
||||||
|
<Grid Height="110" Margin="6"> |
||||||
|
<StackPanel Grid.Column="0" VerticalAlignment="Top" Margin="10,0,0,0"> |
||||||
|
<TextBlock Text="{x:Bind Name}" x:Phase="1" Margin="0,5,0,5"></TextBlock> |
||||||
|
</StackPanel> |
||||||
|
</Grid> |
||||||
|
</DataTemplate> |
||||||
|
</ListView.ItemTemplate> |
||||||
|
</ListView> |
||||||
|
|
||||||
|
</Grid> |
||||||
|
</Page> |
@ -0,0 +1,46 @@ |
|||||||
|
// Copyright (c) Microsoft Corporation and Contributors. |
||||||
|
// Licensed under the MIT License. |
||||||
|
|
||||||
|
using Microsoft.UI.Xaml; |
||||||
|
using Microsoft.UI.Xaml.Controls; |
||||||
|
using Microsoft.UI.Xaml.Controls.Primitives; |
||||||
|
using Microsoft.UI.Xaml.Data; |
||||||
|
using Microsoft.UI.Xaml.Input; |
||||||
|
using Microsoft.UI.Xaml.Media; |
||||||
|
using Microsoft.UI.Xaml.Navigation; |
||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Collections.ObjectModel; |
||||||
|
using System.IO; |
||||||
|
using System.Linq; |
||||||
|
using System.Runtime.InteropServices.WindowsRuntime; |
||||||
|
using Windows.Foundation; |
||||||
|
using Windows.Foundation.Collections; |
||||||
|
|
||||||
|
// To learn more about WinUI, the WinUI project structure, |
||||||
|
// and more about our project templates, see: http://aka.ms/winui-project-info. |
||||||
|
|
||||||
|
namespace StabilityMatrix |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// An empty page that can be used on its own or navigated to within a Frame. |
||||||
|
/// </summary> |
||||||
|
public sealed partial class InstallPage : Page |
||||||
|
{ |
||||||
|
private readonly ObservableCollection<Package> packages = new() |
||||||
|
{ |
||||||
|
new Package() { Name = "Automatic 1111" } |
||||||
|
}; |
||||||
|
|
||||||
|
public InstallPage() |
||||||
|
{ |
||||||
|
this.InitializeComponent(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public class Package |
||||||
|
{ |
||||||
|
public string Name { get; set; } |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,22 @@ |
|||||||
|
<!-- Copyright (c) Microsoft Corporation and Contributors. --> |
||||||
|
<!-- Licensed under the MIT License. --> |
||||||
|
|
||||||
|
<Window |
||||||
|
x:Class="StabilityMatrix.MainWindow" |
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||||
|
xmlns:local="using:StabilityMatrix" |
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||||||
|
mc:Ignorable="d"> |
||||||
|
|
||||||
|
<Grid> |
||||||
|
<Grid.RowDefinitions> |
||||||
|
<RowDefinition Height="Auto"/> |
||||||
|
<RowDefinition Height="*"/> |
||||||
|
</Grid.RowDefinitions> |
||||||
|
|
||||||
|
<Button x:Name="ButtonNavigate" Grid.Row="0" Content="InstallPage" Click="ButtonNavigate_OnClick"/> |
||||||
|
<Frame x:Name="ContentFrame" Grid.Row="1"/> |
||||||
|
</Grid> |
||||||
|
</Window> |
@ -0,0 +1,40 @@ |
|||||||
|
// Copyright (c) Microsoft Corporation and Contributors. |
||||||
|
// Licensed under the MIT License. |
||||||
|
|
||||||
|
using Microsoft.UI.Xaml; |
||||||
|
using Microsoft.UI.Xaml.Controls; |
||||||
|
using Microsoft.UI.Xaml.Controls.Primitives; |
||||||
|
using Microsoft.UI.Xaml.Data; |
||||||
|
using Microsoft.UI.Xaml.Input; |
||||||
|
using Microsoft.UI.Xaml.Media; |
||||||
|
using Microsoft.UI.Xaml.Navigation; |
||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.IO; |
||||||
|
using System.Linq; |
||||||
|
using System.Runtime.InteropServices.WindowsRuntime; |
||||||
|
using Windows.Foundation; |
||||||
|
using Windows.Foundation.Collections; |
||||||
|
|
||||||
|
// To learn more about WinUI, the WinUI project structure, |
||||||
|
// and more about our project templates, see: http://aka.ms/winui-project-info. |
||||||
|
|
||||||
|
namespace StabilityMatrix |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// An empty window that can be used on its own or navigated to within a Frame. |
||||||
|
/// </summary> |
||||||
|
public sealed partial class MainWindow : Window |
||||||
|
{ |
||||||
|
public MainWindow() |
||||||
|
{ |
||||||
|
this.InitializeComponent(); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
private void ButtonNavigate_OnClick(object sender, RoutedEventArgs e) |
||||||
|
{ |
||||||
|
ContentFrame.Navigate(typeof(InstallPage)); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,48 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
|
||||||
|
<Package |
||||||
|
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" |
||||||
|
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" |
||||||
|
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" |
||||||
|
IgnorableNamespaces="uap rescap"> |
||||||
|
|
||||||
|
<Identity |
||||||
|
Name="f156679e-9c58-4ae7-9a58-0c380033bf72" |
||||||
|
Publisher="CN=ionite" |
||||||
|
Version="1.0.0.0" /> |
||||||
|
|
||||||
|
<Properties> |
||||||
|
<DisplayName>StabilityMatrix</DisplayName> |
||||||
|
<PublisherDisplayName>ionite</PublisherDisplayName> |
||||||
|
<Logo>Assets\StoreLogo.png</Logo> |
||||||
|
</Properties> |
||||||
|
|
||||||
|
<Dependencies> |
||||||
|
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> |
||||||
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> |
||||||
|
</Dependencies> |
||||||
|
|
||||||
|
<Resources> |
||||||
|
<Resource Language="x-generate"/> |
||||||
|
</Resources> |
||||||
|
|
||||||
|
<Applications> |
||||||
|
<Application Id="App" |
||||||
|
Executable="$targetnametoken$.exe" |
||||||
|
EntryPoint="$targetentrypoint$"> |
||||||
|
<uap:VisualElements |
||||||
|
DisplayName="StabilityMatrix" |
||||||
|
Description="StabilityMatrix" |
||||||
|
BackgroundColor="transparent" |
||||||
|
Square150x150Logo="Assets\Square150x150Logo.png" |
||||||
|
Square44x44Logo="Assets\Square44x44Logo.png"> |
||||||
|
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" /> |
||||||
|
<uap:SplashScreen Image="Assets\SplashScreen.png" /> |
||||||
|
</uap:VisualElements> |
||||||
|
</Application> |
||||||
|
</Applications> |
||||||
|
|
||||||
|
<Capabilities> |
||||||
|
<rescap:Capability Name="runFullTrust" /> |
||||||
|
</Capabilities> |
||||||
|
</Package> |
@ -0,0 +1,20 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<!-- |
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121. |
||||||
|
--> |
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||||
|
<PropertyGroup> |
||||||
|
<PublishProtocol>FileSystem</PublishProtocol> |
||||||
|
<Platform>ARM64</Platform> |
||||||
|
<RuntimeIdentifier>win10-arm64</RuntimeIdentifier> |
||||||
|
<PublishDir>bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\</PublishDir> |
||||||
|
<SelfContained>true</SelfContained> |
||||||
|
<PublishSingleFile>False</PublishSingleFile> |
||||||
|
<PublishReadyToRun Condition="'$(Configuration)' == 'Debug'">False</PublishReadyToRun> |
||||||
|
<PublishReadyToRun Condition="'$(Configuration)' != 'Debug'">True</PublishReadyToRun> |
||||||
|
<!-- |
||||||
|
See https://github.com/microsoft/CsWinRT/issues/373 |
||||||
|
<PublishTrimmed>True</PublishTrimmed> |
||||||
|
--> |
||||||
|
</PropertyGroup> |
||||||
|
</Project> |
@ -0,0 +1,20 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<!-- |
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121. |
||||||
|
--> |
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||||
|
<PropertyGroup> |
||||||
|
<PublishProtocol>FileSystem</PublishProtocol> |
||||||
|
<Platform>x64</Platform> |
||||||
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier> |
||||||
|
<PublishDir>bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\</PublishDir> |
||||||
|
<SelfContained>true</SelfContained> |
||||||
|
<PublishSingleFile>False</PublishSingleFile> |
||||||
|
<PublishReadyToRun Condition="'$(Configuration)' == 'Debug'">False</PublishReadyToRun> |
||||||
|
<PublishReadyToRun Condition="'$(Configuration)' != 'Debug'">True</PublishReadyToRun> |
||||||
|
<!-- |
||||||
|
See https://github.com/microsoft/CsWinRT/issues/373 |
||||||
|
<PublishTrimmed>True</PublishTrimmed> |
||||||
|
--> |
||||||
|
</PropertyGroup> |
||||||
|
</Project> |
@ -0,0 +1,20 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<!-- |
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121. |
||||||
|
--> |
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||||
|
<PropertyGroup> |
||||||
|
<PublishProtocol>FileSystem</PublishProtocol> |
||||||
|
<Platform>x86</Platform> |
||||||
|
<RuntimeIdentifier>win10-x86</RuntimeIdentifier> |
||||||
|
<PublishDir>bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\</PublishDir> |
||||||
|
<SelfContained>true</SelfContained> |
||||||
|
<PublishSingleFile>False</PublishSingleFile> |
||||||
|
<PublishReadyToRun Condition="'$(Configuration)' == 'Debug'">False</PublishReadyToRun> |
||||||
|
<PublishReadyToRun Condition="'$(Configuration)' != 'Debug'">True</PublishReadyToRun> |
||||||
|
<!-- |
||||||
|
See https://github.com/microsoft/CsWinRT/issues/373 |
||||||
|
<PublishTrimmed>True</PublishTrimmed> |
||||||
|
--> |
||||||
|
</PropertyGroup> |
||||||
|
</Project> |
@ -0,0 +1,10 @@ |
|||||||
|
{ |
||||||
|
"profiles": { |
||||||
|
"StabilityMatrix (Package)": { |
||||||
|
"commandName": "MsixPackage" |
||||||
|
}, |
||||||
|
"StabilityMatrix (Unpackaged)": { |
||||||
|
"commandName": "Project" |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,56 @@ |
|||||||
|
<Project Sdk="Microsoft.NET.Sdk"> |
||||||
|
<PropertyGroup> |
||||||
|
<OutputType>WinExe</OutputType> |
||||||
|
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework> |
||||||
|
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion> |
||||||
|
<RootNamespace>StabilityMatrix</RootNamespace> |
||||||
|
<ApplicationManifest>app.manifest</ApplicationManifest> |
||||||
|
<Platforms>x86;x64;ARM64</Platforms> |
||||||
|
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers> |
||||||
|
<PublishProfile>win10-$(Platform).pubxml</PublishProfile> |
||||||
|
<UseWinUI>true</UseWinUI> |
||||||
|
<EnableMsixTooling>true</EnableMsixTooling> |
||||||
|
</PropertyGroup> |
||||||
|
<ItemGroup> |
||||||
|
<None Remove="InstallPage.xaml" /> |
||||||
|
</ItemGroup> |
||||||
|
|
||||||
|
<ItemGroup> |
||||||
|
<Content Include="Assets\SplashScreen.scale-200.png" /> |
||||||
|
<Content Include="Assets\LockScreenLogo.scale-200.png" /> |
||||||
|
<Content Include="Assets\Square150x150Logo.scale-200.png" /> |
||||||
|
<Content Include="Assets\Square44x44Logo.scale-200.png" /> |
||||||
|
<Content Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png" /> |
||||||
|
<Content Include="Assets\StoreLogo.png" /> |
||||||
|
<Content Include="Assets\Wide310x150Logo.scale-200.png" /> |
||||||
|
</ItemGroup> |
||||||
|
|
||||||
|
<ItemGroup> |
||||||
|
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.2.221109.1" /> |
||||||
|
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.755" /> |
||||||
|
<Manifest Include="$(ApplicationManifest)" /> |
||||||
|
</ItemGroup> |
||||||
|
|
||||||
|
<!-- |
||||||
|
Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging |
||||||
|
Tools extension to be activated for this project even if the Windows App SDK Nuget |
||||||
|
package has not yet been restored. |
||||||
|
--> |
||||||
|
<ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'"> |
||||||
|
<ProjectCapability Include="Msix" /> |
||||||
|
</ItemGroup> |
||||||
|
<ItemGroup> |
||||||
|
<Page Update="InstallPage.xaml"> |
||||||
|
<Generator>MSBuild:Compile</Generator> |
||||||
|
</Page> |
||||||
|
</ItemGroup> |
||||||
|
|
||||||
|
<!-- |
||||||
|
Defining the "HasPackageAndPublishMenuAddedByProject" property here allows the Solution |
||||||
|
Explorer "Package and Publish" context menu entry to be enabled for this project even if |
||||||
|
the Windows App SDK Nuget package has not yet been restored. |
||||||
|
--> |
||||||
|
<PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'"> |
||||||
|
<HasPackageAndPublishMenu>true</HasPackageAndPublishMenu> |
||||||
|
</PropertyGroup> |
||||||
|
</Project> |
@ -0,0 +1,18 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||||
|
<PropertyGroup /> |
||||||
|
<ItemGroup> |
||||||
|
<None Update="App.xaml"> |
||||||
|
<SubType>Designer</SubType> |
||||||
|
</None> |
||||||
|
<Page Update="InstallPage.xaml"> |
||||||
|
<SubType>Designer</SubType> |
||||||
|
</Page> |
||||||
|
<None Update="MainWindow.xaml"> |
||||||
|
<SubType>Designer</SubType> |
||||||
|
</None> |
||||||
|
<None Update="Package.appxmanifest"> |
||||||
|
<SubType>Designer</SubType> |
||||||
|
</None> |
||||||
|
</ItemGroup> |
||||||
|
</Project> |
@ -0,0 +1,25 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1"> |
||||||
|
<assemblyIdentity version="1.0.0.0" name="StabilityMatrix.app"/> |
||||||
|
|
||||||
|
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> |
||||||
|
<application> |
||||||
|
<!--The ID below informs the system that this application is compatible with OS features first introduced in Windows 8. |
||||||
|
For more info see https://docs.microsoft.com/windows/win32/sysinfo/targeting-your-application-at-windows-8-1 |
||||||
|
|
||||||
|
It is also necessary to support features in unpackaged applications, for example the custom titlebar implementation.--> |
||||||
|
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" /> |
||||||
|
</application> |
||||||
|
</compatibility> |
||||||
|
|
||||||
|
<application xmlns="urn:schemas-microsoft-com:asm.v3"> |
||||||
|
<windowsSettings> |
||||||
|
<!-- The combination of below two tags have the following effect: |
||||||
|
1) Per-Monitor for >= Windows 10 Anniversary Update |
||||||
|
2) System < Windows 10 Anniversary Update |
||||||
|
--> |
||||||
|
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware> |
||||||
|
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2, PerMonitor</dpiAwareness> |
||||||
|
</windowsSettings> |
||||||
|
</application> |
||||||
|
</assembly> |
@ -0,0 +1,39 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap rescap build" xmlns:build="http://schemas.microsoft.com/developer/appx/2015/build"> |
||||||
|
<!-- |
||||||
|
THIS PACKAGE MANIFEST FILE IS GENERATED BY THE BUILD PROCESS. |
||||||
|
|
||||||
|
Changes to this file will be lost when it is regenerated. To correct errors in this file, edit the source .appxmanifest file. |
||||||
|
|
||||||
|
For more information on package manifest files, see http://go.microsoft.com/fwlink/?LinkID=241727 |
||||||
|
--> |
||||||
|
<Identity Name="f156679e-9c58-4ae7-9a58-0c380033bf72" Publisher="CN=ionite" Version="1.0.0.0" ProcessorArchitecture="x86" /> |
||||||
|
<Properties> |
||||||
|
<DisplayName>StabilityMatrix</DisplayName> |
||||||
|
<PublisherDisplayName>ionite</PublisherDisplayName> |
||||||
|
<Logo>Assets\StoreLogo.png</Logo> |
||||||
|
</Properties> |
||||||
|
<Dependencies> |
||||||
|
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> |
||||||
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> |
||||||
|
<PackageDependency Name="Microsoft.WindowsAppRuntime.1.2" MinVersion="2000.677.1750.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" /> |
||||||
|
</Dependencies> |
||||||
|
<Resources> |
||||||
|
<Resource Language="EN-US" /> |
||||||
|
</Resources> |
||||||
|
<Applications> |
||||||
|
<Application Id="App" Executable="StabilityMatrix.exe" EntryPoint="Windows.FullTrustApplication"> |
||||||
|
<uap:VisualElements DisplayName="StabilityMatrix" Description="StabilityMatrix" BackgroundColor="transparent" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png"> |
||||||
|
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" /> |
||||||
|
<uap:SplashScreen Image="Assets\SplashScreen.png" /> |
||||||
|
</uap:VisualElements> |
||||||
|
</Application> |
||||||
|
</Applications> |
||||||
|
<Capabilities> |
||||||
|
<rescap:Capability Name="runFullTrust" /> |
||||||
|
</Capabilities> |
||||||
|
<build:Metadata> |
||||||
|
<build:Item Name="Microsoft.UI.Xaml.Markup.Compiler.dll" Version="1.0.0.0" /> |
||||||
|
<build:Item Name="makepri.exe" Version="10.0.22621.755 (WinBuild.160101.0800)" /> |
||||||
|
</build:Metadata> |
||||||
|
</Package> |
After Width: | Height: | Size: 432 B |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 637 B |
After Width: | Height: | Size: 283 B |
After Width: | Height: | Size: 456 B |
After Width: | Height: | Size: 2.0 KiB |
@ -0,0 +1,14 @@ |
|||||||
|
{ |
||||||
|
"runtimeOptions": { |
||||||
|
"tfm": "net6.0", |
||||||
|
"includedFrameworks": [ |
||||||
|
{ |
||||||
|
"name": "Microsoft.NETCore.App", |
||||||
|
"version": "6.0.16" |
||||||
|
} |
||||||
|
], |
||||||
|
"configProperties": { |
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false |
||||||
|
} |
||||||
|
} |
||||||
|
} |