-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
package-source-credentials in system or user nuget.config (#678)
support reading package-source-credentials from system or user nuget.config file
- Loading branch information
Showing
17 changed files
with
248 additions
and
131 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
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 |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
exclude: "^.git$" | ||
repos: | ||
- repo: https://github.com/JoC0de/pre-commit-prettier | ||
rev: "a6a5f3906583670deecd1c24ffd0db574dbd9a06" | ||
rev: "v3.4.2" | ||
hooks: | ||
- id: prettier | ||
additional_dependencies: | ||
- prettier@3.3.3 | ||
- prettier@3.4.2 | ||
- "@prettier/[email protected]" | ||
- "prettier-plugin-ini@1.2.0" | ||
- "prettier-plugin-ini@1.3.0" | ||
args: | ||
- --plugin=prettier-plugin-ini | ||
files: Directory\.Build\.props$|(\.(json|xml|html|config|csproj|xlf|DotSettings|yaml|yml|js|md|xrml|xaml|css|editorconfig)$) | ||
|
@@ -30,9 +30,9 @@ repos: | |
files: \.cs$ | ||
pass_filenames: true | ||
require_serial: true | ||
stages: [commit, merge-commit] | ||
stages: [pre-commit, pre-merge-commit] | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.6.0 | ||
rev: v5.0.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
exclude: \.(pdf|meta|prefab|shader|controller|asset|cginc|mat|unity|anim|shadergraph)$ | ||
|
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
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages /> | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<packages /> |
Oops, something went wrong.