-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWisdomLight.csproj
More file actions
80 lines (70 loc) · 2.53 KB
/
WisdomLight.csproj
File metadata and controls
80 lines (70 loc) · 2.53 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<RootNamespace>WisdomLight</RootNamespace>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>Resources/Images/Icons/favicon.ico</ApplicationIcon>
<Company>EX - Digits</Company>
<Authors>Tatarintsev Aleksandr</Authors>
<Version>0.9.1</Version>
<AssemblyVersion>0.9.0.1</AssemblyVersion>
<FileVersion>0.9.0.1</FileVersion>
<PackageReleaseNotes># Wisdom-Light
* Released January 26, 2021 *
Features
- Optimization across the app
- Re-design simplicity
- Field type selection
- Advanced mode
## Description
Create documents with same data much faster.</PackageReleaseNotes>
<PackageProjectUrl></PackageProjectUrl>
<Copyright>All Rights Reserved</Copyright>
<Description>Fill documents with same data much faster.</Description>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageIcon>favicon.ico</PackageIcon>
<PackageIconUrl />
<RepositoryUrl>https://github.com/Alexxx180/Wisdom-Light</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\Images\Icons\favicon.ico" />
<None Remove="Resources\Images\Icons\Wisdom3.ico" />
<None Include="LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="Resources\Images\Icons\favicon.ico">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" Version="2.16.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Open-XML-SDK" Version="2.9.1" />
<PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Images\Icons\favicon.ico" />
<Resource Include="Resources\Images\Icons\Wisdom3.ico" />
</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>
<ItemGroup>
<Folder Include="Resources\Runtime\" />
</ItemGroup>
</Project>