-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDependencyGraph.csproj
More file actions
43 lines (36 loc) · 1.71 KB
/
DependencyGraph.csproj
File metadata and controls
43 lines (36 loc) · 1.71 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>DependencyGraph</AssemblyName>
<RootNamespace>DependencyGraph</RootNamespace>
<!-- .NET Tool packaging -->
<PackAsTool>true</PackAsTool>
<ToolCommandName>dependency-graph</ToolCommandName>
<PackageId>DependencyGraph</PackageId>
<Version>1.0.0</Version>
<Authors>Denis Voituron</Authors>
<Description>Scans a folder for .csproj files and exports their project/package dependencies as JSON, an interactive HTML graph or an HTML table.</Description>
<PackageTags>dotnet;tool;dependencies;csproj;graph;visualization;nuget</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<!-- Generate the .nupkg automatically on Release builds only -->
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild>
<PackageOutputPath>$(MSBuildProjectDirectory)\nupkg</PackageOutputPath>
<IncludeBuildOutput>true</IncludeBuildOutput>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.8" />
<PackageReference Include="System.CommandLine" Version="3.0.0-preview.4.26230.115" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Templates\HtmlResultTemplate.html" />
<EmbeddedResource Include="Templates\HtmlTableTemplate.html" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>