Skip to content

Commit

Permalink
Merge pull request #48 from davetimmins/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
davetimmins authored Nov 28, 2018
2 parents 75641b4 + be5486e commit e218309
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var solution = "./Anywhere.ArcGIS.sln";

var version = "1.9.0";
var version = "1.9.1";
var versionSuffix = Environment.GetEnvironmentVariable("VERSION_SUFFIX");

//////////////////////////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion src/Anywhere.ArcGIS/Anywhere.ArcGIS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<RepositoryUrl>https://github.com/davetimmins/Anywhere.ArcGIS</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>ArcGIS ArcGISServer ArcGISOnline Esri REST netstandard anywhere GIS Mapping Map Location GeoLocation OAuth</PackageTags>
<Version>1.9.0</Version>
<Version>1.9.1</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
4 changes: 2 additions & 2 deletions src/Anywhere.ArcGIS/Operation/ServiceLayerDescription.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ public class ServiceLayerDescriptionResponse : PortalResponse
public List<RelatedLayer> SubLayers { get; set; }

[DataMember(Name = "minScale")]
public int MinimumScale { get; set; }
public double? MinimumScale { get; set; }

[DataMember(Name = "maxScale")]
public int MaximumScale { get; set; }
public double? MaximumScale { get; set; }

[DataMember(Name = "defaultVisibility")]
public bool DefaultVisibility { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ public async Task CanDescribeSiteServices(string rootUrl)
[InlineData("http://sampleserver3.arcgisonline.com/ArcGIS/", "Petroleum/KSWells/MapServer/0")]
[InlineData("http://sampleserver3.arcgisonline.com/ArcGIS/", "Petroleum/KSWells/MapServer/1")]
[InlineData("http://services.arcgisonline.co.nz/arcgis", "Canvas/Light/MapServer/0")]
[InlineData("http://services1.arcgis.com/dOFzdrPdRgtU4fRo/ArcGIS", "ServiceDefDouble/FeatureServer/0")]
public async Task CanDescribeLayer(string rootUrl, string layerUrl)
{
var gateway = new PortalGateway(rootUrl);
Expand Down

0 comments on commit e218309

Please sign in to comment.