-
Notifications
You must be signed in to change notification settings - Fork 0
/
KalevaAalto.Wpf.TxtToEpub.csproj
48 lines (42 loc) · 1.56 KB
/
KalevaAalto.Wpf.TxtToEpub.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ApplicationIcon>TextTemplate.ico</ApplicationIcon>
<Platforms>AnyCPU;x64</Platforms>
<AssemblyName>KalevaAalto.Wpf.TxtToEpub</AssemblyName>
<RootNamespace>KalevaAalto.Wpf.TxtToEpub</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Content Include="TextTemplate.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.7.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SixLabors.ImageSharp" Version="3.0.2" />
<PackageReference Include="SkiaSharp" Version="2.88.6" />
<PackageReference Include="VersOne.Epub" Version="3.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\KalevaAalto.Csharp\KalevaAalto.Csharp.csproj" />
<ProjectReference Include="..\KalevaAalto.Wpf.Base\KalevaAalto.Wpf.Base.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="KalevaAalto" />
<Using Include="KalevaAalto.Main">
<Static>True</Static>
</Using>
<Using Include="KalevaAalto.Wpf.Base" />
<Using Include="KalevaAalto.Wpf.Base.Main">
<Static>True</Static>
</Using>
<Using Include="KalevaAalto.Wpf.TxtToEpub.Static">
<Static>True</Static>
</Using>
</ItemGroup>
</Project>