-
Notifications
You must be signed in to change notification settings - Fork 0
/
CoderPro.Apps.SecureRecycle.Console.csproj
56 lines (50 loc) · 1.93 KB
/
CoderPro.Apps.SecureRecycle.Console.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
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>false</PublishAot>
<InvariantGlobalization>true</InvariantGlobalization>
<EnableComHosting>true</EnableComHosting>
<ApplicationIcon>coderPro.ico</ApplicationIcon>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<SignAssembly>False</SignAssembly>
<Title>Secure Recycle</Title>
<Authors>Brandon Osborne</Authors>
<Company>coderPro.net</Company>
<Product>Secure Recycle</Product>
<Description>A console application for securely deleting files from your Windows recycle bin.</Description>
<Copyright>Copyright 2025 coderPro.net. All rights reserved.</Copyright>
<PackageProjectUrl>https://coderpro.net</PackageProjectUrl>
<PackageIcon>coderPro_blue_250w.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/coderpros/CoderPro.Apps.SecureRecycle.Console</RepositoryUrl>
<PackageTags>dotnet;csharp;consoleapp;</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<AssemblyName>SecureRecyle</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Content Include="coderPro.ico" />
</ItemGroup>
<ItemGroup>
<None Include="..\CoderPro.Simplify.UI\Resources\coderPro_blue_250w.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<Reference Include="Interop.Shell32">
<HintPath>..\CoderPro.Simplify.UI\obj\Debug\net8.0-windows8.0\Interop.Shell32.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>