-
Notifications
You must be signed in to change notification settings - Fork 545
Expand file tree
/
Copy pathHtmlRenderer.Demo.WPF.csproj
More file actions
31 lines (31 loc) · 1.1 KB
/
HtmlRenderer.Demo.WPF.csproj
File metadata and controls
31 lines (31 loc) · 1.1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<RootNamespace>TheArtOfDev.HtmlRenderer.Demo.WPF</RootNamespace>
<AssemblyName>HtmlRendererWpfDemo</AssemblyName>
<UseWPF>true</UseWPF>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>html.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<AppDesigner Include="Properties\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\HtmlRenderer.WPF\HtmlRenderer.WPF.csproj" />
<ProjectReference Include="..\..\HtmlRenderer\HtmlRenderer.csproj" />
<ProjectReference Include="..\Common\HtmlRenderer.Demo.Common.csproj" />
</ItemGroup>
<ItemGroup>
<Resource Include="html.ico" />
</ItemGroup>
<ItemGroup>
<Resource Include="fonts\CustomFont.ttf" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Extended.Wpf.Toolkit" Version="5.0.0" />
</ItemGroup>
</Project>