Skip to content
This repository was archived by the owner on Mar 26, 2019. It is now read-only.

Commit 475e5e0

Browse files
authoredDec 2, 2018
Merge pull request #39 from AppMetrics/dev
2.1.0 release
2 parents bb85a2f + 53fefa5 commit 475e5e0

File tree

144 files changed

+2841
-702
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+2841
-702
lines changed
 

‎CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ If you're unable to find an open issue related to the bug you've found go ahead
3030

3131
### **Contributing to the documentation**
3232

33-
App Metrics documentation is built using [docfx](https://dotnet.github.io/docfx/), you can find the github repo [here](https://github.com/alhardy/AppMetrics.DocFx) and create a new pull request on the `master` branch.
33+
App Metrics documentation is built using [Hugo](https://gohugo.io/documentation/), you can find the github repo [here](https://github.com/AppMetrics/Docs.V2.Hugo) and create a new pull request on the `master` branch.

‎Health.sln

+18
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,15 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1414
AppMetrics.ruleset = AppMetrics.ruleset
1515
appveyor.yml = appveyor.yml
1616
global.json = global.json
17+
README.md = README.md
1718
stylecop.json = stylecop.json
1819
version.props = version.props
1920
EndProjectSection
2021
EndProject
2122
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{DD2E4647-7125-4CE3-9BA5-B45A26113A31}"
23+
ProjectSection(SolutionItems) = preProject
24+
test\Directory.Build.props = test\Directory.Build.props
25+
EndProjectSection
2226
EndProject
2327
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "benchmarks", "benchmarks", "{A335612E-C4C6-4AF4-98A9-EB9FF40CA258}"
2428
EndProject
@@ -84,6 +88,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "App.Metrics.Health.Abstract
8488
EndProject
8589
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "App.Metrics.Health.Checks.Sql", "src\App.Metrics.Health.Checks.Sql\App.Metrics.Health.Checks.Sql.csproj", "{ABF2C6E2-815B-495E-9E50-12FEFEA3E383}"
8690
EndProject
91+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "App.Metrics.Health.Reporting.Slack", "src\App.Metrics.Health.Reporting.Slack\App.Metrics.Health.Reporting.Slack.csproj", "{C3B21944-33F3-40D7-BEB0-8681A40F7DB2}"
92+
EndProject
93+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "App.Metrics.Health.Reporting.Metrics", "src\App.Metrics.Health.Reporting.Metrics\App.Metrics.Health.Reporting.Metrics.csproj", "{6F39E4F0-BCA1-4CE2-AD65-C338B8B0EF2A}"
94+
EndProject
8795
Global
8896
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8997
Debug|Any CPU = Debug|Any CPU
@@ -154,6 +162,14 @@ Global
154162
{ABF2C6E2-815B-495E-9E50-12FEFEA3E383}.Debug|Any CPU.Build.0 = Debug|Any CPU
155163
{ABF2C6E2-815B-495E-9E50-12FEFEA3E383}.Release|Any CPU.ActiveCfg = Release|Any CPU
156164
{ABF2C6E2-815B-495E-9E50-12FEFEA3E383}.Release|Any CPU.Build.0 = Release|Any CPU
165+
{C3B21944-33F3-40D7-BEB0-8681A40F7DB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
166+
{C3B21944-33F3-40D7-BEB0-8681A40F7DB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
167+
{C3B21944-33F3-40D7-BEB0-8681A40F7DB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
168+
{C3B21944-33F3-40D7-BEB0-8681A40F7DB2}.Release|Any CPU.Build.0 = Release|Any CPU
169+
{6F39E4F0-BCA1-4CE2-AD65-C338B8B0EF2A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
170+
{6F39E4F0-BCA1-4CE2-AD65-C338B8B0EF2A}.Debug|Any CPU.Build.0 = Debug|Any CPU
171+
{6F39E4F0-BCA1-4CE2-AD65-C338B8B0EF2A}.Release|Any CPU.ActiveCfg = Release|Any CPU
172+
{6F39E4F0-BCA1-4CE2-AD65-C338B8B0EF2A}.Release|Any CPU.Build.0 = Release|Any CPU
157173
EndGlobalSection
158174
GlobalSection(SolutionProperties) = preSolution
159175
HideSolutionNode = FALSE
@@ -179,6 +195,8 @@ Global
179195
{ED057808-8377-46BB-95EA-2F03865B0116} = {DD2E4647-7125-4CE3-9BA5-B45A26113A31}
180196
{6F6F9F53-4A1B-4F2B-96E3-A75BA47BCA1D} = {2D805782-756E-4C98-B22E-F502BEE95318}
181197
{ABF2C6E2-815B-495E-9E50-12FEFEA3E383} = {2D805782-756E-4C98-B22E-F502BEE95318}
198+
{C3B21944-33F3-40D7-BEB0-8681A40F7DB2} = {2D805782-756E-4C98-B22E-F502BEE95318}
199+
{6F39E4F0-BCA1-4CE2-AD65-C338B8B0EF2A} = {2D805782-756E-4C98-B22E-F502BEE95318}
182200
EndGlobalSection
183201
GlobalSection(ExtensibilityGlobals) = postSolution
184202
SolutionGuid = {A8699A1D-0BA1-403C-86E9-C789CD2645EB}

0 commit comments

Comments
 (0)
Failed to load comments.