Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Commit 688bd05

Browse files
committed
Restored distributions and added shuffles from ArrayV
1 parent f81430f commit 688bd05

File tree

182 files changed

+4692
-12036
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+4692
-12036
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.vs/Algo/v16/.suo

-485 KB
Binary file not shown.

.vs/AlgoUWP/project-colors.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"Version": 1,
3+
"ProjectMap": {
4+
"3442adca-dc60-4d7b-aeba-8fa6f881de44": {
5+
"ProjectGuid": "3442adca-dc60-4d7b-aeba-8fa6f881de44",
6+
"DisplayName": "AlgoUWP",
7+
"ColorIndex": 0
8+
},
9+
"a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": {
10+
"ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3",
11+
"DisplayName": "Miscellaneous Files",
12+
"ColorIndex": -1
13+
}
14+
},
15+
"NextColorIndex": 1
16+
}

.vs/AlgoUWP/v17/.suo

514 KB
Binary file not shown.

Algo.sln

Lines changed: 0 additions & 51 deletions
This file was deleted.

Algo.csproj renamed to AlgoUWP.csproj

Lines changed: 8 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
7-
<ProjectGuid>{12D31CC0-9C5B-4E6B-8619-C51089AA8704}</ProjectGuid>
7+
<ProjectGuid>{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}</ProjectGuid>
88
<OutputType>AppContainerExe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>Algo</RootNamespace>
11-
<AssemblyName>Algo</AssemblyName>
10+
<RootNamespace>AlgoUWP</RootNamespace>
11+
<AssemblyName>AlgoUWP</AssemblyName>
1212
<DefaultLanguage>en-US</DefaultLanguage>
1313
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
1414
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.19041.0</TargetPlatformVersion>
@@ -19,13 +19,16 @@
1919
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
2020
<AppxPackageSigningEnabled>false</AppxPackageSigningEnabled>
2121
</PropertyGroup>
22+
<PropertyGroup>
23+
<LangVersion>latest</LangVersion>
24+
</PropertyGroup>
2225
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
2326
<DebugSymbols>true</DebugSymbols>
2427
<OutputPath>bin\x86\Debug\</OutputPath>
2528
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
2629
<NoWarn>;2008</NoWarn>
2730
<DebugType>full</DebugType>
28-
<PlatformTarget>x86</PlatformTarget>
31+
<PlatformTarget>x64</PlatformTarget>
2932
<UseVSHostingProcess>false</UseVSHostingProcess>
3033
<ErrorReport>prompt</ErrorReport>
3134
<Prefer32Bit>true</Prefer32Bit>
@@ -105,7 +108,6 @@
105108
<UseVSHostingProcess>false</UseVSHostingProcess>
106109
<ErrorReport>prompt</ErrorReport>
107110
<Prefer32Bit>true</Prefer32Bit>
108-
<Optimize>true</Optimize>
109111
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
110112
</PropertyGroup>
111113
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
@@ -140,7 +142,6 @@
140142
</AppxManifest>
141143
</ItemGroup>
142144
<ItemGroup>
143-
<Content Include="placeholder dumps.txt" />
144145
<Content Include="Properties\Default.rd.xml" />
145146
<Content Include="Assets\LockScreenLogo.scale-200.png" />
146147
<Content Include="Assets\SplashScreen.scale-200.png" />
@@ -162,16 +163,7 @@
162163
</ItemGroup>
163164
<ItemGroup>
164165
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
165-
<Version>6.2.13</Version>
166-
</PackageReference>
167-
<PackageReference Include="Microsoft.Toolkit.Uwp.UI">
168-
<Version>7.1.1</Version>
169-
</PackageReference>
170-
<PackageReference Include="Microsoft.Toolkit.Uwp.UI.Animations">
171-
<Version>7.1.1</Version>
172-
</PackageReference>
173-
<PackageReference Include="Microsoft.Toolkit.Uwp.UI.Controls">
174-
<Version>7.1.1</Version>
166+
<Version>6.2.12</Version>
175167
</PackageReference>
176168
<PackageReference Include="Microsoft.UI.Xaml">
177169
<Version>2.7.0</Version>
@@ -188,7 +180,4 @@
188180
<Target Name="AfterBuild">
189181
</Target>
190182
-->
191-
<PropertyGroup>
192-
<LangVersion>latest</LangVersion>
193-
</PropertyGroup>
194183
</Project>

AlgoUWP.csproj.user

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<ProjectView>ShowAllFiles</ProjectView>
5+
</PropertyGroup>
6+
</Project>

AlgoUWP.sln

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AlgoUWP", "AlgoUWP.csproj", "{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|ARM = Debug|ARM
11+
Debug|ARM64 = Debug|ARM64
12+
Debug|x64 = Debug|x64
13+
Debug|x86 = Debug|x86
14+
Release|ARM = Release|ARM
15+
Release|ARM64 = Release|ARM64
16+
Release|x64 = Release|x64
17+
Release|x86 = Release|x86
18+
EndGlobalSection
19+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
20+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Debug|ARM.ActiveCfg = Debug|ARM
21+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Debug|ARM.Build.0 = Debug|ARM
22+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Debug|ARM.Deploy.0 = Debug|ARM
23+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Debug|ARM64.ActiveCfg = Debug|ARM64
24+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Debug|ARM64.Build.0 = Debug|ARM64
25+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Debug|ARM64.Deploy.0 = Debug|ARM64
26+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Debug|x64.ActiveCfg = Debug|x64
27+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Debug|x64.Build.0 = Debug|x64
28+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Debug|x64.Deploy.0 = Debug|x64
29+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Debug|x86.ActiveCfg = Debug|x86
30+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Debug|x86.Build.0 = Debug|x86
31+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Debug|x86.Deploy.0 = Debug|x86
32+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Release|ARM.ActiveCfg = Release|ARM
33+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Release|ARM.Build.0 = Release|ARM
34+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Release|ARM.Deploy.0 = Release|ARM
35+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Release|ARM64.ActiveCfg = Release|ARM64
36+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Release|ARM64.Build.0 = Release|ARM64
37+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Release|ARM64.Deploy.0 = Release|ARM64
38+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Release|x64.ActiveCfg = Release|x64
39+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Release|x64.Build.0 = Release|x64
40+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Release|x64.Deploy.0 = Release|x64
41+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Release|x86.ActiveCfg = Release|x86
42+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Release|x86.Build.0 = Release|x86
43+
{3442ADCA-DC60-4D7B-AEBA-8FA6F881DE44}.Release|x86.Deploy.0 = Release|x86
44+
EndGlobalSection
45+
GlobalSection(SolutionProperties) = preSolution
46+
HideSolutionNode = FALSE
47+
EndGlobalSection
48+
GlobalSection(ExtensibilityGlobals) = postSolution
49+
SolutionGuid = {89EFC187-DED4-46A2-AE12-3920102FCF81}
50+
EndGlobalSection
51+
EndGlobal

App.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Application
2-
x:Class="Algo.App"
2+
x:Class="AlgoUWP.App"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5-
xmlns:local="using:Algo">
6-
<Application.Resources>
5+
xmlns:local="using:AlgoUWP">
6+
<Application.Resources>
77
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
88
</Application.Resources>
99
</Application>

App.xaml.cs

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@
55
using Windows.UI.Xaml.Controls;
66
using Windows.UI.Xaml.Navigation;
77

8-
namespace Algo
8+
namespace AlgoUWP
99
{
1010
/// <summary>
1111
/// Provides application-specific behavior to supplement the default Application class.
1212
/// </summary>
13-
public sealed partial class App : Application
13+
sealed partial class App : Application
1414
{
1515
/// <summary>
1616
/// Initializes the singleton application object. This is the first line of authored code
1717
/// executed, and as such is the logical equivalent of main() or WinMain().
1818
/// </summary>
1919
public App()
2020
{
21-
InitializeComponent();
22-
Suspending += OnSuspending;
21+
this.InitializeComponent();
22+
this.Suspending += OnSuspending;
2323
}
2424

2525
/// <summary>
@@ -29,11 +29,9 @@ public App()
2929
/// <param name="e">Details about the launch request and process.</param>
3030
protected override void OnLaunched(LaunchActivatedEventArgs e)
3131
{
32-
Frame rootFrame = Window.Current.Content as Frame;
33-
3432
// Do not repeat app initialization when the Window already has content,
3533
// just ensure that the window is active
36-
if (rootFrame == null)
34+
if (Window.Current.Content is not Frame rootFrame)
3735
{
3836
// Create a Frame to act as the navigation context and navigate to the first page
3937
rootFrame = new Frame();
@@ -68,7 +66,7 @@ protected override void OnLaunched(LaunchActivatedEventArgs e)
6866
/// </summary>
6967
/// <param name="sender">The Frame which failed navigation</param>
7068
/// <param name="e">Details about the navigation failure</param>
71-
private void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
69+
void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
7270
{
7371
throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
7472
}
@@ -82,7 +80,7 @@ private void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
8280
/// <param name="e">Details about the suspend request.</param>
8381
private void OnSuspending(object sender, SuspendingEventArgs e)
8482
{
85-
SuspendingDeferral deferral = e.SuspendingOperation.GetDeferral();
83+
var deferral = e.SuspendingOperation.GetDeferral();
8684
//TODO: Save application state and stop any background activity
8785
deferral.Complete();
8886
}

0 commit comments

Comments
 (0)