-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathHTMLToQPDF.Example.csproj
More file actions
49 lines (42 loc) · 1.67 KB
/
HTMLToQPDF.Example.csproj
File metadata and controls
49 lines (42 loc) · 1.67 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>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ApplicationIcon>Assets\web-programming.ico</ApplicationIcon>
<PublishSingleFile>true</PublishSingleFile>
<IncludePackageReferencesDuringMarkupCompilation>true</IncludePackageReferencesDuringMarkupCompilation>
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Content Include="Assets\web-programming.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DevExpress.Mvvm.CodeGenerators" Version="22.1.1" />
<PackageReference Include="DevExpressMvvm" Version="22.1.3" />
<PackageReference Include="Fody" Version="6.6.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="HandyControls" Version="3.4.2" />
<PackageReference Include="PropertyChanged.Fody" Version="4.0.4" />
<PackageReference Include="QuestPDF" Version="2025.7.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HTMLToQPDF\HTMLToQPDF.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>