Cargando…

Visual Studio extensibility development : extending Visual Studio IDE for productivity, quality, tooling, and analysis /

Learn the extensibility model of Visual Studio to enhance the Visual Studio integrated development environment (IDE). This book will cover every aspect, starting from developing an extension to publishing it and making it available to the end user. The book begins with an introduction to the basic c...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Verma, Rishabh (Autor)
Otros Autores: Kristensen, Mads (writer of foreword.)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: [United States] : Apress, 2020.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 a 4500
001 OR_on1164584214
003 OCoLC
005 20231017213018.0
006 m o d
007 cr |n|||||||||
008 200714s2020 xxu ob 001 0 eng d
040 |a YDX  |b eng  |e pn  |c YDX  |d GW5XE  |d EBLCP  |d LQU  |d UAB  |d SFB  |d OCLCF  |d UMI  |d UKMGB  |d OCL  |d OCLCO  |d UKAHL  |d OCLCQ  |d UPM  |d VT2  |d LIP  |d GUA  |d TOH  |d OCLCQ  |d OCLCO 
015 |a GBC0A7401  |2 bnb 
016 7 |a 019837991  |2 Uk 
019 |a 1179001400  |a 1179125239  |a 1182454452  |a 1182916593  |a 1183928730  |a 1187925124  |a 1190682707  |a 1193272378  |a 1195468341  |a 1196162195  |a 1197557092  |a 1198151267  |a 1198376622  |a 1198818681  |a 1203681858  |a 1228597715  |a 1395819581 
020 |a 9781484258538  |q (electronic bk.) 
020 |a 1484258533  |q (electronic bk.) 
020 |z 1484258525 
020 |z 9781484258521 
024 7 |a 10.1007/978-1-4842-5853-8  |2 doi 
024 8 |a 10.1007/978-1-4842-5 
029 1 |a AU@  |b 000067556357 
029 1 |a AU@  |b 000068073241 
029 1 |a AU@  |b 000068658718 
029 1 |a AU@  |b 000070459141 
029 1 |a UKMGB  |b 019837991 
035 |a (OCoLC)1164584214  |z (OCoLC)1179001400  |z (OCoLC)1179125239  |z (OCoLC)1182454452  |z (OCoLC)1182916593  |z (OCoLC)1183928730  |z (OCoLC)1187925124  |z (OCoLC)1190682707  |z (OCoLC)1193272378  |z (OCoLC)1195468341  |z (OCoLC)1196162195  |z (OCoLC)1197557092  |z (OCoLC)1198151267  |z (OCoLC)1198376622  |z (OCoLC)1198818681  |z (OCoLC)1203681858  |z (OCoLC)1228597715  |z (OCoLC)1395819581 
037 |a CL0501000147  |b Safari Books Online 
050 4 |a QA76.77 
072 7 |a UMP  |2 bicssc 
072 7 |a COM051380  |2 bisacsh 
072 7 |a UMP  |2 thema 
082 0 4 |a 005.26/8  |2 23 
049 |a UAMI 
100 1 |a Verma, Rishabh,  |e author. 
245 1 0 |a Visual Studio extensibility development :  |b extending Visual Studio IDE for productivity, quality, tooling, and analysis /  |c Rishabh Verma ; foreword by Mads Kristensen. 
260 |a [United States] :  |b Apress,  |c 2020. 
300 |a 1 online resource 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file  |b PDF  |2 rda 
505 0 |a Intro -- Table of Contents -- About the Author -- About the Technical Reviewers -- Acknowledgments -- Introduction -- Chapter 1: Basics Primer -- Why Should I Extend Visual Studio? -- Compiler -- What Is an SDK (Software Development Kit)? -- Recap of Tree Data Structure -- Managed Extensibility Framework (MEF) -- XML and JSON -- Serialization and Deserialization -- Revisiting Visitor, Abstract Factory, and Factory Design Patterns -- Design Pattern -- Factory Design Pattern -- Abstract Factory -- Visitor Pattern -- MSBuild Basics -- What Is Code Compilation? 
505 8 |a What Happens When We Say That We're Building the Code? -- How Do We Use MSBuild in Visual Studio? -- Async Await -- NET Compiler Platform (Roslyn) -- Summary -- Chapter 2: Getting Started -- Creating Your First Visual Studio 2019 Extension -- Open Packaging Convention -- VSIX -- Grokking the Structure of a Boilerplate Extension -- VSIXAnatomyPackage.cs File -- Source.extension.vsixmanifest File -- References -- Properties -- Anatomy of Extension -- Examining the Files -- [Content_Types].xml -- Catalog.json -- DumpExtensions.dll -- Extension.vsixmanifest -- Manifest.json -- VSIXAnatomy.dll 
505 8 |a VSIXAnatomy.pkgdefs -- Examining the Other Parts of the Extension -- Language Packs -- Dependencies and Other References -- How Does Visual Studio Discover and Load an Extension? -- Summary -- Chapter 3: Extending Visual Studio -- Know Your IDE -- Visual Studio 2019 User Interface -- Visual Studio Extensibility Model -- Extending Menus and Commands -- Tools Menu Extension -- Extern -- Include -- Define -- Commands -- Menus -- Groups -- Buttons -- Combos -- Bitmaps -- The Condition Attribute -- The VSCT File Continued -- Running the Code -- The AsyncPackage Abstract Class -- FAQs -- Summary 
505 8 |a Chapter 4: Developing Your First Extensions -- Extensions to Aid Development of VS Extensions -- Visual Studio Extension to Perform Search -- Starting the Extension -- Adding the Command to the Menu -- Adding an Icon and Keyboard Support -- Writing the Search Functionality -- Testing the Extension -- Tool Window Extension to Show DTE Object -- Starting the Extension -- Adding a ToolWindowPane -- Writing the Extension -- Running the Extension -- Summary -- Class References -- DTE -- Document Interface -- TextSelection -- DialogPage -- ToolWindowPane -- Chapter 5: Developing Real-World Extensions 
505 8 |a Visual Studio Extension to Display Infobar -- Starting the Infobar Extension -- Displaying the Infobar -- Writing an Infobar Display Class -- Modifying the Event Handler -- Running the Extension -- Visual Studio Extension to Generate Code -- Starting the Code Generating Extension -- Generating the Code -- Writing the Code Generation Class -- Updating the Command Class -- Running the Extension -- Summary -- Class References -- Infobar Type System -- Code Generation Types -- Chapter 6: Developing Real-World Extensions for Visual Studio Editor -- Visual Studio Editor -- Editor Subsystems 
520 |a Learn the extensibility model of Visual Studio to enhance the Visual Studio integrated development environment (IDE). This book will cover every aspect, starting from developing an extension to publishing it and making it available to the end user. The book begins with an introduction to the basic concepts of Visual Studio including data structures and design patterns and moves forward with the fundamentals of the VS extensibility model. Here you will learn how to work on Roslyn - the .NET compiler platform - and load extensions in VS. Next, you will go through the extensibility model and see how various extensions, such as menus, commands, and tool windows, can be plugged into VS. Moving forward, youll cover developing VS extensions and configuring them, along with demonstrations on customizing extension by developing option pages. Further, you will learn to create custom code snippets and use a debugger visualizer. Next, you will go through creation of project and item templates including deployment of VS extensions using continuous integration (CI). Finally, you will learn tips and tricks for Visual Studio and its extensibility and integration with Azure DevOps. After reading Visual Studio Extensibility Development you will be able to develop, deploy, and customize extensions in Visual Studio IDE. You will: Discover the Visual Studio extensibility and automation model Code Visual Studio extensions from scratch Customize extensions by developing a tools option page for them Create project templates, item templates, and code snippets. Work with code generation using T4 templates Code analysis and refactoring using Roslyn analyzers Create and deploy a private extension gallery and upload the extensions Upload a VS extension using CI Ship your extension to Visual Studio Marketplace. 
504 |a Includes bibliographical references and index. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a Microsoft Visual studio. 
630 0 7 |a Microsoft Visual studio  |2 fast 
650 0 |a Microsoft software. 
650 0 |a Computer networks. 
650 6 |a Logiciels Microsoft. 
650 6 |a Réseaux d'ordinateurs. 
650 7 |a Computer networks  |2 fast 
650 7 |a Microsoft software  |2 fast 
700 1 |a Kristensen, Mads,  |e writer of foreword. 
776 0 8 |i Print version:  |a Verma, Rishabh.  |t Visual Studio extensibility development.  |d [United States] : Apress, 2020  |z 1484258525  |z 9781484258521  |w (OCoLC)1141988514 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781484258538/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH37685476 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL6270596 
938 |a YBP Library Services  |b YANK  |n 301371652 
994 |a 92  |b IZTAP