-
Notifications
You must be signed in to change notification settings - Fork 383
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1018 from PowerShell/development
Merge changes of 1.17.1 (including 1.17.0) into Master
- Loading branch information
Showing
278 changed files
with
24,197 additions
and
9,681 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
name: Bug report 🐛 | ||
about: Report errors or unexpected behavior 🤔 | ||
|
||
--- | ||
|
||
Before submitting a bug report: | ||
|
||
- Make sure you are able to repro it on the latest released version | ||
- Perform a quick search for existing issues to check if this bug has already been reported | ||
|
||
Steps to reproduce | ||
------------------ | ||
|
||
```PowerShell | ||
``` | ||
|
||
Expected behavior | ||
----------------- | ||
|
||
```none | ||
``` | ||
|
||
Actual behavior | ||
--------------- | ||
|
||
```none | ||
``` | ||
|
||
If an unexpected error was thrown then please report the full error details using e.g. `$error[0] | Select-Object *` | ||
|
||
Environment data | ||
---------------- | ||
|
||
<!-- Provide the output of the following 2 commands --> | ||
|
||
```PowerShell | ||
> $PSVersionTable | ||
> (Get-Module -ListAvailable PSScriptAnalyzer).Version | ForEach-Object { $_.ToString() } | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Feature request/idea 🚀 | ||
about: Suggest a new feature or improvement (this does not mean you have to implement it) | ||
|
||
--- | ||
|
||
**Summary of the new feature** | ||
|
||
A clear and concise description of what the problem is that the new feature would solve. | ||
Try formulating it in user story style (if applicable): | ||
'As a user I want X so that Y.' with X being the being the action and Y being the value of the action. | ||
|
||
**Proposed technical implementation details (optional)** | ||
|
||
A clear and concise description of what you want to happen. | ||
|
||
**What is the latest version of PSScriptAnalyzer at the point of writing** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
name: Support Question ❓ | ||
about: If you have a question, you can try asking in the scriptanalyzer channel of the international PowerShell Slack channel first. | ||
|
||
--- | ||
|
||
* Slack Community Chat: https://powershell.slack.com (you can sign-up at http://slack.poshcode.org/ for an invite) | ||
* Also have a look at the `RoleDocumentation` folder for more information on each rule: | ||
https://github.com/PowerShell/PSScriptAnalyzer/tree/development/RuleDocumentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
## PR Summary | ||
|
||
<!-- summarize your PR between here and the checklist --> | ||
|
||
## PR Checklist | ||
|
||
Note: Tick the boxes below that apply to this pull request by putting an `x` between the square brackets. Please mark anything not applicable to this PR `NA`. | ||
|
||
- [ ] PR has a meaningful title | ||
- [ ] Use the present tense and imperative mood when describing your changes | ||
- [ ] Summarized changes | ||
- [ ] User facing documentation needed | ||
- [ ] Change is not breaking | ||
- [ ] Make sure you've added a new test if existing tests do not effectively test the code changed | ||
- [ ] This PR is ready to merge and is not work in progress | ||
- If the PR is work in progress, please add the prefix `WIP:` to the beginning of the title and remove the prefix when the PR is ready |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ TestResult.xml | |
[Rr]eleasePS/ | ||
dlldata.c | ||
|
||
# DNX | ||
# .Net Core CLI | ||
project.lock.json | ||
artifacts/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
|
||
{ | ||
"name": ".NET Core Launch (console)", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "build", | ||
"program": "${workspaceRoot}/bin/Debug/<target-framework>/<project-name.dll>", | ||
"args": [], | ||
"cwd": "${workspaceRoot}", | ||
"externalConsole": false, | ||
"stopAtEntry": false, | ||
"internalConsoleOptions": "openOnSessionStart" | ||
}, | ||
{ | ||
"name": ".NET Core Attach", | ||
"type": "coreclr", | ||
"request": "attach", | ||
"processId": "${command:pickProcess}" | ||
}, | ||
{ | ||
"name": ".NET Full Attach", | ||
"type": "clr", | ||
"request": "attach", | ||
"processId": "${command:pickProcess}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.