Browse Source

correct define tag

pull/101/head
Scott Williams 9 years ago
parent
commit
8912faacf2
  1. 2
      src/ImageSharp/Image.cs
  2. 4
      src/ImageSharp/Image/Image{TColor}.cs
  3. 3
      src/ImageSharp/project.json

2
src/ImageSharp/Image.cs

@ -44,7 +44,7 @@ namespace ImageSharp
{ {
} }
#if !NETSTANDARD11 #if !NETSTANDARD1_1
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="Image"/> class. /// Initializes a new instance of the <see cref="Image"/> class.
/// </summary> /// </summary>

4
src/ImageSharp/Image/Image{TColor}.cs

@ -63,7 +63,7 @@ namespace ImageSharp
this.Load(stream); this.Load(stream);
} }
#if !NETSTANDARD11 #if !NETSTANDARD1_1
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="Image{TColor}"/> class. /// Initializes a new instance of the <see cref="Image{TColor}"/> class.
/// </summary> /// </summary>
@ -245,7 +245,7 @@ namespace ImageSharp
return this; return this;
} }
#if !NETSTANDARD11 #if !NETSTANDARD1_1
/// <summary> /// <summary>
/// Saves the image to the given stream using the currently loaded image format. /// Saves the image to the given stream using the currently loaded image format.
/// </summary> /// </summary>

3
src/ImageSharp/project.json

@ -68,9 +68,6 @@
} }
}, },
"netstandard1.1": { "netstandard1.1": {
"buildOptions": {
"define": [ "NETSTANDARD11" ]
},
"dependencies": { "dependencies": {
"System.Collections": "4.0.11", "System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11", "System.Diagnostics.Debug": "4.0.11",

Loading…
Cancel
Save