-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"Import External Q# Package" VS Code command palette command (#2079)
This PR formalizes the "registry" md document into a JSON file, and then adds a command palette command which consumes it. This will hopefully increase discoverability of the project system, and formalizes our listing of known libraries a bit more. https://github.com/user-attachments/assets/20f8dd7b-5b53-4b03-8990-aef41d6b3da7 --------- Co-authored-by: Bill Ticehurst <[email protected]> Co-authored-by: Mine Starks <[email protected]>
- Loading branch information
1 parent
bd5a09c
commit 598fbe3
Showing
4 changed files
with
222 additions
and
115 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -24,4 +24,4 @@ | |
"src/Tests.qs", | ||
"src/Types.qs" | ||
] | ||
} | ||
} |
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,64 @@ | ||
{ | ||
"knownPackages": [ | ||
{ | ||
"name": "Signed", | ||
"description": "Defines types and functions to work with signed qubit-based integers.", | ||
"dependency": { | ||
"github": { | ||
"owner": "microsoft", | ||
"repo": "qsharp", | ||
"refs": [ | ||
{ "ref": "bd5a09c", "notes": "latest stable" }, | ||
{ "ref": "main", "notes": "nightly, unstable" } | ||
], | ||
"path": "library/signed" | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "FixedPoint", | ||
"description": "Types and functions for fixed-point arithmetic with qubits.", | ||
"dependency": { | ||
"github": { | ||
"owner": "microsoft", | ||
"repo": "qsharp", | ||
"refs": [ | ||
{ "ref": "bd5a09c", "notes": "latest stable" }, | ||
{ "ref": "main", "notes": "nightly, unstable" } | ||
], | ||
"path": "library/signed" | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "Rotations", | ||
"description": "Defines types and functions to work with rotations.", | ||
"dependency": { | ||
"github": { | ||
"owner": "microsoft", | ||
"repo": "qsharp", | ||
"refs": [ | ||
{ "ref": "bd5a09c", "notes": "latest stable" }, | ||
{ "ref": "main", "notes": "nightly, unstable" } | ||
], | ||
"path": "library/rotations" | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "Qtest", | ||
"description": "Utilities for writing and running Q# tests.", | ||
"dependency": { | ||
"github": { | ||
"owner": "microsoft", | ||
"repo": "qsharp", | ||
"refs": [ | ||
{ "ref": "bd5a09c", "notes": "latest stable" }, | ||
{ "ref": "main", "notes": "nightly, unstable" } | ||
], | ||
"path": "library/qtest" | ||
} | ||
} | ||
} | ||
] | ||
} |