-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSisk.SslProxy.csproj
69 lines (57 loc) · 2.25 KB
/
Sisk.SslProxy.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Sisk.SslProxy</Title>
<PackageId>Sisk.SslProxy</PackageId>
<RootNamespace>Sisk.Ssl</RootNamespace>
<Authors>CypherPotato</Authors>
<Company>Project Principium</Company>
<Product>Sisk.SslProxy</Product>
<Description>This package provides an experimental SSL proxy for the Sisk Framework and other .NET projects.</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>
<Version>1.4.1.1-alpha9</Version>
<AssemblyVersion>1.4.1</AssemblyVersion>
<FileVersion>1.4.1</FileVersion>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<IncludeSymbols>True</IncludeSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- SYSLIB0020: IgnoreNullValues is obsolete -->
<NoWarn>$(NoWarn);SYSLIB0020</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>$(DefineConstants)</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|AnyCPU'">
<DefineConstants>$(DefineConstants);VERBOSE</DefineConstants>
</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="..\..\cadente\Sisk.Cadente\Sisk.Cadente.csproj" />
<ProjectReference Include="..\..\src\Sisk.Core.csproj" />
</ItemGroup>
</Project>