QuantumKatas/QuantumKatas.code-workspace

95 строки
1.8 KiB
Plaintext

{
"extensions": {
"recommendations": [
"ms-vscode.csharp",
"quantum.quantum-devkit-vscode"
]
},
"folders": [
{
"path": "BasicGates",
"name": "1. Basic Gates"
},
{
"path": "Superposition",
"name": "2. Superposition"
},
{
"path": "Measurements",
"name": "3. Measurements"
},
{
"path": "JointMeasurements",
"name": "4. Joint Measurements"
},
{
"path": "Teleportation",
"name": "5. Teleportation"
},
{
"path": "SuperdenseCoding",
"name": "6. Superdense Coding"
},
{
"path": "DeutschJozsaAlgorithm",
"name": "7. Deutsch–Jozsa Algorithm"
},
{
"path": "SimonsAlgorithm",
"name": "8. Simon's Algorithm"
},
{
"path": "GroversAlgorithm",
"name": "9. Grover's Search Algorithm"
},
{
"path": "SolveSATWithGrover",
"name": "10. Solving SAT problems using Grover's algorithm"
},
{
"path": "PhaseEstimation",
"name": "11. Phase Estimation"
},
{
"path": "QEC_BitFlipCode",
"name": "12. QEC: Bit-flip Code"
},
{
"path": "UnitaryPatterns",
"name": "13*. Unitary Patterns"
},
],
"settings": {
"csharp.suppressDotnetRestoreNotification": true,
"files.exclude": {
// Make sure we hide source control files that are normally
// hidden by default..
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
// Hide the answers to the katas.
"**/ReferenceImplementation.qs": true,
// Hide the implementation of the kata tests.
"**/Tests.qs": true,
// NB: this will hide ALL C# files.
"**/*.cs": true,
"**/*.csproj": true,
// Hide JSON files which are part of the test harness
"**/*.json": true,
// Hide VS Code and VS2017 metadata.
"**/.vscode": true,
"**/*.sln": true,
// Hide build artifacts.
"**/bin": true,
"**/obj": true,
"**/.vs": true
}
}
}