Skip to content

Commit bee44cf

Browse files
committed
Update version
1 parent b59fd12 commit bee44cf

File tree

4 files changed

+6
-18
lines changed

4 files changed

+6
-18
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@ static void Main(string[] args)
4444

4545
If you are having problems, send a mail to [[email protected]](mailto://[email protected]). I will try to help you.
4646

47-
I would also very much appreciate your support by buying me a coffee.
48-
49-
<a href="https://www.buymeacoffee.com/phnx47" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/yellow_img.png" alt="Buy Me A Coffee" style="height: auto !important;width: auto !important;" ></a>
50-
5147
## License
5248

5349
All contents of this package are licensed under the [MIT license](https://opensource.org/licenses/MIT).

appveyor.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
version: '{branch}-build{build}'
22
image: Ubuntu1804
33

4-
skip_commits:
5-
files:
6-
- '**/*.md'
7-
84
build_script:
95
- sh: dotnet build -c Release
106

src/Prometheus.Client.MetricServer/Prometheus.Client.MetricServer.csproj

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<Description>MetricServer for the Prometheus.Client</Description>
44
<Copyright>2019 © Sergey Kuznetsov</Copyright>
55
<AssemblyTitle>Prometheus.Client.MetricServer</AssemblyTitle>
6-
<VersionPrefix>3.2.0</VersionPrefix>
6+
<VersionPrefix>3.1.0</VersionPrefix>
77
<Authors>Sergey Kuznetsov, Oleksandr Poliakov</Authors>
8-
<TargetFrameworks>netstandard1.3;netstandard2.0;netcoreapp2.2;netcoreapp3.0</TargetFrameworks>
8+
<TargetFrameworks>netstandard1.3;netstandard2.0;netcoreapp2.2;netstandard2.1</TargetFrameworks>
99
<AssemblyName>Prometheus.Client.MetricServer</AssemblyName>
1010
<PackageId>Prometheus.Client.MetricServer</PackageId>
1111
<PackageTags>prometheus;metrics</PackageTags>
@@ -23,20 +23,17 @@
2323
<None Include="../../icon.png" Pack="true" Visible="false" PackagePath="" />
2424
</ItemGroup>
2525
<ItemGroup>
26-
<PackageReference Include="Prometheus.Client" Version="3.1.0-build379" />
26+
<PackageReference Include="Prometheus.Client" Version="[3.1.0,4.0.0)" />
2727
</ItemGroup>
2828
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.3'">
2929
<DefineConstants>$(DefineConstants);NETSTANDARD13</DefineConstants>
3030
</PropertyGroup>
3131
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
32-
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.0" />
33-
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Https" Version="1.1.0" />
32+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.3" />
33+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Https" Version="1.1.3" />
3434
</ItemGroup>
35-
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netcoreapp2.2'">
35+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netcoreapp2.2' OR '$(TargetFramework)' == 'netstandard2.1'">
3636
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.2.0" />
3737
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Https" Version="2.2.0" />
3838
</ItemGroup>
39-
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.0' ">
40-
<FrameworkReference Include="Microsoft.AspNetCore.App" />
41-
</ItemGroup>
4239
</Project>

0 commit comments

Comments
 (0)