Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
root = true

[*]
indent_style = tab
indent_style = space

# Code files
[*.{cs,csx,vb,vbx}]
Expand Down
19 changes: 17 additions & 2 deletions HTTPlease.sln
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2024
# Visual Studio Version 16
VisualStudioVersion = 16.0.28729.10
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E084508E-FBEB-4A72-9C38-C34E270E8C2B}"
ProjectSection(SolutionItems) = preProject
Expand Down Expand Up @@ -37,6 +37,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HTTPlease.Diagnostics", "sr
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HTTPlease.Diagnostics.Tests", "test\HTTPlease.Diagnostics.Tests\HTTPlease.Diagnostics.Tests.csproj", "{7252EB2F-2373-40CD-A7B6-B24919B974AF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HTTPlease.TestHarness", "test\HTTPlease.TestHarness\HTTPlease.TestHarness.csproj", "{A0756A83-C331-4901-B13B-31010B14784E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -203,6 +205,18 @@ Global
{7252EB2F-2373-40CD-A7B6-B24919B974AF}.Release|x64.Build.0 = Release|Any CPU
{7252EB2F-2373-40CD-A7B6-B24919B974AF}.Release|x86.ActiveCfg = Release|Any CPU
{7252EB2F-2373-40CD-A7B6-B24919B974AF}.Release|x86.Build.0 = Release|Any CPU
{A0756A83-C331-4901-B13B-31010B14784E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A0756A83-C331-4901-B13B-31010B14784E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A0756A83-C331-4901-B13B-31010B14784E}.Debug|x64.ActiveCfg = Debug|Any CPU
{A0756A83-C331-4901-B13B-31010B14784E}.Debug|x64.Build.0 = Debug|Any CPU
{A0756A83-C331-4901-B13B-31010B14784E}.Debug|x86.ActiveCfg = Debug|Any CPU
{A0756A83-C331-4901-B13B-31010B14784E}.Debug|x86.Build.0 = Debug|Any CPU
{A0756A83-C331-4901-B13B-31010B14784E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A0756A83-C331-4901-B13B-31010B14784E}.Release|Any CPU.Build.0 = Release|Any CPU
{A0756A83-C331-4901-B13B-31010B14784E}.Release|x64.ActiveCfg = Release|Any CPU
{A0756A83-C331-4901-B13B-31010B14784E}.Release|x64.Build.0 = Release|Any CPU
{A0756A83-C331-4901-B13B-31010B14784E}.Release|x86.ActiveCfg = Release|Any CPU
{A0756A83-C331-4901-B13B-31010B14784E}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -221,6 +235,7 @@ Global
{B7DE2327-D1E3-4F30-8603-C7277A304A73} = {244D5A84-F66C-4628-A33A-5FBA3E9895B4}
{5355EEF6-2E9D-452F-A3C8-4C9F38D39EF1} = {244D5A84-F66C-4628-A33A-5FBA3E9895B4}
{7252EB2F-2373-40CD-A7B6-B24919B974AF} = {D91C25AB-6BDD-485E-8375-B638972DC8EF}
{A0756A83-C331-4901-B13B-31010B14784E} = {D91C25AB-6BDD-485E-8375-B638972DC8EF}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {9A554FA4-21BC-4666-8041-2FB39C103BAB}
Expand Down
2 changes: 1 addition & 1 deletion docs/source/development/contributing/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Some basic guidelines:

* Please don't use auto-generated comments - all this does is make it harder to know what members actually have meaningful comments.
* If you really object to adding doc comments, make a note in the pull request and we'll try to add them for you
* Tabs, not spaces
* Spaces, not tabs
* Please don't use the ``var`` keyword unless:

* There is a type on the right-hand side of the expression (e.g. ``new Foo()``)
Expand Down
Loading