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
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,7 @@ Please note that we only consider the following as stable APIs that can be relie
153
153
154
154
The types of PowerShell Editor Services can change at any moment and should not be linked against in a production environment.
155
155
156
-
## Development
156
+
## Development Environment
157
157
158
158
> [!TIP]
159
159
> 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).
Our NuGet configuration points to a private feed necessary for secure builds,
181
-
and it must be committed to the repo as it is.
182
-
The easiest way to build without access to that private feed is to delete the file:
180
+
Our NuGet configuration uses a secure feed with allow-listed third party dependency packages. If your contribution requires any changes to the included NuGet packages, you must disable this secure feed.
181
+
182
+
First, run this command to prevent accidentally commiting changes to this file
183
183
184
184
```powershell
185
-
Remove-Item NuGet.Config
185
+
git update-index --skip-worktree nuget.config
186
186
```
187
187
188
-
Please be careful not to commit this change in a PR.
188
+
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.
189
189
190
-
Now you're ready to build the code.
191
-
You can do so in one of two ways:
190
+
## Build PowerShell Editor Services
191
+
Now you're ready to build the code. You can do so in one of two ways:
0 commit comments