Skip to content

Commit 8d2e11e

Browse files
committed
Merge branch 'release/0.10.0'
2 parents 36bd0bd + 20e2f78 commit 8d2e11e

File tree

166 files changed

+7170
-4965
lines changed

Some content is hidden

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

166 files changed

+7170
-4965
lines changed

.appveyor.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
#---------------------------------#
2-
# Build Image #
3-
#---------------------------------#
4-
image: Visual Studio 2019
5-
6-
#---------------------------------#
7-
# Build Script #
8-
#---------------------------------#
9-
build_script:
10-
- ps: .\build.ps1 -Target ContinuousIntegration
11-
12-
# Tests
13-
test: off
14-
15-
#---------------------------------#
16-
# Branches to build #
17-
#---------------------------------#
18-
branches:
19-
# Whitelist
20-
only:
21-
- develop
22-
- master
23-
24-
#---------------------------------#
25-
# Build Cache #
26-
#---------------------------------#
27-
cache:
28-
- Source\packages -> Source\**\packages.config
29-
- Tools -> recipe.cake
1+
---
2+
#---------------------------------#
3+
# Build Image #
4+
#---------------------------------#
5+
image: Visual Studio 2019
6+
7+
#---------------------------------#
8+
# Build Script #
9+
#---------------------------------#
10+
build_script:
11+
- ps: .\build.ps1 -Target ContinuousIntegration
12+
13+
# Tests
14+
test: off
15+
16+
#---------------------------------#
17+
# Branches to build #
18+
#---------------------------------#
19+
branches:
20+
# Whitelist
21+
only:
22+
- develop
23+
- master
24+
25+
#---------------------------------#
26+
# Build Cache #
27+
#---------------------------------#
28+
cache:
29+
- Tools -> recipe.cake

.editorconfig

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,38 @@
44
root = true
55

66
[*]
7-
end_of_line = CRLF
7+
charset = utf-8 # Just for consistency
8+
# Indentation and spacing
9+
indent_size = 4
10+
indent_style = space
11+
tab_width = 4
12+
13+
# New line preferences
14+
end_of_line = crlf
15+
insert_final_newline = false
16+
trim_trailing_whitespace = true
17+
18+
[*.sh]
19+
end_of_line = lf
20+
21+
[*.sln]
22+
# Visual studio defaults
23+
insert_final_newline = true
24+
indent_style = tab
25+
26+
[*.md]
27+
trim_trailing_whitespace = false
28+
insert_final_newline = true # Conflicts with markdownlint when false
29+
indent_size = 2 # Incorrect indentation happens when this is not 2
30+
31+
[*.{yml,yaml}]
32+
indent_size = 2 # Incorrect indentation happens when this is not 2
833

934
[*.ps1]
35+
charset = utf-8-bom
1036
indent_style = space
1137
indent_size = 2
1238

13-
[*.cs]
14-
indent_style = space
15-
indent_size = 4
16-
1739
[*.js]
1840
indent_style = tab
1941
indent_size = 2

.gitattributes

Lines changed: 27 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
1-
* -text
2-
3-
# Custom for Visual Studio
4-
*.cs diff=csharp
5-
*.sln merge=union
6-
*.csproj merge=union
7-
*.vbproj merge=union
8-
*.fsproj merge=union
9-
*.dbproj merge=union
10-
11-
# Standard to msysgit
12-
*.doc diff=astextplain
13-
*.DOC diff=astextplain
14-
*.docx diff=astextplain
15-
*.DOCX diff=astextplain
16-
*.dot diff=astextplain
17-
*.DOT diff=astextplain
18-
*.pdf diff=astextplain
19-
*.PDF diff=astextplain
20-
*.rtf diff=astextplain
21-
*.RTF diff=astextplain
1+
* text eol=crlf whitespace=tab-in-indent,tabwidth=4
2+
3+
*.sh text eol=lf
4+
5+
*.md text whitespace=-blank-at-eol
6+
7+
# Custom for Visual Studio
8+
*.cs text diff=csharp
9+
*.sln merge=union whitespace=-tab-in-indent,-blank-at-eof,indent-with-non-tab
10+
*.csproj merge=union
11+
*.vbproj merge=union
12+
*.fsproj merge=union
13+
*.dbproj merge=union
14+
15+
# Standard to msysgit
16+
*.doc diff=astextplain
17+
*.DOC diff=astextplain
18+
*.docx diff=astextplain
19+
*.DOCX diff=astextplain
20+
*.dot diff=astextplain
21+
*.DOT diff=astextplain
22+
*.pdf diff=astextplain
23+
*.PDF diff=astextplain
24+
*.rtf diff=astextplain
25+
*.RTF diff=astextplain
26+
27+
*.png binary

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Report a bug
3+
about: Create a bug report to help us improve
4+
title: "REPLACE THIS TEXT WITH A GENERAL SUMMARY OF THE ISSUE"
5+
labels: Bug, Investigating
6+
assignees: ""
7+
---
8+
9+
## Description
10+
<!-- Provide a more detailed introduction of the issue itself, -->
11+
<!-- and why you consider it to be a bug -->
12+
13+
## Expected Behavior
14+
<!-- Tell us what you believe should happen -->
15+
16+
## Actual Behavior
17+
<!-- Tell us what is happening -->
18+
19+
## Possible Fix
20+
<!-- Not obligatory, but suggest a fix or reason for the bug -->
21+
22+
## Steps to Reproduce
23+
<!-- Provide a link to a live example, or an unambiguous set of steps to -->
24+
<!-- reproduce this bug. Include code to reproduce, if relevant -->
25+
26+
## Context
27+
<!-- How has this bug affected you? What were you trying to accomplish? -->
28+
29+
## Your Environment
30+
<!-- Include as many relevant details about the environment -->
31+
<!-- you experienced the bug in -->
32+
33+
- Version Used:
34+
- Edition Used (.NET Core, .NET Framework):
35+
- Operating System and version (Windows 10, Ubuntu 18.04):
36+
- Link to your project:
37+
- Link to your CI build (if appropriate):

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Gitter Community Chat
4+
url: https://gitter.im/GitTools/GitReleaseManager
5+
about: Please ask and answer questions here.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Suggest a new feature
3+
about: Suggest a new feature to implement
4+
title: "REPLACE THIS TEXT WITH A GENERAL SUMMARY OF THE FEATURE"
5+
labels: Feature, Investigating
6+
assignees: ""
7+
---
8+
9+
## Detailed Description
10+
<!--- Provide a detailed description of the change or addition you are proposing -->
11+
12+
## Context
13+
<!--- Why is this change important to you? How would you use it? -->
14+
<!--- How can it benefit other users? -->
15+
16+
## Possible Implementation
17+
<!--- Not obligatory, but suggest an idea for implementing addition or change -->
18+
19+
## Your Environment
20+
<!--- Include as many relevant details about your environment -->
21+
- Version Used:
22+
- Edition Used (.NET Core, .NET Framework):
23+
- Operating System and version (Windows 10, Ubuntu 18.04):

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!--- Provide a general summary of your changes in the Title above -->
2+
3+
## Description
4+
<!--- Describe your changes in detail -->
5+
6+
## Related Issue
7+
<!--- This project only accepts pull requests related to open issues -->
8+
<!--- If suggesting a new feature or change, please discuss it in an issue first -->
9+
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
10+
<!--- Please link to the issue here: -->
11+
12+
## Motivation and Context
13+
<!--- Why is this change required? What problem does it solve? -->
14+
15+
## How Has This Been Tested?
16+
<!--- Please describe in detail how you tested your changes. -->
17+
<!--- Include details of your testing environment, and the tests you ran to -->
18+
<!--- see how your change affects other areas of the code, etc. -->
19+
20+
## Screenshots (if appropriate):
21+
22+
## Checklist:
23+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
24+
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
25+
26+
- [ ] My code follows the code style of this project.
27+
- [ ] My change requires a change to the documentation.
28+
- [ ] I have updated the documentation accordingly.
29+
- [ ] I have read the **CONTRIBUTING** document.
30+
- [ ] I have added tests to cover my changes.
31+
- [ ] All new and existing tests passed.

0 commit comments

Comments
 (0)