-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocalDrop.csproj
More file actions
152 lines (147 loc) · 7.22 KB
/
LocalDrop.csproj
File metadata and controls
152 lines (147 loc) · 7.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<RootNamespace>LocalDrop</RootNamespace>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>x86;x64;ARM64</Platforms>
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
<PublishProfile>win-$(Platform).pubxml</PublishProfile>
<UseWinUI>true</UseWinUI>
<EnableMsixTooling>true</EnableMsixTooling>
<Nullable>enable</Nullable>
<WindowsPackageType>None</WindowsPackageType>
</PropertyGroup>
<ItemGroup>
<Content Remove="Assets\avatar.jpg" />
<Content Remove="Assets\LargeTile.scale-100.png" />
<Content Remove="Assets\LargeTile.scale-125.png" />
<Content Remove="Assets\LargeTile.scale-150.png" />
<Content Remove="Assets\LargeTile.scale-200.png" />
<Content Remove="Assets\LargeTile.scale-400.png" />
<Content Remove="Assets\LocalDrop.ico" />
<Content Remove="Assets\SmallTile.scale-100.png" />
<Content Remove="Assets\SmallTile.scale-125.png" />
<Content Remove="Assets\SmallTile.scale-150.png" />
<Content Remove="Assets\SmallTile.scale-200.png" />
<Content Remove="Assets\SmallTile.scale-400.png" />
<Content Remove="Assets\SplashScreen.scale-100.png" />
<Content Remove="Assets\SplashScreen.scale-125.png" />
<Content Remove="Assets\SplashScreen.scale-150.png" />
<Content Remove="Assets\SplashScreen.scale-200.png" />
<Content Remove="Assets\SplashScreen.scale-400.png" />
<Content Remove="Assets\Square150x150Logo.scale-100.png" />
<Content Remove="Assets\Square150x150Logo.scale-125.png" />
<Content Remove="Assets\Square150x150Logo.scale-150.png" />
<Content Remove="Assets\Square150x150Logo.scale-200.png" />
<Content Remove="Assets\Square150x150Logo.scale-400.png" />
<Content Remove="Assets\Square44x44Logo.altform-lightunplated_targetsize-16.png" />
<Content Remove="Assets\Square44x44Logo.altform-lightunplated_targetsize-24.png" />
<Content Remove="Assets\Square44x44Logo.altform-lightunplated_targetsize-256.png" />
<Content Remove="Assets\Square44x44Logo.altform-lightunplated_targetsize-32.png" />
<Content Remove="Assets\Square44x44Logo.altform-lightunplated_targetsize-48.png" />
<Content Remove="Assets\Square44x44Logo.altform-unplated_targetsize-16.png" />
<Content Remove="Assets\Square44x44Logo.altform-unplated_targetsize-24.png" />
<Content Remove="Assets\Square44x44Logo.altform-unplated_targetsize-256.png" />
<Content Remove="Assets\Square44x44Logo.altform-unplated_targetsize-32.png" />
<Content Remove="Assets\Square44x44Logo.altform-unplated_targetsize-48.png" />
<Content Remove="Assets\Square44x44Logo.scale-100.png" />
<Content Remove="Assets\Square44x44Logo.scale-125.png" />
<Content Remove="Assets\Square44x44Logo.scale-150.png" />
<Content Remove="Assets\Square44x44Logo.scale-200.png" />
<Content Remove="Assets\Square44x44Logo.scale-400.png" />
<Content Remove="Assets\Square44x44Logo.targetsize-16.png" />
<Content Remove="Assets\Square44x44Logo.targetsize-24.png" />
<Content Remove="Assets\Square44x44Logo.targetsize-256.png" />
<Content Remove="Assets\Square44x44Logo.targetsize-32.png" />
<Content Remove="Assets\Square44x44Logo.targetsize-48.png" />
<Content Remove="Assets\StoreLogo.scale-100.png" />
<Content Remove="Assets\StoreLogo.scale-125.png" />
<Content Remove="Assets\StoreLogo.scale-150.png" />
<Content Remove="Assets\StoreLogo.scale-200.png" />
<Content Remove="Assets\StoreLogo.scale-400.png" />
<Content Remove="Assets\Wide310x150Logo.scale-100.png" />
<Content Remove="Assets\Wide310x150Logo.scale-125.png" />
<Content Remove="Assets\Wide310x150Logo.scale-150.png" />
<Content Remove="Assets\Wide310x150Logo.scale-200.png" />
<Content Remove="Assets\Wide310x150Logo.scale-400.png" />
</ItemGroup>
<ItemGroup>
<None Remove="NavItemSend.xaml" />
<None Remove="NavItemSetting.xaml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Assets\avatar.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Assets\LocalDrop.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<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>
<PackageReference Include="CommunityToolkit.WinUI.Controls.Primitives" Version="8.1.240916" />
<PackageReference Include="H.NotifyIcon.WinUI" Version="2.3.0" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1742" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.7.250310001" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Management" Version="9.0.4" />
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
</ItemGroup>
<ItemGroup>
<Content Update="Assets\LocalDrop.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Update="LocalDrop.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Page Update="NavItemSetting.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<Page Update="NavItemReceiver.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<Page Update="NavItemSend.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>
<!-- Publish Properties -->
<PropertyGroup>
<PublishReadyToRun Condition="'$(Configuration)' == 'Debug'">False</PublishReadyToRun>
<PublishReadyToRun Condition="'$(Configuration)' != 'Debug'">True</PublishReadyToRun>
<PublishTrimmed Condition="'$(Configuration)' == 'Debug'">False</PublishTrimmed>
<PublishTrimmed Condition="'$(Configuration)' != 'Debug'">True</PublishTrimmed>
<ApplicationIcon>Assets\LocalDrop.ico</ApplicationIcon>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<UseWindowsForms>False</UseWindowsForms>
<DefaultLanguage>zh-cn</DefaultLanguage>
</PropertyGroup>
</Project>