-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlassNotes.csproj
More file actions
25 lines (22 loc) · 908 Bytes
/
Copy pathGlassNotes.csproj
File metadata and controls
25 lines (22 loc) · 908 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<RootNamespace>GlassNotes</RootNamespace>
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>AnyCPU;ARM64;x64</Platforms>
</PropertyGroup>
<ItemGroup>
<Resource Include="Assets\icon.ico" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="WpfAnalyzers" Version="4.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>