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

1.1.0-alpha2 bundle

parent 2f63c6b9
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
], ],
"dependencies": { "dependencies": {
"StackExchange.Redis": { "StackExchange.Redis": {
"version": "1.1.0-alpha1", "version": "1.1.0-alpha2",
"target": "project" "target": "project"
} }
}, },
......
...@@ -11,9 +11,11 @@ ...@@ -11,9 +11,11 @@
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath> <BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath> <OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<SchemaVersion>2.0</SchemaVersion> <SchemaVersion>2.0</SchemaVersion>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<ProduceOutputsOnBuild>True</ProduceOutputsOnBuild>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" /> <Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
</Project> </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.", "description": "High performance Redis client, incorporating both synchronous and asynchronous usage.",
"authors": [ "Stack Exchange inc., marc.gravell" ], "authors": [ "Stack Exchange inc., marc.gravell" ],
"owners": [ "marc.gravell" ], "owners": [ "marc.gravell" ],
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
"licenseUrl": "", "licenseUrl": "",
"dependencies": { "dependencies": {
"StackExchange.Redis": { "StackExchange.Redis": {
"version": "1.1.0-alpha1", "version": "1.1.0-alpha2",
"target": "project" "target": "project"
} }
}, },
......
...@@ -11,9 +11,11 @@ ...@@ -11,9 +11,11 @@
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath> <BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath> <OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<SchemaVersion>2.0</SchemaVersion> <SchemaVersion>2.0</SchemaVersion>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<ProduceOutputsOnBuild>True</ProduceOutputsOnBuild>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" /> <Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
</Project> </Project>
\ No newline at end of file
...@@ -14,7 +14,7 @@ public class BufferedOutputStream : Stream ...@@ -14,7 +14,7 @@ public class BufferedOutputStream : Stream
public BufferedOutputStream(Stream inner, int bufferSize) 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 (bufferSize <= 0) throw new ArgumentOutOfRangeException(nameof(bufferSize));
if (!inner.CanWrite) throw new InvalidOperationException("Inner stream is not writeable"); if (!inner.CanWrite) throw new InvalidOperationException("Inner stream is not writeable");
this.inner = inner; this.inner = inner;
......
{ {
"version": "1.1.0-alpha1", "version": "1.1.0-alpha2",
"description": "High performance Redis client, incorporating both synchronous and asynchronous usage.", "description": "High performance Redis client, incorporating both synchronous and asynchronous usage.",
"authors": [ "Stack Exchange inc., marc.gravell" ], "authors": [ "Stack Exchange inc., marc.gravell" ],
"owners": [ "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