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

Commit 6bbdfcb

Browse files
committed
Added App.ShareTarget
1 parent c334073 commit 6bbdfcb

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

src/Quarrel/App.ShareTarget.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Quarrel © 2022
2+
3+
using Windows.ApplicationModel.Activation;
4+
5+
namespace Quarrel
6+
{
7+
partial class App
8+
{
9+
protected override void OnShareTargetActivated(ShareTargetActivatedEventArgs args)
10+
{
11+
base.OnShareTargetActivated(args);
12+
}
13+
}
14+
}

src/Quarrel/Quarrel.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
</PropertyGroup>
8585
<ItemGroup>
8686
<Compile Include="App.AppService.cs" />
87+
<Compile Include="App.ShareTarget.cs" />
8788
<Compile Include="App.xaml.cs">
8889
<DependentUpon>App.xaml</DependentUpon>
8990
</Compile>

0 commit comments

Comments
 (0)