-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogFileCleaner.csproj
More file actions
37 lines (34 loc) · 1.44 KB
/
LogFileCleaner.csproj
File metadata and controls
37 lines (34 loc) · 1.44 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<AssemblyName>LogFileCleaner</AssemblyName>
<StartupObject>LogFileCleaner.Program</StartupObject>
<RunPostBuildEvent>Always</RunPostBuildEvent>
<ApplicationIcon>logo.ico</ApplicationIcon>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Ekron Digital Solutions</Authors>
<Description>A small utility used to clean those pesky files other applications leave to grow to infinity.</Description>
<Copyright>Ekron Digital Solutions pty (Ltd), 2022</Copyright>
<PackageLicenseExpression />
<PackageLicenseFile>license.txt</PackageLicenseFile>
<PackageProjectUrl>https://www.ekronds.co.za</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageIconUrl />
<RepositoryUrl>https://github.com/c0der4t/FileJanitor</RepositoryUrl>
<RepositoryType>Public</RepositoryType>
<PackageReleaseNotes>A small utility used to clean those pesky files other applications leave to grow to infinity.</PackageReleaseNotes>
<SignAssembly>false</SignAssembly>
<DelaySign>false</DelaySign>
</PropertyGroup>
<ItemGroup>
<None Include="license.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="rsc\logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>