-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDendroDocs.Tool.csproj
57 lines (49 loc) · 2.5 KB
/
DendroDocs.Tool.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
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<PackAsTool>true</PackAsTool>
<ToolCommandName>dendrodocs-analyze</ToolCommandName>
<Authors>Michaël Hompus</Authors>
<PackageProjectUrl>https://github.com/dendrodocs/dotnet-tool</PackageProjectUrl>
<Description>Tool to analyze a solution and output the detected code structure to enable rendering.</Description>
<Copyright>Copyright Michaël Hompus 2019</Copyright>
<RepositoryUrl>https://github.com/dendrodocs/dotnet-tool</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>Living Documentation; DendroDocs; DendroDocs; Roslyn; UML; Generation;</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<Version>0.1.0</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="schema.json" />
</ItemGroup>
<ItemGroup>
<Using Include="CommandLine" />
<Using Include="DendroDocs.Extensions" />
<Using Include="DendroDocs.Json" />
<Using Include="Microsoft.CodeAnalysis" />
<Using Include="Microsoft.CodeAnalysis.CSharp" />
<Using Include="Microsoft.CodeAnalysis.CSharp.Syntax" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Buildalyzer.Workspaces" Version="7.1.0" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="DendroDocs.Shared" Version="0.2.1" />
<PackageReference Include="Newtonsoft.Json.Schema" Version="4.0.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.11.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="4.11.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="System.Drawing.Common" Version="9.0.0" />
<PackageReference Include="System.Formats.Asn1" Version="9.0.0" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="9.0.0" />
</ItemGroup>
</Project>