-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
64 lines (58 loc) · 2.84 KB
/
Copy pathDirectory.Build.props
File metadata and controls
64 lines (58 loc) · 2.84 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
<Project>
<PropertyGroup>
<Version>1.40.1.0</Version>
<AssemblyVersion>1.40.1.0</AssemblyVersion>
<FileVersion>1.40.1.0</FileVersion>
<InformationalVersion>1.40.1.0</InformationalVersion>
<Authors>Hirogen, zarunbal, RandallFlagg, TheNicker</Authors>
<Company>LogExperts</Company>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<AssemblyOriginatorKeyFile>..\Solution Items\Key.snk</AssemblyOriginatorKeyFile>
<PublishAot>false</PublishAot>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LogExpert</RootNamespace>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<!--<OutputPath>$(SolutionDir)..\bin\$(Configuration)</OutputPath>--><!--TODO: Normalize this across solution-->
<SignAssembly>true</SignAssembly>
<PackageProjectUrl>https://github.com/LogExperts/LogExpert</PackageProjectUrl>
<RepositoryUrl>https://github.com/LogExperts/LogExpert</RepositoryUrl>
<PackageTags>LogExpert, Columnizer, Logging, Windows, Winforms</PackageTags>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>https://github.com/LogExperts/LogExpert/releases/tag/v.1.40.1</PackageReleaseNotes>
<PackageVersion>1.40.1.0</PackageVersion>
<Optimize Condition="'$(Configuration)' == 'Release'">true</Optimize>
<Product>LogExpert</Product>
<Copyright>Copyright © LogExpert 2025</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IsTestProject>false</IsTestProject>
<UseWindowsForms>false</UseWindowsForms>
<ImportWindowsDesktopTargets>false</ImportWindowsDesktopTargets>
<EnableWindowsTargeting>false</EnableWindowsTargeting>
<AssemblyTitle>LogExpert</AssemblyTitle>
<Description>
LogExpert is a Windows tail program (a GUI replacement for the Unix tail command).
Summary of (most) features:
* Tail mode
* MDI-Interface with Tabs
* Search function (including RegEx)
* Bookmarks
* A very flexible filter view and possibility to filter to tab
* Highlighting lines via search criteria
* Triggers (e.g. create Bookmark or execute a plugin) via search criteria
* Columnizers: Plugins which split log lines into columns
* Unicode support
* log4j XML file support
* 3rd party plugin support
* Plugin API for more log file data sources
</Description>
</PropertyGroup>
<ItemGroup Label="Links">
<Compile Include="..\Solution Items\AssemblyInfo.cs" Link="Properties\SharedAssemblyInfo.cs" />
<None Include="..\Solution Items\Key.snk" Link="Key.snk" />
<None Include="..\..\README.md" Link="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>