forked from MicrosoftDocs/visualstudio-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoc.yml
1492 lines (1492 loc) · 66 KB
/
toc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- name: Visual Studio IDE documentation
href: ide/index.yml
pdf_name: Visual Studio documentation
- name: Overview
expanded: true
items:
- name: About Visual Studio
href: get-started/visual-studio-ide.md
- name: About the code editor
href: get-started/tutorial-editor.md
- name: About projects and solutions
href: get-started/tutorial-projects-solutions.md
- name: More Visual Studio features
href: ide/advanced-feature-overview.md
- name: Installation
items:
- name: Install Visual Studio
href: install/install-visual-studio.md
- name: Install offline
items:
- name: Create an offline installation of Visual Studio
href: install/create-an-offline-installation-of-visual-studio.md
- name: Install required certificates for offline installation
href: install/install-certificates-for-visual-studio-offline.md
- name: Install Visual Studio versions side-by-side
href: install/install-visual-studio-versions-side-by-side.md
- name: Select installation locations
href: install/change-installation-locations.md
- name: Import or export installation configurations
href: install/import-export-installation-configurations.md
- name: Troubleshoot installation issues
href: install/troubleshooting-installation-issues.md
- name: Update Visual Studio
href: install/update-visual-studio.md
- name: Modify Visual Studio
href: install/modify-visual-studio.md
- name: Repair Visual Studio
href: install/repair-visual-studio.md
- name: Uninstall Visual Studio
href: install/uninstall-visual-studio.md
- name: Visual Studio administrator guide
items:
- name: Overview
href: install/visual-studio-administrator-guide.md
- name: Visual Studio enterprise guide
href: install/visual-studio-enterprise-guide.md
- name: Use the command line
items:
- name: Use command-line parameters to install Visual Studio
href: install/use-command-line-parameters-to-install-visual-studio.md
- name: Command-line parameter examples
href: install/command-line-parameter-examples.md
- name: Install on a network
items:
- name: Create a network-based installation of Visual Studio
href: install/create-a-network-installation-of-visual-studio.md
- name: Network considerations
items:
- name: Install and use Visual Studio behind a firewall or proxy server
href: install/install-and-use-visual-studio-behind-a-firewall-or-proxy-server.md
- name: Troubleshoot network errors when you install or use Visual Studio
href: install/troubleshooting-network-related-errors-in-visual-studio.md
- name: Deploy in an enterprise
items:
- name: Automate Visual Studio installation with a response file
href: install/automated-installation-with-response-file.md
- name: Automatically apply product keys when deploying Visual Studio
href: install/automatically-apply-product-keys-when-deploying-visual-studio.md
- name: Set defaults for enterprise deployments of Visual Studio
href: install/set-defaults-for-enterprise-deployments.md
- name: Deploy Help Viewer
items:
- name: Help Viewer Administrator Guide
href: help-viewer/administrator-guide.md
- name: Command-Line Arguments for the Help Content Manager
href: help-viewer/command-line-arguments.md
- name: Help Content Manager Overrides
href: help-viewer/behavior-overrides.md
- name: Manage & update installations
items:
- name: Tools for detecting and managing Visual Studio instances
href: install/tools-for-managing-visual-studio-instances.md
- name: Update a network-based installation of Visual Studio
href: install/update-a-network-installation-of-visual-studio.md
- name: Update Visual Studio while on a servicing baseline
href: install/update-servicing-baseline.md
- name: Update Visual Studio using a minimal offline layout
href: install/update-minimal-layout.md
- name: Control updates to Visual Studio deployments
href: install/controlling-updates-to-visual-studio-deployments.md
- name: Manage package payload changes
href: install/changed-payloads.md
- name: Disable or move the package cache
href: install/disable-or-move-the-package-cache.md
- name: Manage subscriptions
items:
- name: "Visual Studio subscriptions: Administrator overview"
href: /visualstudio/subscriptions/admin-responsibilities
- name: Reference
items:
- name: Visual Studio workload and component IDs
items:
- name: Overview
displayName: Workload and component IDs
href: install/workload-and-component-ids.md
- name: Visual Studio Enterprise
href: install/workload-component-id-vs-enterprise.md
- name: Visual Studio Professional
href: install/workload-component-id-vs-professional.md
- name: Visual Studio Community
href: install/workload-component-id-vs-community.md
- name: Visual Studio Team Explorer
href: install/workload-component-id-vs-team-explorer.md
- name: Visual Studio Desktop Express
href: install/workload-component-id-vs-express.md
- name: Visual Studio Build Tools
href: install/workload-component-id-vs-build-tools.md
- name: Visual Studio Test Agent
href: install/workload-component-id-vs-test-agent.md
- name: Visual Studio Test Controller
href: install/workload-component-id-vs-test-controller.md
- name: Visual Studio Test Professional
href: install/workload-component-id-vs-test-professional.md
- name: Visual Studio Feedback Client
href: install/workload-component-id-vs-feedback-client.md
- name: Visual Studio build numbers and release dates
href: install/visual-studio-build-numbers-and-release-dates.md
- name: Use Visual Studio from an Azure virtual machine
href: install/using-visual-studio-vm.md
- name: Use Visual Studio on an ARM device
href: install/visual-studio-on-arm-devices.md
- name: Containers
items:
- name: Install Build Tools into a Container
href: install/build-tools-container.md
- name: Advanced Example for Containers
href: install/advanced-build-tools-container.md
- name: Known Issues for Containers
href: install/build-tools-container-issues.md
- name: Install Help Viewer
href: help-viewer/installation.md
- name: Quickstarts
items:
- name: Visual Studio orientation
displayName: Feature tour
href: ide/quickstart-ide-orientation.md
- name: "C++: Create a console app"
href: /cpp/get-started/tutorial-console-cpp
- name: "Python: Create a web app"
href: ide/quickstart-python.md
- name: "Node.js: Create a web app"
href: ide/quickstart-nodejs.md
- name: "F#: Create a web service"
href: ide/quickstart-fsharp.md
- name: "C#: Create a web app"
href: ide/quickstart-aspnet-core.md
- name: "C#: Create a console app"
href: ide/quickstart-csharp-console.md
- name: "Visual Basic: Create a console app"
href: ide/quickstart-visual-basic-console.md
- name: Tutorials
items:
- name: C#
href: get-started/csharp/
- name: F#
href: /dotnet/fsharp/
- name: Visual Basic
href: get-started/visual-basic/
- name: C++
href: /cpp/get-started/tutorial-console-cpp
- name: Python
href: python/
- name: Node.js
href: javascript/
- name: Develop
items:
- name: Organize and edit code
href: ide/index-writing-code.yml
- name: Move around in the IDE
href: ide/how-to-move-around-in-the-visual-studio-ide.md
- name: Solutions and projects
items:
- name: Work with solutions and projects
href: ide/solutions-and-projects-in-visual-studio.md
- name: Create a new project
href: ide/create-new-project.md
- name: Create solutions and projects
href: ide/creating-solutions-and-projects.md
- name: Open a project from a repo
href: get-started/tutorial-open-project-from-repo.md
- name: Port, migrate, and upgrade projects
href: porting/port-migrate-and-upgrade-visual-studio-projects.md
- name: Manage project and solution properties
href: ide/managing-project-and-solution-properties.md
- name: Project references
items:
- name: Manage references in a project
href: ide/managing-references-in-a-project.md
- name: Add or remove references by using the Reference Manager
href: ide/how-to-add-or-remove-references-by-using-the-reference-manager.md
- name: Add or remove imported namespaces (Visual Basic)
href: ide/how-to-add-or-remove-imported-namespaces-visual-basic.md
- name: Troubleshoot broken references
href: ide/troubleshooting-broken-references.md
- name: Manage application resources (.NET)
href: ide/managing-application-resources-dotnet.md
- name: Application settings (.NET)
items:
- name: Manage application settings (.NET)
href: ide/managing-application-settings-dotnet.md
- name: Add an app config file to a C# project
href: ide/how-to-add-app-config-file.md
- name: Sign manifests
items:
- name: Manage assembly and manifest signing
href: ide/managing-assembly-and-manifest-signing.md
- name: Sign application and deployment manifests
href: ide/how-to-sign-application-and-deployment-manifests.md
- name: Specify an application icon (Visual Basic, C#)
href: ide/how-to-specify-an-application-icon-visual-basic-csharp.md
- name: Target a framework
href: ide/visual-studio-multi-targeting-overview.md
- name: Create templates
items:
- name: Create project and item templates
href: ide/creating-project-and-item-templates.md
- name: Add tags to a template
href: ide/template-tags.md
- name: Create project templates
href: ide/how-to-create-project-templates.md
- name: Create multi-project templates
href: ide/how-to-create-multi-project-templates.md
- name: Create item templates
href: ide/how-to-create-item-templates.md
- name: Create multi-file item templates
href: ide/how-to-create-multi-file-item-templates.md
- name: Create web templates
href: ide/how-to-manually-create-web-templates.md
- name: Troubleshoot templates
href: ide/how-to-troubleshoot-templates.md
- name: Locate project and item templates
href: ide/how-to-locate-and-organize-project-and-item-templates.md
- name: Customize templates
items:
- name: Customize project and item templates
href: ide/customizing-project-and-item-templates.md
- name: Update existing templates
href: ide/how-to-update-existing-templates.md
- name: Substitute parameters in a template
href: ide/how-to-substitute-parameters-in-a-template.md
- name: Template parameters
href: ide/template-parameters.md
- name: 64-bit support
href: ide/visual-studio-ide-64-bit-support.md
- name: Develop without projects or solutions
items:
- name: "How to: Develop without a project"
displayName: Open folder
href: ide/develop-code-in-visual-studio-without-projects-or-solutions.md
- name: Customize build and debug tasks
displayName: makefile tasks.vs.json
href: ide/customize-build-and-debug-tasks-in-visual-studio.md
- name: Develop with Codespaces (Preview)
items:
- name: Overview
href: ide/codespaces/codespaces-overview.md
- name: Use Visual Studio with a codespace
href: ide/codespaces/use-visual-studio-with-codespaces.md
- name: Customize a codespace
href: ide/codespaces/customize-codespaces.md
- name: Supported Visual Studio features
href: ide/codespaces/supported-features-codespaces.md
- name: Connect to a project or repo
displayName: Azure DevOps VSTS GitHub
href: ide/connect-team-project.md
- name: New Git experience in Visual Studio (Preview)
href: ide/git-with-visual-studio.md
- name: Editor
items:
- name: Use the editor
href: ide/writing-code-in-the-code-and-text-editor.md
- name: Find and replace
items:
- name: Find and replace text
href: ide/finding-and-replacing-text.md
- name: Use regular expressions
dispayName: RegEx
href: ide/using-regular-expressions-in-visual-studio.md
- name: Find-Command box
href: ide/find-command-box.md
- name: Find in Files
href: ide/find-in-files.md
- name: Replace in Files
href: ide/replace-in-files.md
- name: Encodings
items:
- name: Encodings and line breaks
href: ide/encodings-and-line-breaks.md
- name: Save and open files with encoding
href: ide/how-to-save-and-open-files-with-encoding.md
- name: Outlining
displayName: Expand and collapse
href: ide/outlining.md
- name: Code generation and refactoring
items:
- name: Generate and fix code
href: ide/code-generation-in-visual-studio.md
- name: Code snippets
items:
- name: Use code snippets
href: ide/code-snippets.md
- name: C# code snippets reference
href: ide/visual-csharp-code-snippets.md
- name: C++ code snippets reference
href: ide/visual-cpp-code-snippets.md
- name: Insert XML comments
href: ide/reference/generate-xml-documentation-comments.md
- name: Use surround-with code snippets
href: ide/how-to-use-surround-with-code-snippets.md
- name: Best practices
href: ide/best-practices-for-using-code-snippets.md
- name: Create code snippets
items:
- name: "Walkthrough: Create a code snippet"
href: ide/walkthrough-creating-a-code-snippet.md
- name: Distribute code snippets
href: ide/how-to-distribute-code-snippets.md
- name: Code snippet functions
href: ide/code-snippet-functions.md
- name: Code snippets schema reference
href: ide/code-snippets-schema-reference.md
- name: Troubleshoot snippets
href: ide/troubleshooting-snippets.md
- name: Quick Actions
href: ide/quick-actions.md
displayName: light bulb screwdriver suggestions
items:
- name: Common Quick Actions
href: ide/common-quick-actions.md
- name: Generate class/type
href: ide/reference/generate-class-type.md
- name: Generate method
href: ide/reference/generate-method.md
- name: Generate field/property/local
href: ide/reference/generate-field-property-local.md
- name: Generate Comparison Operators for IComparable
href: ide/reference/generate-comparison-operators.md
- name: Generate constructor
href: ide/reference/generate-constructor.md
- name: Generate deconstructor
href: ide/reference/generate-deconstructor.md
- name: Generate IEquatable operators for structs
href: ide/reference/generate-equals-structs.md
- name: Add file header
href: ide/reference/add-file-header.md
- name: Add debugger display attribute
href: ide/reference/add-debugger-display-attribute.md
- name: Add explicit cast
href: ide/reference/add-explicit-cast.md
- name: Add parameter to method
href: ide/reference/add-parameter.md
- name: Generate parameter
href: ide/reference/generate-parameter.md
- name: Generate private field from constructor
href: ide/reference/generate-private-field-from-constructor.md
- name: Generate override
href: ide/reference/generate-override.md
- name: Generate Equals and GetHashCode method overrides
href: ide/reference/generate-equals-gethashcode-methods.md
- name: Generate usings
href: ide/reference/generate-usings.md
- name: Implement abstract class
href: ide/reference/implement-abstract-class.md
- name: Implement interface
href: ide/reference/implement-interface.md
- name: Introduce local variable
href: ide/reference/introduce-local-variable.md
- name: Refactor code
items:
- name: Overview
displayName: refactoring
href: ide/refactoring-in-visual-studio.md
- name: Add null checks for all parameters
href: ide\reference\add-null-checks-for-parameters.md
- name: Change method signature
href: ide/reference/change-method-signature.md
- name: Convert anonymous type to class
href: ide/reference/convert-anonymous-type-to-class.md
- name: Convert anonymous type to tuple
href: ide/reference/convert-anonymous-type-to-tuple.md
- name: Convert between auto property and full property
href: ide/reference/convert-between-auto-property-and-full-property.md
- name: Convert between for loop and foreach statement
href: ide/reference/convert-for-loop-to-foreach.md
- name: Convert between Get method and property
href: ide/reference/convert-get-method-to-property.md
- name: Convert between regular string and verbatim string literals
href: ide/reference/convert-between-regular-string-verbatim-string.md
- name: Convert local function to method
href: ide/reference/convert-local-function-method.md
- name: Convert foreach loop to LINQ
href: ide/reference/convert-foreach-linq.md
- name: Convert if statement to switch statement or switch expression
href: ide/reference/convert-if-statement-to-switch-statement-or-switch-expression.md
- name: Convert LINQ query to foreach statement
href: ide/reference/convert-linq-to-foreach.md
- name: Convert typeof to nameof
href: ide/reference/convert-typeof-to-nameof.md
- name: Convert switch statement to switch expression
href: ide/reference/convert-switch-statement-to-switch-expression.md
- name: DateTime and TimeSpan completion
href: ide/reference/datetime-timespan-completion.md
- name: Encapsulate field
href: ide/reference/encapsulate-field.md
- name: Extract interface
href: ide/reference/extract-interface.md
- name: Extract method
href: ide/reference/extract-method.md
- name: Extract local function
href: ide/reference/extract-local-function.md
- name: Inline temporary variable
href: ide/reference/inline-temporary-variable.md
- name: IntelliSense completion unimported types and extension methods
href: ide/reference/intellisense-completion-unimported-types-extension-methods.md
- name: Invert conditional expressions and logical operations
href: ide/reference/invert-conditional-logical.md
- name: Invert if statement
href: ide/reference/invert-if-statement.md
- name: Static local function refactor options
href: ide/reference/static-local-function-refactor-options.md
- name: Make member static
href: ide/reference/make-member-static.md
- name: Move declaration near reference
href: ide/reference/move-declaration-near-reference.md
- name: Move type to matching file
href: ide/reference/move-type-to-matching-file.md
- name: Move type to namespace
href: ide/reference/move-type-to-namespace.md
- name: Pull member up
href: ide/reference/pull-members-up.md
- name: Regex completion through IntelliSense
href: ide/reference/regex-completion-through-intellisense.md
- name: Remove unreachable code
href: ide/reference/remove-unreachable-code.md
- name: Rename
href: ide/reference/rename.md
- name: Simplify conditional expression
href: ide/reference/simplify-conditional-expression.md
- name: Simplify LINQ expression
href: ide/reference/simplify-linq-expression.md
- name: Simplify string interpolation
href: ide/reference/simplify-string-interpolation.md
- name: Sort usings
href: ide/reference/sort-usings.md
- name: Split or merge if statements
href: ide/reference/split-or-merge-if-statement.md
- name: Sync namespace and folder name
href: ide/reference/sync-namespace-and-folder-name.md
- name: Synchronize type and filename
href: ide/reference/sync-type-and-file.md
- name: Use explicit type
href: ide/reference/convert-var-to-explicit-type.md
- name: Use lambda expression or block body
href: ide/reference/use-block-body-lambda.md
- name: Unused value assignments, variables, and parameters
href: ide/reference/unused-values-parameters.md
- name: Wrap, indent, and align refactorings
href: ide/reference/wrap-indent-align-refactorings.md
- name: "Walkthrough: Generate code from usage"
href: ide/walkthrough-test-first-support-with-the-generate-from-usage-feature.md
- name: IntelliSense
items:
- name: Use IntelliSense
href: ide/using-intellisense.md
- name: Visual Basic IntelliSense
href: ide/visual-basic-specific-intellisense.md
- name: C# IntelliSense
href: ide/visual-csharp-intellisense.md
- name: JavaScript IntelliSense
href: ide/javascript-intellisense.md
- name: Visual C++ IntelliSense
href: ide/visual-cpp-intellisense.md
- name: Configure a C++ project for IntelliSense
href: ide/visual-cpp-intellisense-configuration.md
- name: Move around in code
items:
- name: Navigate your code
href: ide/navigating-code.md
- name: Find references in your code
href: ide/finding-references.md
- name: View type and member definitions
items:
- name: Go To Definition and Peek Definition
href: ide/go-to-and-peek-definition.md
- name: View and edit code by using Peek Definition
href: ide/how-to-view-and-edit-code-by-using-peek-definition-alt-plus-f12.md
- name: Find code using Go To commands
href: ide/go-to.md
- name: Customize the editor
items:
- name: Change text case
href: ide/how-to-change-text-case-in-the-editor.md
- name: Manage editor modes
href: ide/how-to-manage-editor-modes.md
- name: Manage editor windows
href: ide/how-to-manage-editor-windows.md
- name: Change fonts and colors
href: ide/reference/how-to-change-fonts-and-colors-in-the-editor.md
- name: Manage word wrap
href: ide/reference/how-to-manage-word-wrap-in-the-editor.md
- name: Display line numbers
href: ide/reference/how-to-display-line-numbers-in-the-editor.md
- name: Display URLs as links
href: ide/reference/how-to-display-urls-as-links-in-the-editor.md
- name: Set language-specific editor options
href: ide/reference/setting-language-specific-editor-options.md
- name: Code style
items:
- name: Code style preferences
href: ./ide/code-styles-and-code-cleanup.md
- name: Use EditorConfig files for code style
displayName: Configure code style analyzers
href: ide/create-portable-custom-editor-options.md
- name: C++ EditorConfig formatting conventions
href: ide/cpp-editorconfig-properties.md
- name: .NET coding conventions
href: /dotnet/fundamentals/code-analysis/code-style-rule-options
- name: Customize the scroll bar
href: ide/how-to-track-your-code-by-customizing-the-scrollbar.md
- name: Set bookmarks in code
href: ide/setting-bookmarks-in-code.md
- name: CodeLens
items:
- name: Find code history with CodeLens
href: ide/find-code-changes-and-other-history-with-codelens.md
- name: CodeIndex Command
href: ide/codeindex-command.md
- name: Editor support for other languages
href: ide/adding-visual-studio-editor-support-for-other-languages.md
- name: Code views
items:
- name: View the structure of code
href: ide/viewing-the-structure-of-code.md
- name: Class View and Object Browser icons
href: ide/class-view-and-object-browser-icons.md
- name: Use the Task List
href: ide/using-the-task-list.md
- name: Class Designer
items:
- name: Design classes in Class Designer
href: ide/class-designer/designing-and-viewing-classes-and-types.md
- name: Add class diagrams to projects
href: ide/class-designer/how-to-add-class-diagrams-to-projects.md
- name: Customize class diagrams
href: ide/class-designer/how-to-customize-class-diagrams.md
- name: Copy class diagram elements to a Microsoft Office document
href: ide/class-designer/how-to-copy-class-diagram-elements-to-a-microsoft-office-document.md
- name: Export class diagrams as images
href: ide/class-designer/how-to-export-class-diagrams-as-images.md
- name: Print class diagrams
href: ide/class-designer/how-to-print-class-diagrams.md
- name: Add comments to class diagrams
href: ide/class-designer/how-to-add-comments-to-class-diagrams.md
- name: Create classes and types
items:
- name: Create types
href: ide/class-designer/how-to-create-types.md
- name: Create inheritance between types
href: ide/class-designer/how-to-create-inheritance-between-types.md
- name: Create associations between types
href: ide/class-designer/how-to-create-associations-between-types.md
- name: Visualize a collection association
href: ide/class-designer/how-to-visualize-a-collection-association.md
- name: Create and configure type members
href: ide/class-designer/creating-and-configuring-type-members.md
- name: View types and relationships
items:
- name: View existing types
href: ide/class-designer/how-to-view-existing-types.md
- name: View inheritance between types
href: ide/class-designer/how-to-view-inheritance-between-types.md
- name: Member notation and association notation
href: ide/class-designer/how-to-change-between-member-notation-and-association-notation.md
- name: Refactor classes and types
href: ide/class-designer/refactoring-classes-and-types.md
- name: Implement an interface
href: ide/class-designer/how-to-implement-an-interface.md
- name: Split a class into partial classes
href: ide/class-designer/how-to-split-a-class-into-partial-classes.md
- name: Create a nullable type
href: ide/class-designer/how-to-create-a-nullable-type.md
- name: C++ in Class Designer
items:
- name: Work with Visual C++ code
href: ide/class-designer/working-with-visual-cpp-code.md
- name: C++ classes
href: ide/class-designer/visual-cpp-classes.md
- name: C++ structures
href: ide/class-designer/visual-cpp-structures.md
- name: C++ enumerations
href: ide/class-designer/visual-cpp-enumerations.md
- name: C++ typedefs
href: ide/class-designer/visual-cpp-typedefs.md
- name: Keyboard and mouse shortcuts
href: ide/class-designer/keyboard-and-mouse-shortcuts-in-the-class-diagram-and-class-details-window.md
- name: Class Designer errors
href: ide/class-designer/additional-information-about-errors.md
- name: Improve your code
href: ide/find-and-fix-code-errors.md
- name: Tips and tricks
items:
- name: Productivity features
href: ide/productivity-features.md
- name: Productivity shortcuts
href: ide/productivity-shortcuts.md
- name: Tips for C# developers
displayName: ReSharper
href: ide/csharp-developer-productivity.md
- name: Customize keyboard shortcuts
href: ide/identifying-and-customizing-keyboard-shortcuts-in-visual-studio.md
- name: Use the keyboard exclusively
displayName: accessibility
href: ide/reference/how-to-use-the-keyboard-exclusively.md
- name: Work with...
items:
- name: Windows Forms apps
items:
- name: Windows Forms Designer overview
href: designers/windows-forms-designer-overview.md
- name: Get started with Windows Forms Designer
href: designers/walkthrough-windows-forms-designer.md
- name: Arrange controls >>
href: /dotnet/framework/winforms/controls/arranging-controls-on-windows-forms
- name: Create a data-bound control >>
href: /dotnet/framework/winforms/how-to-create-a-simple-bound-control-on-a-windows-form
- name: Create custom controls >>
href: /dotnet/framework/winforms/controls/developing-windows-forms-controls-at-design-time
- name: Disable DPI awareness for Windows Forms Designer
href: designers/disable-dpi-awareness.md
- name: Reference
items:
- name: System.Windows.Forms API >>
href: /dotnet/api/system.windows.forms
- name: Tutorials
items:
- name: "Tutorial 1: Create a picture viewer (C#)"
items:
- name: Overview
displayName: Tutorial 1 Picture viewer
href: ide/tutorial-1-create-a-picture-viewer.md
- name: "Step 1: Create a Windows Forms App project"
href: ide/step-1-create-a-windows-forms-application-project.md
- name: "Step 2: Run your app"
href: ide/step-2-run-your-program.md
- name: "Step 3: Set your form properties"
href: ide/step-3-set-your-form-properties.md
- name: "Step 4: Lay out your form with a TableLayoutPanel control"
href: ide/step-4-lay-out-your-form-with-a-tablelayoutpanel-control.md
- name: "Step 5: Add controls to your form"
href: ide/step-5-add-controls-to-your-form.md
- name: "Step 6: Name your button controls"
href: ide/step-6-name-your-button-controls.md
- name: "Step 7: Add dialog components to your form"
href: ide/step-7-add-dialog-components-to-your-form.md
- name: "Step 8: Write code for the Show a Picture button event handler"
href: ide/step-8-write-code-for-the-show-a-picture-button-event-handler.md
- name: "Step 9: Review, comment, and test your code"
href: ide/step-9-review-comment-and-test-your-code.md
- name: "Step 10: Write code for additional buttons and a check box"
href: ide/step-10-write-code-for-additional-buttons-and-a-check-box.md
- name: "Step 11: Run your app and try other features"
href: ide/step-11-run-your-program-and-try-other-features.md
- name: "Tutorial 2: Create a timed math quiz (C#)"
items:
- name: Overview
displayName: Tutorial 2 Timed math quiz
href: ide/tutorial-2-create-a-timed-math-quiz.md
- name: "Step 1: Create a project and add labels to your form"
href: ide/step-1-create-a-project-and-add-labels-to-your-form.md
- name: "Step 2: Create a random addition problem"
href: ide/step-2-create-a-random-addition-problem.md
- name: "Step 3: Add a countdown timer"
href: ide/step-3-add-a-countdown-timer.md
- name: "Step 4: Add the CheckTheAnswer() method"
href: ide/step-4-add-the-checktheanswer-parens-method.md
- name: "Step 5: Add Enter event handlers for the NumericUpDown controls"
href: ide/step-5-add-enter-event-handlers-for-the-numericupdown-controls.md
- name: "Step 6: Add a subtraction problem"
href: ide/step-6-add-a-subtraction-problem.md
- name: "Step 7: Add multiplication and division problems"
href: ide/step-7-add-multiplication-and-division-problems.md
- name: "Step 8: Customize the quiz"
href: ide/step-8-customize-the-quiz.md
- name: "Tutorial 3: Create a matching game (C#)"
items:
- name: Overview
displayName: Tutorial 3 Matching game
href: ide/tutorial-3-create-a-matching-game.md
- name: "Step 1: Create a project and add a table to your form"
href: ide/step-1-create-a-project-and-add-a-table-to-your-form.md
- name: "Step 2: Add a random object and a list of icons"
href: ide/step-2-add-a-random-object-and-a-list-of-icons.md
- name: "Step 3: Assign a random icon to each label"
href: ide/step-3-assign-a-random-icon-to-each-label.md
- name: "Step 4: Add a click event handler to each label"
href: ide/step-4-add-a-click-event-handler-to-each-label.md
- name: "Step 5: Add label references"
href: ide/step-5-add-label-references.md
- name: "Step 6: Add a timer"
href: ide/step-6-add-a-timer.md
- name: "Step 7: Keep pairs visible"
href: ide/step-7-keep-pairs-visible.md
- name: "Step 8: Add a method to verify whether the player won"
href: ide/step-8-add-a-method-to-verify-whether-the-player-won.md
- name: "Step 9: Try other features"
href: ide/step-9-try-other-features.md
- name: F#
items:
- name: F# development
href: ide/fsharp-visual-studio.md
- name: Target older .NET versions
href: ide/fsharp-target-older-dotnet-versions.md
- name: 3D graphical assets
items:
- name: Work with 3D assets for games and apps
href: designers/working-with-3-d-assets-for-games-and-apps.md
- name: "How to: Use 3D assets in your game or app"
href: designers/using-3-d-assets-in-your-game-or-app.md
- name: Textures and images
items:
- name: Work with textures and images
href: designers/working-with-textures-and-images.md
- name: Image editor
href: designers/image-editor.md
- name: Image editor examples
items:
- name: Create a basic texture
href: designers/how-to-create-a-basic-texture.md
- name: Create and modify MIP levels
href: designers/how-to-create-and-modify-mip-levels.md
- name: 3D models
items:
- name: Work with 3D models
href: designers/working-with-3-d-models.md
- name: Model editor
href: designers/model-editor.md
- name: Model editor examples
items:
- name: Create a basic 3D model
href: designers/how-to-create-a-basic-3-d-model.md
- name: Modify the pivot point of a 3D model
href: designers/how-to-modify-the-pivot-point-of-a-3-d-model.md
- name: Model 3D terrain
href: designers/how-to-model-3-d-terrain.md
- name: Apply a shader to a 3D model
href: designers/how-to-apply-a-shader-to-a-3-d-model.md
- name: Shaders
items:
- name: Work with shaders
href: designers/working-with-shaders.md
- name: Shader designer
href: designers/shader-designer.md
- name: Shader designer nodes
items:
- name: Overview
displayName: Shader designer nodes
href: designers/shader-designer-nodes.md
- name: Constant nodes
href: designers/constant-nodes.md
- name: Parameter nodes
href: designers/parameter-nodes.md
- name: Texture nodes
href: designers/texture-nodes.md
- name: Math nodes
href: designers/math-nodes.md
- name: Utility nodes
href: designers/utility-nodes.md
- name: Filter nodes
href: designers/filter-nodes.md
- name: Shader designer examples
items:
- name: Create a basic color shader
displayName: Shader designer example
href: designers/how-to-create-a-basic-color-shader.md
- name: Create a basic Lambert shader
href: designers/how-to-create-a-basic-lambert-shader.md
- name: Create a basic Phong shader
href: designers/how-to-create-a-basic-phong-shader.md
- name: Create a basic texture shader
href: designers/how-to-create-a-basic-texture-shader.md
- name: Create a grayscale texture shader
href: designers/how-to-create-a-grayscale-texture-shader.md
- name: Create a geometry-based gradient shader
href: designers/how-to-create-a-geometry-based-gradient-shader.md
- name: "Walkthrough: Create a realistic 3D billiard ball"
href: designers/walkthrough-creating-a-realistic-3-d-billiard-ball.md
- name: Export a shader
href: designers/how-to-export-a-shader.md
- name: Export textures
items:
- name: Export a texture that contains mipmaps
href: designers/how-to-export-a-texture-that-contains-mipmaps.md
- name: Export a texture that has premultiplied alpha
href: designers/how-to-export-a-texture-that-has-premultiplied-alpha.md
- name: Export a texture for use with Direct2D or JavaScript apps
href: designers/how-to-export-a-texture-for-use-with-direct2d-or-javascipt-apps.md
- name: XAML files >>
href: xaml-tools/index.yml
- name: XML and XSLT files >>
href: xml-tools/xml-tools-in-visual-studio.md
- name: Docker containers >>
href: containers/index.yml
- name: Workflows >>
href: workflow-designer/developing-applications-with-the-workflow-designer.md
- name: Mobile apps
href: cross-platform/cross-platform-mobile-development-in-visual-studio.md
- name: Office and SharePoint apps >>
href: vsto/office-and-sharepoint-development-in-visual-studio.md
- name: Access data >>
displayName: Data connections
href: data-tools/accessing-data-in-visual-studio.md
- name: Develop inclusive apps
items:
- name: Design accessible apps
href: ide/reference/resources-for-designing-accessible-applications.md
- name: Design international apps
displayName: Globalization localization world-ready
href: ide/globalizing-and-localizing-applications.md
- name: Build
items:
- name: Overview
displayName: Compile build
href: ide/compiling-and-building-in-visual-studio.md
- name: "Walkthrough: Build an application"
href: ide/walkthrough-building-an-application.md
- name: Build and clean projects and solutions
items:
- name: Overview
displayName: Build clean
href: ide/building-and-cleaning-projects-and-solutions-in-visual-studio.md
- name: Change the build output directory
href: ide/how-to-change-the-build-output-directory.md
- name: Build to a common output directory
href: ide/how-to-build-to-a-common-output-directory.md
- name: Specify custom build events
href: ide/specifying-custom-build-events-in-visual-studio.md
- name: Set multiple startup projects
href: ide/how-to-set-multiple-startup-projects.md
- name: Create and remove project dependencies
href: ide/how-to-create-and-remove-project-dependencies.md
- name: View, save, and configure build log files
href: ide/how-to-view-save-and-configure-build-log-files.md
- name: Exclude projects from a build
href: ide/how-to-exclude-projects-from-a-build.md
- name: Suppress compiler warnings
href: ide/how-to-suppress-compiler-warnings.md
- name: Build actions
href: ide/build-actions.md
- name: Build configurations
items:
- name: Understand build configurations
href: ide/understanding-build-configurations.md
- name: Create and edit configurations
href: ide/how-to-create-and-edit-configurations.md
- name: Manage build configurations with Visual Basic developer settings
href: ide/how-to-manage-build-configurations-with-visual-basic-developer-settings-applied.md
- name: Build multiple configurations simultaneously
href: ide/how-to-build-multiple-configurations-simultaneously.md
- name: Build platforms
items:
- name: Understand build platforms
href: ide/understanding-build-platforms.md
- name: Configure projects to target a platform
href: ide/how-to-configure-projects-to-target-platforms.md
- name: Configure projects to target multiple platforms
href: ide/how-to-configure-projects-to-target-multiple-platforms.md
- name: MSBuild >>
href: msbuild/msbuild.md
- name: Azure Pipelines and TFS >>
displayName: VSTS Azure DevOps CI/CD Continuous integration delivery
href: /azure/devops/pipelines/index?view=vsts
- name: Specify build events (Visual Basic)
href: ide/how-to-specify-build-events-visual-basic.md
- name: Specify build events (C#)
href: ide/how-to-specify-build-events-csharp.md
- name: Configure warnings in Visual Basic
href: ide/configuring-warnings-in-visual-basic.md
- name: "Walkthrough: Create a multiple-computer build environment"
href: ide/walkthrough-creating-a-multiple-computer-build-environment.md
- name: Debug >>
href: debugger/index.yml
- name: Test >>
displayName: Unit testing
href: test/improve-code-quality.md
- name: Measure performance >>
displayName: Profiling
href: profiling/index.yml
- name: Analyze code quality >>
displayName: Code analysis FxCop Analyzers
href: code-quality/index.yml
- name: Deploy >>
href: deployment/index.yml
- name: Extend Visual Studio >>
displayName: Visual Studio SDK
href: extensibility/index.yml
- name: Analyze and Model Architecture >>
href: modeling/analyze-and-model-your-architecture.md
- name: Personalize Visual Studio
items:
- name: Customize the IDE
displayName: Personalize
href: ide/personalizing-the-visual-studio-ide.md
- name: "Personalize the color theme and text"
href: ide/quickstart-personalize-the-ide.md
- name: Environment settings
displayName: profiles
href: ide/environment-settings.md
- name: Synchronized settings
href: ide/synchronized-settings-in-visual-studio.md
- name: Fonts and colors
href: ide/how-to-change-fonts-and-colors-in-visual-studio.md
- name: Menus and toolbars
href: ide/how-to-customize-menus-and-toolbars-in-visual-studio.md
- name: Window layouts
href: ide/customizing-window-layouts-in-visual-studio.md
- name: File nesting in Solution Explorer
href: ide/file-nesting-solution-explorer.md
- name: Startup behavior
displayName: Start page window
href: ide/customizing-the-start-page-for-visual-studio.md
- name: Manage extensions
href: ide/finding-and-using-visual-studio-extensions.md
displayName: marketplace, gallery, vsix
- name: Manage external tools
href: ide/managing-external-tools.md
- name: Personalization accounts
items:
- name: Sign in to Visual Studio
displayName: personalization accounts
href: ide/signing-in-to-visual-studio.md
- name: Work with multiple user accounts
href: ide/work-with-multiple-user-accounts.md
- name: Work with accounts that require multi-factor authentication
href: ide/work-with-multi-factor-authentication.md
- name: Extend a trial version or update a license
href: ide/how-to-unlock-visual-studio.md
- name: Tuning the performance of Visual Studio
items:
- name: Optimize performance
href: ide/optimize-visual-studio-performance.md
- name: Startup time
href: ide/optimize-visual-studio-startup-time.md
- name: Load a filtered solution
href: ide/filtered-solutions.md
- name: Tips and tricks
href: ide/visual-studio-performance-tips-and-tricks.md
- name: Accessibility
items:
- name: Manage accessibility features
href: ide/reference/accessibility-features-of-visual-studio.md
- name: Set IDE accessibility options
href: ide/reference/how-to-set-ide-accessibility-options.md
- name: Accessibility tips and tricks
href: ide/reference/accessibility-tips-and-tricks.md
- name: Accessibility products and services from Microsoft
href: ide/reference/accessibility-products-and-services-from-microsoft.md
- name: Reference
items:
- name: Keyboard shortcuts
items:
- name: Popular commands
displayName: keyboard shortcuts
href: ide/default-keyboard-shortcuts-for-frequently-used-commands-in-visual-studio.md
- name: All commands
displayName: keyboard commands
href: ide/default-keyboard-shortcuts-in-visual-studio.md
- name: Visual Studio commands
items:
- name: Reference
displayName: Visual Studio commands
href: ide/reference/visual-studio-commands.md
- name: Command aliases
href: ide/reference/visual-studio-command-aliases.md
- name: Add Existing Item command
href: ide/reference/add-existing-item-command.md
- name: Add Existing Project command
href: ide/reference/add-existing-project-command.md
- name: Add New Item command
href: ide/reference/add-new-item-command.md
- name: Alias command
href: ide/reference/alias-command.md
- name: Evaluate Statement command
href: ide/reference/evaluate-statement-command.md
- name: Find command
href: ide/reference/find-command.md
- name: Find in Files command
href: ide/reference/find-in-files-command.md
- name: Go To command
href: ide/reference/go-to-command.md
- name: Import and Export Settings command