-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSisk.ServiceProvider.csproj
More file actions
50 lines (44 loc) · 1.58 KB
/
Sisk.ServiceProvider.csproj
File metadata and controls
50 lines (44 loc) · 1.58 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Sisk.ServiceProvider</Title>
<PackageId>Sisk.ServiceProvider</PackageId>
<Authors>CypherPotato</Authors>
<Company>Project Principium</Company>
<Product>Sisk.ServiceProvider</Product>
<Description>This package includes tools for easily porting your Sisk service.</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>0.15.0.47</AssemblyVersion>
<FileVersion>0.15.0.47</FileVersion>
<Version>0.15.0.47</Version>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<IncludeSymbols>True</IncludeSymbols>
</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>
<ProjectReference Include="..\..\src\Sisk.Core.csproj" />
</ItemGroup>
</Project>