Skip to content

Commit d2a0fb2

Browse files
committed
dependencies
1 parent 48a52db commit d2a0fb2

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

.editorconfig

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[*]
2+
charset=utf-8
3+
end_of_line=lf
4+
indent_style=space
5+
max_line_length = 160
6+
7+
[*.{cs}]
8+
indent_size = 4
9+
insert_final_newline = true
10+
11+
# Code files
12+
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
13+
indent_style=space
14+
indent_size=2
15+
16+
# Xml config files
17+
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
18+
indent_size = 2
19+
20+
# JSON files
21+
[*.json]
22+
indent_size = 2
23+
24+
# .NET code style settings:
25+
[*.{cs,vb}]
26+
# Sort using and Import directives with System.* appearing first
27+
dotnet_sort_system_directives_first = true

Prometheus.Client.AspNetCore.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ ProjectSection(SolutionItems) = preProject
1414
appveyor.yml = appveyor.yml
1515
LICENSE = LICENSE
1616
README.md = README.md
17+
.editorconfig = .editorconfig
1718
EndProjectSection
1819
EndProject
1920
Global

src/Prometheus.Client.AspNetCore/Prometheus.Client.AspNetCore.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<Description>Middleware for the Prometheus.Client</Description>
44
<Copyright>2018 © Sergey Kuznetsov</Copyright>
5-
<AssemblyTitle>Prometheus.Client.Owin</AssemblyTitle>
6-
<VersionPrefix>1.5.0</VersionPrefix>
5+
<AssemblyTitle>Prometheus.Client.AspNetCore</AssemblyTitle>
6+
<VersionPrefix>1.5.1</VersionPrefix>
77
<Authors>Sergey Kuznetsov</Authors>
88
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks>
99
<AssemblyName>Prometheus.Client.AspNetCore</AssemblyName>
@@ -18,7 +18,7 @@
1818
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1919
</PropertyGroup>
2020
<ItemGroup>
21-
<PackageReference Include="Prometheus.Client" Version="1.5.0" />
21+
<PackageReference Include="Prometheus.Client" Version="[1.5.0,1.6.0)" />
2222
</ItemGroup>
2323
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3'">
2424
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions">

0 commit comments

Comments
 (0)