-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeadCode.csproj
More file actions
40 lines (36 loc) · 1.86 KB
/
DeadCode.csproj
File metadata and controls
40 lines (36 loc) · 1.86 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Global Tool Configuration -->
<PackAsTool>true</PackAsTool>
<ToolCommandName>deadcode</ToolCommandName>
<PackageId>DeadCode</PackageId>
<Version>1.0.0</Version>
<Authors>DeadCode Contributors</Authors>
<Description>A .NET global tool that identifies unused code through static and dynamic analysis</Description>
<PackageTags>dead-code;static-analysis;dynamic-analysis;code-quality;cleanup;refactoring</PackageTags>
<PackageProjectUrl>https://github.com/endjin/deadcode</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/endjin/deadcode</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Copyright>Copyright © $([System.DateTime]::Now.Year) Endjin Limited</Copyright>
<Company>Endjin</Company>
<PackageReleaseNotes>See https://github.com/endjin/deadcode/releases</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Diagnostics.Tracing.TraceEvent" Version="3.1.26" />
<PackageReference Include="Spectre.Console" Version="0.50.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.50.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.7" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.7" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.7" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>