You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -144,7 +144,7 @@ Please note that we only consider the following as stable APIs that can be relie
144
144
145
145
The types of PowerShell Editor Services can change at any moment and should not be linked against in a production environment.
146
146
147
-
## Development
147
+
## Development Environment
148
148
149
149
> NOTE: The easiest way to manually test changes you've made in PowerShellEditorServices is to follow the [vscode-powershell development doc](https://github.com/PowerShell/vscode-powershell/blob/main/docs/development.md) to get a local build of the VS Code extension to use your local build of PowerShellEditorServices.
Our NuGet configuration points to a private feed necessary for secure builds,
171
-
and it must be committed to the repo as it is.
172
-
The easiest way to build without access to that private feed is to delete the file:
170
+
Our NuGet configuration uses a secure feed with whitelisted third party dependency packages. If your contribution requires any changes to the included NuGet packages, you must disable this secure feed.
171
+
172
+
First, run this command to prevent accidentally commiting changes to this file
173
173
174
174
```powershell
175
-
Remove-Item NuGet.Config
175
+
git update-index --skip-worktree nuget.config
176
176
```
177
177
178
-
Please be careful not to commit this change in a PR.
178
+
Then, either delete the file or remove the `packagesources` section to use nuget.org again. Your PR _will_ fail automated build checks and you _must_ inform us at the top of your PR so the appropriate packages can be added if approved.
179
179
180
-
Now you're ready to build the code.
181
-
You can do so in one of two ways:
180
+
## Build PowerShell Editor Services
181
+
Now you're ready to build the code. You can do so in one of two ways:
0 commit comments