Skip to content

Commit 519a2d5

Browse files
committed
change dependencies
1 parent a62564d commit 519a2d5

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Prometheus.Client.MetricServer
22

3-
[![Build status](https://ci.appveyor.com/api/projects/status/pe2cpegs61b6tmi9?svg=true)](https://ci.appveyor.com/project/phnx47/prometheus-client-metricserver)
3+
[![NuGet Badge](https://buildstats.info/nuget/Prometheus.Client.MetricServer)](https://www.nuget.org/packages/Prometheus.Client.MetricServer/)
4+
[![Build status](https://ci.appveyor.com/api/projects/status/ea3w0pycgyqqwd1o/branch/master?svg=true)](https://ci.appveyor.com/project/PrometheusClientNet/prometheus-client-metricserver/branch/master)
45
[![License MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://opensource.org/licenses/MIT)
56
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/12e7517c49aa418b8ae2f242dfb8df2e)](https://www.codacy.com/app/phnx47/Prometheus.Client.MetricServer?utm_source=github.com&utm_medium=referral&utm_content=phnx47/Prometheus.Client.MetricServer&utm_campaign=Badge_Grade)
6-
[![NuGet Badge](https://buildstats.info/nuget/Prometheus.Client.MetricServer)](https://www.nuget.org/packages/Prometheus.Client.MetricServer/)
77

88
Extension for [Prometheus.Client](https://github.com/phnx47/Prometheus.Client)
99

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ artifacts:
2121
deploy:
2222
- provider: NuGet
2323
api_key:
24-
secure: vukCl5k+S4fJtqeYNiB9ufy/NUCw+60cPcqnPoqvykBjSo8Ub8QtEfZNN9qvj5Jh
24+
secure: vbPWVWUYJ4zSn7fQ621uITPR99Q2s+bx36nE97IUOFrjgjAkMSJ9KOoFTXTGPAl1
2525
on:
2626
appveyor_repo_tag: true
Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,30 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>MetricServer for the Prometheus.Client</Description>
4-
<Copyright>2017 © Sergey Kuznetsov</Copyright>
4+
<Copyright>2018 © Sergey Kuznetsov</Copyright>
55
<AssemblyTitle>Prometheus.Client.MetricServer</AssemblyTitle>
6-
<VersionPrefix>1.2.2</VersionPrefix>
6+
<VersionPrefix>1.2.3</VersionPrefix>
77
<Authors>Sergey Kuznetsov</Authors>
8-
<TargetFrameworks>net45;netstandard1.3;netstandard2.0</TargetFrameworks>
8+
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard1.3;netstandard2.0</TargetFrameworks>
9+
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net45;netstandard1.3;netstandard2.0</TargetFrameworks>
910
<AssemblyName>Prometheus.Client.MetricServer</AssemblyName>
1011
<PackageId>Prometheus.Client.MetricServer</PackageId>
1112
<PackageTags>prometheus;metrics</PackageTags>
1213
<PackageIconUrl>https://image.ibb.co/k4Sc0k/prometheus.png</PackageIconUrl>
13-
<PackageProjectUrl>https://github.com/phnx47/Prometheus.Client.MetricServer</PackageProjectUrl>
14+
<PackageProjectUrl>https://github.com/PrometheusClientNet/Prometheus.MetricServer</PackageProjectUrl>
1415
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
1516
<RepositoryType>git</RepositoryType>
16-
<RepositoryUrl>https://github.com/phnx47/Prometheus.MetricServer</RepositoryUrl>
17+
<RepositoryUrl>https://github.com/PrometheusClientNet/Prometheus.MetricServer</RepositoryUrl>
18+
<PackageReleaseNotes>https://github.com/PrometheusClientNet/Prometheus.Client.MetricServer/releases</PackageReleaseNotes>
1719
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1820
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1921
</PropertyGroup>
2022
<ItemGroup>
21-
<PackageReference Include="Prometheus.Client" Version="1.4.0" />
23+
<PackageReference Include="Prometheus.Client" Version="1.4.2"/>
2224
</ItemGroup>
2325
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
24-
<Reference Include="System" />
25-
<Reference Include="Microsoft.CSharp" />
26+
<Reference Include="System"/>
27+
<Reference Include="Microsoft.CSharp"/>
2628
</ItemGroup>
2729
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.3'">
2830
<DefineConstants>$(DefineConstants);NETSTANDARD13</DefineConstants>
@@ -31,11 +33,11 @@
3133
<DefineConstants>$(DefineConstants);NETSTANDARD20</DefineConstants>
3234
</PropertyGroup>
3335
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
34-
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.3" />
35-
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Https" Version="1.1.3" />
36+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.0"/>
37+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Https" Version="1.1.0"/>
3638
</ItemGroup>
3739
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
38-
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.0.1" />
39-
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Https" Version="2.0.1" />
40+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.0.0"/>
41+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Https" Version="2.0.0"/>
4042
</ItemGroup>
4143
</Project>

tests/Prometheus.Client.MetricServer.NetCore.Tests/MetricServerTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System.Net;
22
using System.Net.Http;
33
using System.Threading.Tasks;
4-
using Microsoft.AspNetCore.Http;
54
using Xunit;
65

76
namespace Prometheus.Client.MetricServer.NetCore.Tests

0 commit comments

Comments
 (0)