-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorkNotes.csproj
More file actions
28 lines (24 loc) · 910 Bytes
/
WorkNotes.csproj
File metadata and controls
28 lines (24 loc) · 910 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
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Nullable>enable</Nullable>
<StartupObject>WorkNotes.App</StartupObject>
<Version>1.4.0</Version>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<FileVersion>1.4.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AvalonEdit" Version="6.3.0.90" />
<PackageReference Include="WeCantSpell.Hunspell" Version="7.0.1" />
</ItemGroup>
<ItemGroup>
<!-- Remove from default None glob, re-include as Content so dotnet publish copies them -->
<None Remove="Dictionaries\*.*" />
<Content Include="Dictionaries\*.*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
</ItemGroup>
</Project>