Skip to content

Commit

Permalink
Remove unnecessary files
Browse files Browse the repository at this point in the history
  • Loading branch information
errortek committed Oct 7, 2024
1 parent 3a4c460 commit d53867c
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 262 deletions.
29 changes: 0 additions & 29 deletions UTE UWP+/Activation/SchemeActivationConfig.cs

This file was deleted.

61 changes: 0 additions & 61 deletions UTE UWP+/Activation/SchemeActivationData.cs

This file was deleted.

33 changes: 0 additions & 33 deletions UTE UWP+/Activation/SchemeActivationHandler.cs

This file was deleted.

45 changes: 0 additions & 45 deletions UTE UWP+/Activation/WebToAppLinkActivationHandler.cs

This file was deleted.

8 changes: 4 additions & 4 deletions UTE UWP+/Services/ActivationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private static void OnKeyboardAcceleratorInvoked(KeyboardAccelerator sender, Key
private async Task InitializeAsync()
{
await ThemeSelectorService.InitializeAsync().ConfigureAwait(false);
await WindowManagerService.Current.InitializeAsync();
//await WindowManagerService.Current.InitializeAsync();
}

private async Task HandleActivationAsync(object activationArgs)
Expand All @@ -119,7 +119,7 @@ private async Task HandleActivationAsync(object activationArgs)
private async Task StartupAsync()
{
// TODO: This is a sample to demonstrate how to add a UserActivity. Please adapt and move this method call to where you consider convenient in your app.
await UserActivityService.AddSampleUserActivity();
//await UserActivityService.AddSampleUserActivity();
await ThemeSelectorService.SetRequestedThemeAsync();
await FirstRunDisplayService.ShowIfAppropriateAsync();
await WhatsNewDisplayService.ShowIfAppropriateAsync();
Expand All @@ -128,8 +128,8 @@ private async Task StartupAsync()
private IEnumerable<ActivationHandler> GetActivationHandlers()
{
yield return Singleton<ToastNotificationsService>.Instance;
yield return Singleton<WebToAppLinkActivationHandler>.Instance;
yield return Singleton<SchemeActivationHandler>.Instance;
//yield return Singleton<WebToAppLinkActivationHandler>.Instance;
//yield return Singleton<SchemeActivationHandler>.Instance;
yield return Singleton<CommandLineActivationHandler>.Instance;
}

Expand Down
85 changes: 0 additions & 85 deletions UTE UWP+/Services/WindowManagerService.cs

This file was deleted.

5 changes: 0 additions & 5 deletions UTE UWP+/UTE UWP+.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,6 @@
<ItemGroup>
<Compile Include="Activation\ActivationHandler.cs" />
<Compile Include="Activation\CommandLineActivationHandler.cs" />
<Compile Include="Activation\SchemeActivationConfig.cs" />
<Compile Include="Activation\SchemeActivationData.cs" />
<Compile Include="Activation\SchemeActivationHandler.cs" />
<Compile Include="Activation\WebToAppLinkActivationHandler.cs" />
<Compile Include="Helpers\BuildInfo.cs" />
<Compile Include="Helpers\EncryptorsDecryptors.cs" />
<Compile Include="Helpers\EnumToBooleanConverter.cs" />
Expand All @@ -209,7 +205,6 @@
<Compile Include="Services\ToastNotificationsService.cs" />
<Compile Include="Services\ToastNotificationsService.Samples.cs" />
<Compile Include="Services\WhatsNewDisplayService.cs" />
<Compile Include="Services\WindowManagerService.cs" />
<Compile Include="Views\AboutUTE.xaml.cs">
<DependentUpon>AboutUTE.xaml</DependentUpon>
</Compile>
Expand Down

0 comments on commit d53867c

Please sign in to comment.