-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNoteIt.csproj
More file actions
49 lines (45 loc) · 2.05 KB
/
Copy pathNoteIt.csproj
File metadata and controls
49 lines (45 loc) · 2.05 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows10.0.19041.0</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<RootNamespace>NoteIt</RootNamespace>
<!-- Controls the actual output filename (Note-It!.exe) independently of
RootNamespace above: C# identifiers can't contain "-" or "!", so
the internal namespace stays a plain NoteIt while the shipped binary
carries the real product name. -->
<AssemblyName>Note-It!</AssemblyName>
<AssemblyTitle>Note-It!</AssemblyTitle>
<Product>Note-It!</Product>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>Assets\app-icon.ico</ApplicationIcon>
<Platforms>x86;x64;ARM64</Platforms>
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
<UseWinUI>true</UseWinUI>
<EnableMsixTooling>true</EnableMsixTooling>
<!-- Unpackaged (no MSIX) so it can run as a plain background tray app -->
<WindowsPackageType>None</WindowsPackageType>
<SelfContained>true</SelfContained>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.WinUI.Controls.SettingsControls" Version="8.2.251219" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="2.2.0" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.4654" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\app-icon.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\tray-icon.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\tray-icon-white.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\tray-icon-black.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>