-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSisk.Documenting.csproj
More file actions
68 lines (56 loc) · 2.11 KB
/
Sisk.Documenting.csproj
File metadata and controls
68 lines (56 loc) · 2.11 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<EnableTrimAnalyzer>True</EnableTrimAnalyzer>
<IsAotCompatible>true</IsAotCompatible>
<Title>Sisk.Documenting</Title>
<PackageId>Sisk.Documenting</PackageId>
<Authors>CypherPotato</Authors>
<Company>Project Principium</Company>
<Product>Sisk.Documenting</Product>
<Description>This package provides a way to export documentation from your Sisk API.</Description>
<PackageProjectUrl>https://sisk.proj.pw/</PackageProjectUrl>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/sisk-http/core</RepositoryUrl>
<PackageTags>http-server,http,web framework</PackageTags>
<RepositoryType>git</RepositoryType>
<AssemblyVersion>1.6.0</AssemblyVersion>
<FileVersion>1.6.0</FileVersion>
<Version>1.6.0-beta2</Version>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<IncludeSymbols>True</IncludeSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<xTreatWarningsAsErrors>true</xTreatWarningsAsErrors>
<!-- SYSLIB0020: IgnoreNullValues is obsolete -->
<NoWarn>$(NoWarn);SYSLIB0020</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\.github\Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\.nuget\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CypherPotato.LightJson" Version="0.15.2" />
<PackageReference Include="Namotion.Reflection" Version="3.3.0" />
<PackageReference Include="System.Text.Json" Version="9.0.12" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Sisk.Core.csproj" />
</ItemGroup>
</Project>