├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── docs ├── README.md └── _config.yml └── src └── VisualStudio ├── CSharpTreeDumper ├── App.config ├── CSharpTreeDumper.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── CodeTalk.LanguageService.Common ├── AbstractSyntaxEntity.cs ├── CodeTalk.LanguageService.Common.csproj ├── CompilationContext.cs ├── Constants.cs ├── DefaultCodeVisitor.cs ├── Entities │ ├── AbstractAddressableEntity.cs │ ├── Block.cs │ ├── Blocks │ │ ├── CatchBlock.cs │ │ ├── ElseBlock.cs │ │ ├── ForBlock.cs │ │ ├── ForeachBlock.cs │ │ ├── IfBlock.cs │ │ ├── TryBlock.cs │ │ └── WhileBlock.cs │ ├── CodeFile.cs │ ├── Comment.cs │ ├── CompileError.cs │ ├── FileSpan.cs │ ├── FormalParameter.cs │ ├── FunctionDefinition.cs │ ├── MemberProperty.cs │ ├── NamespaceDefinition.cs │ ├── UDT │ │ ├── Class.cs │ │ ├── Enum.cs │ │ ├── InheritableUDT.cs │ │ ├── Interface.cs │ │ └── Struct.cs │ ├── UserDefinedType.cs │ └── Variable.cs ├── ICodeVisitor.cs ├── ILanguage.cs ├── ISyntaxEntity.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── packages.config ├── CodeTalk.LanguageService.Tests ├── CSharpTest.cs ├── CodeTalk.LanguageService.Tests.csproj ├── Programs │ ├── CSharp │ │ ├── BaseClasses.txt │ │ ├── BlockConstructs.txt │ │ ├── Blocks.txt │ │ ├── ClassWithComments.txt │ │ ├── ConstructorAndMethods.txt │ │ ├── DelegatesAndExterns.txt │ │ ├── Enums.txt │ │ ├── LambdaExpressions.txt │ │ ├── MultiSingleLineCommentsTest.cs │ │ ├── NestedClasses.txt │ │ ├── OverridingAndProperty.txt │ │ └── StaticClassGenericMethods.txt │ ├── Erroneous │ │ └── MissingSemiColon.txt │ └── PythonTests │ │ └── pythonClasses.py ├── Properties │ ├── AssemblyInfo.cs │ └── PexAssemblyInfo.cs ├── PythonTest.cs └── packages.config ├── CodeTalk.LanguageService ├── CodeTalk.LanguageService.csproj ├── CodeTalkLanguageServiceException.cs ├── CommentCollector.cs ├── FunctionCollector.cs ├── Language.cs ├── Languages │ ├── CSharp.cs │ ├── CSharpEntityCollector.cs │ ├── CSharpEntityCreationHelper.cs │ ├── Python.cs │ ├── PythonEntityCollector.cs │ └── PythonEntityCreationHelper.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── app.config └── packages.config ├── CodeTalk.sln ├── CodeTalk ├── CodeTalk.csproj ├── CodeTalk.ico ├── CodeTalkConfig.cs ├── Commands │ ├── CommandBase.cs │ ├── CommandConstants.cs │ ├── CommandKeyConfig.cs │ ├── Commands.cs │ ├── ICommand.cs │ ├── MoveToContextCommand.cs │ └── SkipCommentCommand.cs ├── Constants.cs ├── DefaultCodeTalkConfig.config ├── IEnvironmentOperations.cs ├── Key.snk ├── KeyboardManager.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── AudioResource.Designer.cs │ ├── AudioResource.resx │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── AboutCommand.png │ ├── CodeTalk.ico │ ├── CodeTalk.png │ ├── CodeTalkOptionsCommand.png │ ├── FunctionsListCommand.png │ ├── FunctionsListToolWindowCommand.png │ ├── GotoFunctionCommand.png │ ├── GotoFunctionToolWindowCommand.png │ ├── TalkCode.png │ ├── TalkCodePackage.ico │ ├── TalkpointToolWindowCommand.png │ ├── error.wav │ ├── errorBeep.wav │ └── errorBeep2.wav ├── TalkCodePackage.cs ├── TalkCodePackage.vsct ├── Talkpoints │ ├── ExpressionTalkpoint.cs │ ├── Talkpoint.cs │ ├── TextTalkpoint.cs │ └── ToneTalkpoint.cs ├── TextToSpeech.cs ├── UI │ ├── About.cs │ ├── AboutCommand.cs │ ├── AboutControl.xaml │ ├── AboutControl.xaml.cs │ ├── CodeTalkOptions.cs │ ├── CodeTalkOptionsCommand.cs │ ├── CodeTalkOptionsControl.xaml │ ├── CodeTalkOptionsControl.xaml.cs │ ├── FunctionsListToolWindow.cs │ ├── FunctionsListToolWindowCommand.cs │ ├── FunctionsListToolWindowControl.xaml │ ├── FunctionsListToolWindowControl.xaml.cs │ ├── GetSummaryToolWindow.cs │ ├── GetSummaryToolWindowCommand.cs │ ├── GetSummaryToolWindowControl.xaml │ ├── GetSummaryToolWindowControl.xaml.cs │ ├── Resources │ │ ├── GetSummaryToolWindowCommand.png │ │ └── TalkpointToolWindowCommand.png │ ├── TalkpointToolWindow.cs │ ├── TalkpointToolWindowCommand.cs │ ├── TalkpointToolWindowControl.xaml │ ├── TalkpointToolWindowControl.xaml.cs │ └── UIConstants.cs ├── VSOperations.cs ├── VSPackage.resx ├── app.config ├── index.html ├── packages.config ├── res │ ├── class.png │ ├── comment.png │ ├── csharp.png │ ├── default.png │ ├── delegate.png │ ├── enum.png │ ├── error.png │ ├── function.png │ ├── interface.png │ ├── namespace.png │ ├── property.png │ ├── python.png │ └── struct.png ├── source.extension.vsixmanifest └── stylesheet.css ├── NuGet.Config ├── ProjectKeyPair.snk └── ProjectPublicKey.snk /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /src/VisualStudio/CSharpTreeDumper/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CSharpTreeDumper/App.config -------------------------------------------------------------------------------- /src/VisualStudio/CSharpTreeDumper/CSharpTreeDumper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CSharpTreeDumper/CSharpTreeDumper.csproj -------------------------------------------------------------------------------- /src/VisualStudio/CSharpTreeDumper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CSharpTreeDumper/Program.cs -------------------------------------------------------------------------------- /src/VisualStudio/CSharpTreeDumper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CSharpTreeDumper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VisualStudio/CSharpTreeDumper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CSharpTreeDumper/packages.config -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/AbstractSyntaxEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/AbstractSyntaxEntity.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/CodeTalk.LanguageService.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/CodeTalk.LanguageService.Common.csproj -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/CompilationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/CompilationContext.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Constants.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/DefaultCodeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/DefaultCodeVisitor.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/AbstractAddressableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/AbstractAddressableEntity.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Block.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/CatchBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/CatchBlock.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/ElseBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/ElseBlock.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/ForBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/ForBlock.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/ForeachBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/ForeachBlock.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/IfBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/IfBlock.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/TryBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/TryBlock.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/WhileBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Blocks/WhileBlock.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/CodeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/CodeFile.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Comment.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/CompileError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/CompileError.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/FileSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/FileSpan.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/FormalParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/FormalParameter.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/FunctionDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/FunctionDefinition.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/MemberProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/MemberProperty.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/NamespaceDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/NamespaceDefinition.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/UDT/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/UDT/Class.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/UDT/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/UDT/Enum.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/UDT/InheritableUDT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/UDT/InheritableUDT.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/UDT/Interface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/UDT/Interface.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/UDT/Struct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/UDT/Struct.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/UserDefinedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/UserDefinedType.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Entities/Variable.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/ICodeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/ICodeVisitor.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/ILanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/ILanguage.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/ISyntaxEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/ISyntaxEntity.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/Properties/Resources.resx -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Common/packages.config -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/CSharpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/CSharpTest.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/CodeTalk.LanguageService.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/CodeTalk.LanguageService.Tests.csproj -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/BaseClasses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/BaseClasses.txt -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/BlockConstructs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/BlockConstructs.txt -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/Blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/Blocks.txt -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/ClassWithComments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/ClassWithComments.txt -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/ConstructorAndMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/ConstructorAndMethods.txt -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/DelegatesAndExterns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/DelegatesAndExterns.txt -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/Enums.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/Enums.txt -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/LambdaExpressions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/LambdaExpressions.txt -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/MultiSingleLineCommentsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/MultiSingleLineCommentsTest.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/NestedClasses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/NestedClasses.txt -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/OverridingAndProperty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/OverridingAndProperty.txt -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/StaticClassGenericMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/CSharp/StaticClassGenericMethods.txt -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/Erroneous/MissingSemiColon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/Erroneous/MissingSemiColon.txt -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/PythonTests/pythonClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Programs/PythonTests/pythonClasses.py -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/Properties/PexAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/Properties/PexAssemblyInfo.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/PythonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/PythonTest.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService.Tests/packages.config -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/CodeTalk.LanguageService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/CodeTalk.LanguageService.csproj -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/CodeTalkLanguageServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/CodeTalkLanguageServiceException.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/CommentCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/CommentCollector.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/FunctionCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/FunctionCollector.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/Language.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/Languages/CSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/Languages/CSharp.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/Languages/CSharpEntityCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/Languages/CSharpEntityCollector.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/Languages/CSharpEntityCreationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/Languages/CSharpEntityCreationHelper.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/Languages/Python.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/Languages/Python.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/Languages/PythonEntityCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/Languages/PythonEntityCollector.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/Languages/PythonEntityCreationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/Languages/PythonEntityCreationHelper.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/Properties/Resources.resx -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/app.config -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.LanguageService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.LanguageService/packages.config -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk.sln -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/CodeTalk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/CodeTalk.csproj -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/CodeTalk.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/CodeTalk.ico -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/CodeTalkConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/CodeTalkConfig.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Commands/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Commands/CommandBase.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Commands/CommandConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Commands/CommandConstants.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Commands/CommandKeyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Commands/CommandKeyConfig.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Commands/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Commands/Commands.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Commands/ICommand.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Commands/MoveToContextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Commands/MoveToContextCommand.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Commands/SkipCommentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Commands/SkipCommentCommand.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Constants.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/DefaultCodeTalkConfig.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/DefaultCodeTalkConfig.config -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/IEnvironmentOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/IEnvironmentOperations.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Key.snk -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/KeyboardManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/KeyboardManager.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Properties/AudioResource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Properties/AudioResource.Designer.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Properties/AudioResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Properties/AudioResource.resx -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Properties/Resources.resx -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/AboutCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/AboutCommand.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/CodeTalk.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/CodeTalk.ico -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/CodeTalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/CodeTalk.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/CodeTalkOptionsCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/CodeTalkOptionsCommand.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/FunctionsListCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/FunctionsListCommand.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/FunctionsListToolWindowCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/FunctionsListToolWindowCommand.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/GotoFunctionCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/GotoFunctionCommand.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/GotoFunctionToolWindowCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/GotoFunctionToolWindowCommand.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/TalkCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/TalkCode.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/TalkCodePackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/TalkCodePackage.ico -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/TalkpointToolWindowCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/TalkpointToolWindowCommand.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/error.wav -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/errorBeep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/errorBeep.wav -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Resources/errorBeep2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Resources/errorBeep2.wav -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/TalkCodePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/TalkCodePackage.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/TalkCodePackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/TalkCodePackage.vsct -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Talkpoints/ExpressionTalkpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Talkpoints/ExpressionTalkpoint.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Talkpoints/Talkpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Talkpoints/Talkpoint.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Talkpoints/TextTalkpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Talkpoints/TextTalkpoint.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/Talkpoints/ToneTalkpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/Talkpoints/ToneTalkpoint.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/TextToSpeech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/TextToSpeech.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/About.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/AboutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/AboutCommand.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/AboutControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/AboutControl.xaml -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/AboutControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/AboutControl.xaml.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/CodeTalkOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/CodeTalkOptions.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/CodeTalkOptionsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/CodeTalkOptionsCommand.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/CodeTalkOptionsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/CodeTalkOptionsControl.xaml -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/CodeTalkOptionsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/CodeTalkOptionsControl.xaml.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/FunctionsListToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/FunctionsListToolWindow.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/FunctionsListToolWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/FunctionsListToolWindowCommand.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/FunctionsListToolWindowControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/FunctionsListToolWindowControl.xaml -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/FunctionsListToolWindowControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/FunctionsListToolWindowControl.xaml.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/GetSummaryToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/GetSummaryToolWindow.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/GetSummaryToolWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/GetSummaryToolWindowCommand.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/GetSummaryToolWindowControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/GetSummaryToolWindowControl.xaml -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/GetSummaryToolWindowControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/GetSummaryToolWindowControl.xaml.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/Resources/GetSummaryToolWindowCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/Resources/GetSummaryToolWindowCommand.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/Resources/TalkpointToolWindowCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/Resources/TalkpointToolWindowCommand.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/TalkpointToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/TalkpointToolWindow.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/TalkpointToolWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/TalkpointToolWindowCommand.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/TalkpointToolWindowControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/TalkpointToolWindowControl.xaml -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/TalkpointToolWindowControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/TalkpointToolWindowControl.xaml.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/UI/UIConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/UI/UIConstants.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/VSOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/VSOperations.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/VSPackage.resx -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/app.config -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/index.html -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/packages.config -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/class.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/comment.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/csharp.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/default.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/delegate.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/enum.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/error.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/function.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/interface.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/namespace.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/property.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/python.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/res/struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/res/struct.png -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/VisualStudio/CodeTalk/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/CodeTalk/stylesheet.css -------------------------------------------------------------------------------- /src/VisualStudio/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/NuGet.Config -------------------------------------------------------------------------------- /src/VisualStudio/ProjectKeyPair.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/ProjectKeyPair.snk -------------------------------------------------------------------------------- /src/VisualStudio/ProjectPublicKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodeTalk/HEAD/src/VisualStudio/ProjectPublicKey.snk --------------------------------------------------------------------------------