-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSisk.Core.csproj
118 lines (104 loc) · 3.64 KB
/
Sisk.Core.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<Project Sdk="Microsoft.NET.Sdk">
<!-- supported frameworks -->
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<RootNamespace>Sisk.Core</RootNamespace>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<!-- debug info, symbols -->
<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>symbols.nupkg</SymbolPackageFormat>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<DebugType>embedded</DebugType>
</PropertyGroup>
<!-- aot, build options -->
<PropertyGroup>
<OutputType>Library</OutputType>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<EnableTrimAnalyzer>True</EnableTrimAnalyzer>
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>
<!-- nuget package info -->
<PropertyGroup>
<PackageId>Sisk.HttpServer</PackageId>
<Title>Sisk.HttpServer</Title>
<Authors>CypherPotato</Authors>
<Company>Project Principium</Company>
<Product>Sisk.HttpServer</Product>
<NeutralLanguage>en-US</NeutralLanguage>
<Description>Sisk is an powerful framework for building web applications with .NET.</Description>
<Summary>Sisk is an powerful framework for building web applications with .NET.</Summary>
<RepositoryType>git</RepositoryType>
<PackageTags>http-server,http,web framework,event sources,web sockets</PackageTags>
<PackageProjectUrl>https://sisk-framework.org/</PackageProjectUrl>
<RepositoryUrl>https://github.com/sisk-http/core</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>false</EmbedUntrackedSources>
</PropertyGroup>
<!-- version info -->
<PropertyGroup>
<AssemblyVersion>1.4</AssemblyVersion>
<FileVersion>1.4</FileVersion>
<Version>1.4-beta3</Version>
</PropertyGroup>
<!-- licensing, readme, signing -->
<PropertyGroup>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<SignAssembly>False</SignAssembly>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackRelease>True</PackRelease>
</PropertyGroup>
<!-- idk what is that -->
<PropertyGroup>
<PathMap>$(MSBuildProjectDirectory)\$(IntermediateOutputPath)=.</PathMap>
</PropertyGroup>
<!-- source link -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<!-- enforce code quality on release -->
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AnalysisLevel>latest</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<!-- SYSLIB0020: IgnoreNullValues is obsolete -->
<NoWarn>$(NoWarn);SYSLIB0020</NoWarn>
</PropertyGroup>
<!-- package included files -->
<ItemGroup>
<None Include="..\.github\Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\.nuget\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include=".\.editorconfig" />
</ItemGroup>
<ItemGroup>
<None Include="..\.nuget\README.html" Link="README.html" />
</ItemGroup>
<ItemGroup>
<EditorConfigFiles Remove=".\.editorconfig" />
</ItemGroup>
<!-- global imports -->
<ItemGroup>
<Using Include="System" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Threading" />
<Using Include="System.Threading.Tasks" />
<Using Include="System.IO" />
<Using Include="System.Net.Http" />
<Using Include="System.Linq" />
</ItemGroup>
</Project>