دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
ویرایش: 1
نویسندگان: Rishabh Verma
سری:
ISBN (شابک) : 1484258525, 9781484258521
ناشر: Apress
سال نشر: 2020
تعداد صفحات: 433
زبان: English
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود)
حجم فایل: 22 مگابایت
در صورت تبدیل فایل کتاب Visual Studio Extensibility Development: Extending Visual Studio Ide for Productivity, Quality, Tooling, and Analysis به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب توسعه توسعه ویژوال استودیو: گسترش ایده ویژوال استودیو برای بهره وری ، کیفیت ، ابزار و تجزیه و تحلیل نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
مدل توسعه پذیری ویژوال استودیو را برای بهبود محیط توسعه یکپارچه ویژوال استودیو (IDE) بیاموزید. این کتاب همه جنبه ها را پوشش می دهد، از توسعه یک برنامه افزودنی گرفته تا انتشار آن و در دسترس قرار دادن آن برای کاربر نهایی. ;
کتاب با مقدمه ای بر مفاهیم اولیه ویژوال استودیو از جمله ساختارهای داده و الگوهای طراحی آغاز می شود و با مبانی مدل توسعه پذیری VS پیش می رود. در اینجا نحوه کار بر روی Roslyn - پلتفرم کامپایلر دات نت - و بارگذاری پسوندها در VS را خواهید آموخت. در مرحله بعد، مدل توسعه پذیری را مرور خواهید کرد و خواهید دید که چگونه برنامه های افزودنی مختلف مانند منوها، دستورات و پنجره های ابزار می توانند به VS متصل شوند. با حرکت رو به جلو، توسعه افزونههای VS و پیکربندی آنها را همراه با نمایشهایی در مورد سفارشیسازی برنامههای افزودنی با توسعه صفحات گزینه پوشش خواهید داد. علاوه بر این، یاد خواهید گرفت که قطعات کد سفارشی ایجاد کنید و از یک بصریساز اشکالزدا استفاده کنید. در مرحله بعد، شما از طریق ایجاد الگوهای پروژه و آیتم از جمله استقرار افزونه های VS با استفاده از یکپارچه سازی مداوم (CI) خواهید رفت. در نهایت، نکات و ترفندهایی را برای ویژوال استودیو و توسعه پذیری و ادغام آن با Azure DevOps یاد خواهید گرفت.بعد از خواندن توسعه توسعهپذیری ویژوال استودیومیتوانید برنامههای افزودنی را در Visual Studio IDE توسعه، استقرار و سفارشیسازی کنید.
< b>آنچه خواهید آموخت
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.
What You Will Learn
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? 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 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 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 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 Text Model Subsystem Text View Subsystem Classification Subsystem Operations Subsystem Editor Features Tags Classifier Adornments Projection Outlining Operations IntelliSense Editor Extensibility Diagnostic Analyzer with Code Fix Writing a Diagnostic Code Analyzer with Code Fix Setting Up the Project SupportedDiagnostics Initialize Coding the Diagnostic Analyzer Running the Diagnostic Analyzer Writing a Code Fix Testing the Extension Distributing the Extension Code Refactoring Extension Coding the Extension Testing the Refactoring IntelliSense IntelliCode Summary Class References Text Model Subsystem Content Types Text View Types Diagnostic Analyzer AnalysisContext Chapter 7: Snippets, Templates, and More … Code Snippets Anatomy of a Code Snippet Developing and Distributing Code Snippets Project and Item Templates Connected Services Debugging Summary Chapter 8: Continuous Integration and Hosting Visual Studio Marketplace Publishing Extension to Visual Studio Marketplace Continuous Integration and Continuous Deployment Private Galleries Anatomy of a Private Gallery Creating Private Galleries Consuming Private Galleries Summary Chapter 9: Tips and Tricks Tips and Tricks VSIXManifest Metadata Values Name and Description License Tags Correct Target Version Packaging and Updating the Extension Use Extensibility Essentials 2019 Extension Find or Assign Keyboard Shortcut to Commands Import Visual Studio 2017 Extensions into Visual Studio 2019 Research VS Commands Run a Command Make Use of KnownImageMonikers Coding Is Easier with IntelliCode Async Package and Background Loading Use Async All the Way Make Use of Analyzers Get a Service Provide a Service Make Use of Options Page Localize the Extension InstalledProductRegistration Attribute Consider to Make Use of Ngen for Better Performance Reset Experimental Instance Rule-Based UI Context Use Syntax Visualizer Look at Sample Extensions Add Sound Effects Extensibility Logs Digitally Sign Your Extension Create a VS Extension Pack User Experience Guidelines Use the Checklist Visual Studio Performance Manager Measure the Performance Impact of Your Extension on Visual Studio Live Code Share Quick Launch/ Search Close Tool Window Use EditorConfig File Peek Definition Customize Scrollbar Conditional Breakpoints, Tracepoints, and Data Breakpoints Code Editing Shortcuts Make Use of Snippets Make Use of Code Map Use IntelliTest to Write and Maintain Better Tests Programmatically Attach or Break the Debugger in Your Code C# Interactive Window Paste Special for XML and JSON Share Feedback with Microsoft Ask the Experts Visual Studio YouTube Channel Tips on Twitter Subscribe to Blogs Visual Studio Code Visual Studio 2019 for Mac Useful Visual Studio 2019 Extensions Summary Index