-
Notifications
You must be signed in to change notification settings - Fork 2
/
CBAM.HTTP.Implementation.csproj
47 lines (39 loc) · 2.21 KB
/
CBAM.HTTP.Implementation.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.3;netstandard2.0;netcoreapp1.1;netcoreapp2.0;net45;net40</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<TreatSpecificWarningsAsErrors />
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\CBAM.Abstractions.Implementation.NetworkStream\CBAM.Abstractions.Implementation.NetworkStream.csproj" />
<ProjectReference Include="..\CBAM.HTTP\CBAM.HTTP.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AsyncEnumeration.Implementation.Provider" Version="1.0.0" />
<PackageReference Include="ResourcePooling.Async.Implementation" Version="1.2.0" />
</ItemGroup>
<PropertyGroup>
<VersionPrefix>0.6.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<AssemblyTitle>$(AssemblyName)</AssemblyTitle>
<Description>The Connection-Based Asynchronous Messaging (CBAM) HTTP.Implementation package contains API create instances of types defined in CBAM.HTTP package.</Description>
</PropertyGroup>
<!-- NuGet package stuff -->
<PropertyGroup>
<PackageId>$(AssemblyName)</PackageId>
<PackageVersion>$(VersionPrefix)</PackageVersion>
<PackageVersion Condition=" '$(VersionSuffix)' != ''">$(PackageVersion)-$(VersionSuffix)</PackageVersion>
<PackageReleaseNotes>Fixed a bug which occurred on second response read with the same connection (incorrect assumption of CRLF at the end of the previously read data).</PackageReleaseNotes>
<PackageTags>binary serialization async asynchronous connection http client request api</PackageTags>
<Title>CBAM HTTP Client Implementation</Title>
</PropertyGroup>
<!--<PropertyGroup>
<NuGetPushOnBuildFile>$([MSBuild]::GetPathOfFileAbove(NuGetPushOnBuild.targets))</NuGetPushOnBuildFile>
</PropertyGroup>
<Import Project="$(NuGetPushOnBuildFile)" Condition="Exists('$(NuGetPushOnBuildFile)')" /> -->
<Import Project="$(CIPropsFilePath)" Condition=" '$(CIPropsFilePath)' != '' and Exists('$(CIPropsFilePath)') " />
</Project>