Commit 5e94e688 authored by Marc Gravell's avatar Marc Gravell

1.1.0-alpha2 bundle

parent 2f63c6b9
......@@ -11,7 +11,7 @@
],
"dependencies": {
"StackExchange.Redis": {
"version": "1.1.0-alpha1",
"version": "1.1.0-alpha2",
"target": "project"
}
},
......
......@@ -11,9 +11,11 @@
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<ProduceOutputsOnBuild>True</ProduceOutputsOnBuild>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>
\ No newline at end of file
{
"version": "1.1.0-alpha1",
"version": "1.1.0-alpha2",
"description": "High performance Redis client, incorporating both synchronous and asynchronous usage.",
"authors": [ "Stack Exchange inc., marc.gravell" ],
"owners": [ "marc.gravell" ],
......
......@@ -7,7 +7,7 @@
"licenseUrl": "",
"dependencies": {
"StackExchange.Redis": {
"version": "1.1.0-alpha1",
"version": "1.1.0-alpha2",
"target": "project"
}
},
......
......@@ -11,9 +11,11 @@
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<ProduceOutputsOnBuild>True</ProduceOutputsOnBuild>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>
\ No newline at end of file
......@@ -14,7 +14,7 @@ public class BufferedOutputStream : Stream
public BufferedOutputStream(Stream inner, int bufferSize)
{
if (inner == null) throw new ArgumentOutOfRangeException(nameof(inner));
if (inner == null) throw new ArgumentNullException(nameof(inner));
if (bufferSize <= 0) throw new ArgumentOutOfRangeException(nameof(bufferSize));
if (!inner.CanWrite) throw new InvalidOperationException("Inner stream is not writeable");
this.inner = inner;
......
{
"version": "1.1.0-alpha1",
"version": "1.1.0-alpha2",
"description": "High performance Redis client, incorporating both synchronous and asynchronous usage.",
"authors": [ "Stack Exchange inc., marc.gravell" ],
"owners": [ "marc.gravell" ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment