Возможности visual studiofeatures of visual studio

Uninstall

There are shared components that remain installed after you uninstall SSMS.

The shared components that remain installed are:

  • Azure Data Studio
  • Microsoft .NET Framework 4.7.2
  • Microsoft OLE DB Driver for SQL Server
  • Microsoft ODBC Driver 17 for SQL Server
  • Microsoft Visual C++ 2013 Redistributable (x86)
  • Microsoft Visual C++ 2017 Redistributable (x86)
  • Microsoft Visual C++ 2017 Redistributable (x64)
  • Microsoft Visual Studio Tools for Applications 2017

These components aren’t uninstalled because they can be shared with other products. If uninstalled, you may run the risk of disabling other products.

Использование рефакторинга и IntelliSenseUse refactoring and IntelliSense

Рассмотрим несколько примеров того, как рефакторинг и IntelliSense помогают повысить эффективность кода.Let’s look at a couple of the ways that refactoring and IntelliSense can help you code more efficiently.

Во-первых, переименуем переменную :First, let’s rename the variable:

Дважды щелкните переменную , чтобы выбрать ее.Double-click the variable to select it.

Введите имя переменной, username .Type in the new name for the variable, username .
Обратите внимание, что вокруг переменной отображается серый прямоугольник, а в поле появляется значок лампочки.Notice that a gray box appears around the variable, and a light bulb appears in the margin.

  1. Выберите значок лампочки для отображения доступных быстрых действий.Select the light bulb icon to show the available Quick Actions. Выберите Переименовать name в username .Select Rename ‘name’ to ‘username’ .

    Переменная переименовывается во всем проекте, то есть в нашем случае только в двух местах.The variable is renamed across the project, which in our case is only two places.

  1. Выберите значок лампочки для отображения доступных быстрых действий.Select the light bulb icon to show the available Quick Actions. Выберите Переименовать name в username .Select Rename ‘name’ to ‘username’ .

    Переменная переименовывается во всем проекте, то есть в нашем случае только в двух местах.The variable is renamed across the project, which in our case is only two places.

Теперь рассмотрим возможности IntelliSense.Now let’s take a look at IntelliSense. Под строкой введите .Below the line that says , type .
Появится поле с членами класса DateTime.A box displays the members of the DateTime class. Кроме того, в отдельном поле отображается описание выбранного элемента.In addition, the description of the currently selected member displays in a separate box.

Выберите член с именем Now , который является свойством класса, дважды щелкнув его или нажав клавишу TAB . Завершите строку кода, добавив в конце точку с запятой.Select the member named Now , which is a property of the class, by double-clicking on it or pressing Tab . Complete the line of code by adding a semi-colon to the end.

Ниже введите или вставьте следующие строки кода:Below that, type in or paste the following lines of code:

Совет
Console.Write будет немного отличаться от Console.WriteLine в том, что не добавляет знак завершения строки после ее вывода.Console.Write is a little different to Console.WriteLine in that it doesn’t add a line terminator after it prints. Это означает, что следующий фрагмент текста, отправляемый на вывод, будет выводиться в той же строке.That means that the next piece of text that’s sent to the output will print on the same line. Можно навести указатель мыши на каждый из этих методов в коде, чтобы просмотреть его описание.You can hover over each of these methods in your code to see their description.

Далее мы снова используем рефакторинг, чтобы сделать код более кратким.Next, we’ll use refactoring again to make the code a little more concise

Щелкните переменную в строке .Click on the variable in the line .
Обратите внимание, что на поле в этой строке отображается маленький значок отвертки.Notice that a little screwdriver icon appears in the margin on that line.

Щелкните значок отвертки, чтобы увидеть предложения Visual Studio.Click the screwdriver icon to see what suggestions Visual Studio has available. В этом случае отображается рефакторинг Встроенная временная переменная для удаления строки кода без изменения его общего поведения:In this case, it’s showing the Inline temporary variable refactoring to remove a line of code without changing the overall behavior of the code:

Щелкните Встроенная временная переменная , чтобы выполнить рефакторинг кода.Click Inline temporary variable to refactor the code.

  1. Снова запустите программу, нажав клавиши Ctrl+F5 .Run the program again by pressing Ctrl+F5 . Выходные данные выглядят следующим образом:The output looks something like this:

  1. Снова запустите программу, нажав клавиши Ctrl+F5 .Run the program again by pressing Ctrl+F5 . Выходные данные выглядят следующим образом:The output looks something like this:

Ускоренный поиск нужных элементовFind items faster

В интегрированной среде разработки можно выполнять поиск нужных команд, файлов и параметров, а также фильтровать содержимое окна инструментов для отображения только информации, необходимой для текущей задачи.You can search across the IDE for commands, files, and options, in addition to filtering the contents of tool windows to show only relevant information for your current task.

  • Фильтрация содержимого окна инструментов.Filter the contents of tool windows. Вы можете выполнять поиск по содержимому различных окон инструментов, например Панель элементов, окно Свойства и Обозреватель решений, но отображать только те элементы, имена которых содержат искомые символы.You can search within the contents of many tool windows, such as the Toolbox, the Properties window, and Solution Explorer, but display only items whose names contain the characters that you specify.

  • Отображение только тех ошибок, которые необходимо устранить.Display only the errors you want to address. При нажатии кнопки Фильтр на панели инструментов Список ошибок можно уменьшить количество ошибок, отображаемых в окне Список ошибок.If you choose the Filter button on the Error List toolbar, you can reduce the number of errors that appear in the Error List window. Можно отображать только ошибки в файлах, открытых в редакторе, только ошибки в текущем файле или только ошибки в текущем проекте.You can display only the errors in the files that are open in the editor, only the errors in the current file, or only the errors in the current project. Кроме того, можно выполнять поиск в окне Список ошибок, чтобы находить конкретные ошибки.You can also search within the Error List window to find specific errors.

  • Поиск диалоговых окон, команд меню, параметров и многого другого.Find dialog boxes, menu commands, options, and more. В поле поиска введите ключевые слова или фразы, относящиеся к элементам, которые требуется найти.In the search box, enter keywords or phrases for the items that you’re trying to find. Например, при вводе запроса создать проект отображаются следующие результаты:For example, the following options appear if you enter new project:

    Панель Быстрый запуск, помимо прочего, содержит ссылки для создания проекта, добавления нового элемента в проект, а также ссылку на страницу Проекты и решения в диалоговом окне Параметры.Quick Launch displays links to create a new project, to add a new item to a project, and to the Projects and Solutions page in the Options dialog box, among others. Результаты поиска также могут содержать файлы проектов и окна инструментов.Search results can also include project files and tool windows.

    Нажмите клавиши CTRL+Q, чтобы перейти сразу к полю поиска.Press Ctrl+Q to jump straight to the search box.

Отключение автоматического восстановления файловDisable automatic file restore

Visual Studio автоматически повторно открывает документы, открытые во время предыдущего сеанса.Visual Studio automatically reopens documents that were left open in the previous session. Это может увеличить время загрузки решения до 30 % или более в зависимости от типа проекта и открываемых документов.This can prolong the times it takes to load a solution by up to 30% or more, depending on the project type and the documents being opened. Конструкторы, например Windows Forms и XAML, и некоторые файлы JavaScript и typescript могут открываться медленно.Designers like Windows Forms and XAML, and some JavaScript and typescript files, can be slow to open.

Visual Studio отображает уведомление на желтой панели, если автоматическое восстановление документа значительно замедляет загрузку решения.Visual Studio notifies you in a yellow bar when automatic document restore is causing a solution to load significantly slower. Вы можете отключить автоматическое повторное открытие файлов, выполнив следующие действия.You can disable automatic file reopening by following these steps:

  1. Выберите пункты меню Сервис > Параметры, чтобы открыть диалоговое окно Параметры.Select Tools > Options to open the Options dialog box.

  2. На странице Проекты и решения > Общие отмените выбор пункта Повторно открыть документы при загрузке решения.On the Projects and Solution > General page, deselect Reopen documents on solution load.

Если отключить автоматическое восстановление файлов, быстро перейти к нужным файлам можно с помощью одной из команд Перейти к:If you disable automatic file restore, a quick way to navigate to files you want to open is by using one of the Go To commands:

  • Чтобы использовать общие функции Перейти к, выберите Изменить > Перейти к > Перейти ко всем или нажмите CTRL+T.For the general Go To functionality, select Edit > Go To > Go To All, or press Ctrl+T.

  • Перейдите к последней правке в решении, выбрав Изменить > Перейти к > Перейти к последнему изменению или нажав CTRL+SHIFT+BACKSPACE.Jump to the last edit location in a solution using Edit > Go To > Go To Last Edit Location, or by pressing Ctrl+Shift+Backspace.

  • Используйте Перейти к последнему файлу, чтобы просмотреть список недавно просмотренных файлов в решении.Use Go To Recent File to see a list of recently visited files in a solution. Выберите Изменить > Перейти к > Перейти к последнему файлу или нажмите CTRL+1, CTRL+R.Select Edit > Go To > Go To Recent File, or press Ctrl+1, Ctrl+R.

Предыдущие версииPrevious versions

Эта статья применима только к последней версии SSMS.This article is for the latest version of SSMS only. Предыдущие версии SSMS можно скачать на .To download previous versions of SSMS, visit .

Примечание

В декабре 2021 г. выпуски SSMS до версии 18.6 перестанут использовать многофакторную проверку подлинности через Azure Active Directory.In December 2021, releases of SSMS prior to 18.6 will no longer authenticate through Azure Active Directory with MFA.

Чтобы и дальше использовать проверку подлинности Azure Active Directory с MFA, установите SSMS 18.6 или более поздней версии.To continue utilizing Azure Active Directory authentication with MFA, you need SSMS 18.6 or later.

Debug and Test the application

You can debug GreetingsConsoleApp to see whether the word «Hello» appears in the console window.

To debug the application

Start the debugger.

The debugger starts and runs the code. The console window (a separate window that looks like a command prompt) appears for a few seconds but closes quickly when the debugger stops running. To see the text, you need to set a breakpoint to stop program execution.

To add a breakpoint

  1. Add a breakpoint from the menu bar at the line . You can also just click in the left margin to set a breakpoint.

    A red circle appears next to the line of code in the far left margin of the editor window.

  2. Choose the F5 key to start debugging.

    The debugger starts, and a console window appears showing the word Hello.

  3. Press SHIFT + F5 to stop debugging.

    For more information, see Console Projects.

УдалениеUninstall

Набор SSMS имеет общие компоненты с другими решениями, которые останутся установленными после его удаления.There are shared components that remain installed after you uninstall SSMS.

Сюда входят следующие компоненты:The shared components that remain installed are:

  • Azure Data StudioAzure Data Studio
  • Microsoft .NET Framework 4.7.2Microsoft .NET Framework 4.7.2
  • Драйвер Microsoft OLE DB для SQL ServerMicrosoft OLE DB Driver for SQL Server
  • Microsoft ODBC Driver for SQL Server версии 17Microsoft ODBC Driver 17 for SQL Server
  • Распространяемый компонент Microsoft Visual C++ 2013 (x86)Microsoft Visual C++ 2013 Redistributable (x86)
  • Распространяемый компонент Microsoft Visual C++ 2017 (x86)Microsoft Visual C++ 2017 Redistributable (x86)
  • Распространяемый компонент Microsoft Visual C++ 2017 (x64)Microsoft Visual C++ 2017 Redistributable (x64)
  • Microsoft Visual Studio Tools for Applications 2017Microsoft Visual Studio Tools for Applications 2017

Эти компоненты не удаляются, так как могут являться общими с другими продуктами.These components aren’t uninstalled because they can be shared with other products. Их удаление может нарушить работу этих продуктов.If uninstalled, you may run the risk of disabling other products.

Get support

Sometimes, things can go wrong. If your Visual Studio installation fails, see Troubleshoot Visual Studio installation and upgrade issues for step-by-step guidance.

We also offer an (English only) support option for installation-related issues.

Here are a few more support options:

  • Report product issues to us via the Report a Problem tool that appears both in the Visual Studio Installer and in the Visual Studio IDE.
  • Suggest a feature, track product issues, and find answers in the Visual Studio Developer Community.
  • Use your GitHub account to talk to us and other Visual Studio developers in the Visual Studio conversation in the Gitter community.

Как получить доступ к папке

Supported SQL offerings

  • This version of SSMS works with all supported versions of SQL Server 2008 — SQL Server 2019 (15.x) and provides the greatest level of support for working with the latest cloud features in Azure SQL Database and Azure Synapse Analytics.
  • Additionally, SSMS 18.x can be installed side by side with SSMS 17.x, SSMS 16.x, or SQL Server 2014 SSMS and earlier.
  • SQL Server Integration Services (SSIS) — SSMS version 17.x or later doesn’t support connecting to the legacy SQL Server Integration Services service. To connect to an earlier version of the legacy Integration Services, use the version of SSMS aligned with the version of SQL Server. For example, use SSMS 16.x to connect to the legacy SQL Server 2016 Integration Services service. SSMS 17.x and SSMS 16.x can be installed side by side on the same computer. Since the release of SQL Server 2012, the SSIS Catalog database, SSISDB, is the recommended way to store, manage, run, and monitor Integration Services packages. For details, see SSIS Catalog.

Получение справки

  • UserVoice: предложения пользователей по улучшению SQL ServerUserVoice: Have suggestions for improving SQL Server?
  • Вопросы и ответы по продуктам Майкрософт (SQL Server)Microsoft Q & A (SQL Server)
  • DBA Stack Exchange (тег sql-server): вопросы по SQL ServerDBA Stack Exchange (tag sql-server): Ask SQL Server questions
  • Stack Overflow (тег sql-server): ответы на вопросы по разработке приложений SQLStack Overflow (tag sql-server): Answers to SQL development questions
  • Reddit: общее обсуждение по SQL ServerReddit: General discussion about SQL Server
  • Условия лицензии и информация о Microsoft SQL ServerMicrosoft SQL Server License Terms and Information
  • Варианты поддержки для бизнес-пользователейSupport options for business users
  • Обратиться в МайкрософтContact Microsoft
  • Дополнительная справка и отзывы по SQL ServerAdditional SQL Server help and feedback

Совместная работаCollaborate

Посмотрите видео ниже, чтобы узнать, как решать проблемы совместно с другими специалистами.View the following video to learn more about how you can team up to solve issues. Длительность видео: 4:22 мин.Video length: 4.22 minutes

Рабочий процесс Git-firstGit-first workflow

Первое, что вы заметите при открытии Visual Studio 2019, — новое окно запуска.Something you’ll notice when you open Visual Studio 2019 is its new start window.

С помощью этого окна запуска можно быстро перейти к коду несколькими способами.The start window presents you with several options to get you to code quickly. Мы включили возможность клонирования или извлечения кода из репозитория.We’ve placed the option to clone or check out code from a repo, first.

Окно запуска также позволяет открыть проект, решение и локальную папку или создать новый проект.The start window also includes options to open a project or solution, open a local folder, or create a new project.

Дополнительные сведения см. в записи блога Приступая к написанию кода: Как мы разработали новое окно запуска Visual Studio.For more information, see the Get to code: How we designed the new Visual Studio start window blog post.

Производительность GitGit productivity

Новое в 16.8 Теперь Git является интерфейсом системы управления версиями по умолчанию в Visual Studio 2019.New in 16.8 Git is now the default version control experience in Visual Studio 2019. Мы разработали набор функций на основе ваших отзывов за два прошлых выпуска.We have built out the feature set and iterated on it based on your feedback during the past two releases. Теперь новый интерфейс включен по умолчанию для всех пользователей.The new experience has now been turned on by default for everyone. В новом меню Git можно клонировать, создавать или открывать репозитории.From the new Git menu, you can clone, create, or open repositories. Используйте интегрированные окна инструментов Git для фиксации и отправки изменений в код, управления ветвями, отслеживания изменений удаленных репозиториев и разрешения конфликтов слияния.Use the integrated Git tool windows to commit and push changes to your code, manage branches, stay up to date with your remote repositories, and resolve merge conflicts.

Дополнительные сведения см. на странице Производительность Git в Visual Studio.For more information, see the Git productivity in Visual Studio page.

Live ShareLive Share

Visual Studio Live Share — это служба для разработчиков, которая позволяет предоставить базу кода и соответствующий контекст коллеге и обеспечить двунаправленное взаимодействие непосредственно из среды Visual Studio.Visual Studio Live Share is a developer service that allows you to share a codebase and its context with a teammate and get instant bidirectional collaboration directly from within Visual Studio. Благодаря Live Share коллега может легко и безопасно просматривать, изменять и отлаживать проект, предоставленный вами для общего доступа.With Live Share, a teammate can read, navigate, edit, and debug a project that you’ve shared with them, and do so seamlessly and securely.

В Visual Studio 2019 эта служба устанавливается по умолчанию.And with Visual Studio 2019, this service is installed by default.

Дополнительные сведения см. в разделе Visual Studio Live Share для проверки кода в режиме реального времени и интерактивного обучения записи блога и Live Share, теперь включены с помощью Visual Studio 2019 записи блога.For more information, see the Visual Studio Live Share for real-time code reviews and interactive education blog post and the Live Share now included with Visual Studio 2019 blog post.

Интегрированная проверка кодаIntegrated code reviews

Мы представляем новое расширение, которое можно скачать для использования в Visual Studio 2019.We’re introducing a new extension that you can download to use with Visual Studio 2019. С помощью этого нового расширения можно просматривать, запускать и даже выполнять отладку запросов на вытягивание, не выходя из Visual Studio.With this new extension, you can review, run, and even debug pull requests from your team without leaving Visual Studio. Мы включили поддержку кода в репозиториях GitHub и DevOps в Azure.We support code in both GitHub and Azure DevOps repositories.

Дополнительные сведения см. в записи блога Проверка кода с помощью расширения для запросов на вытягивание в Visual Studio.For more information, see the Code reviews using the Visual Studio Pull Requests extension blog post.

Модульная установкаModular installation

Модульный установщик Visual Studio позволяет выбрать и установить рабочие нагрузки.Visual Studio’s modular installer enables you to choose and install workloads. Рабочие нагрузки — это группы функций, необходимых для языка программирования или платформы, которую вы предпочитаете.Workloads are groups of features needed for the programming language or platform you prefer. Этот подход обеспечивает меньший объем установки Visual Studio, а также более быструю установку и обновление среды.This strategy helps to keep the footprint of the Visual Studio installation smaller, which means it installs and updates faster too.

Установите Visual Studio бесплатно со страницы скачиваемых материалов Visual Studio, если еще не сделали этого.If you haven’t already installed Visual Studio, go to the Visual Studio downloads page to install it for free.

Установите Visual Studio бесплатно со страницы скачиваемых материалов Visual Studio, если еще не сделали этого.If you haven’t already installed Visual Studio, go to the Visual Studio downloads page to install it for free.

Дополнительные сведения о настройке Visual Studio в своей системе см. в статье Установка версии-кандидата Visual Studio.To learn more about setting up Visual Studio on your system, see Install Visual Studio.

Bundles[edit | edit source]

Из-за чего могут пропасть SMS

Отладка кодаDebug code

При написании кода требуется запустить его и проверить на ошибки.When you write code, you need to run it and test it for bugs. Система отладки Visual Studio позволяет просматривать код с шагом в одну инструкцию, проверяя значения переменных.Visual Studio’s debugging system lets you step through code one statement at a time and inspect variables as you go. Можно задать точки останова , которые останавливают выполнение кода на определенной строке.You can set breakpoints that stop execution of the code at a particular line. Вы увидите, как значение переменной изменяется по мере выполнения кода, и многое другое.You can observe how the value of a variable changes as the code runs, and more.

Зададим точку останова, чтобы увидеть значение переменной во время выполнения программы.Let’s set a breakpoint to see the value of the variable while the program is «in flight».

  1. Найдите строку кода «».Find the line of code that says . Чтобы задать точку останова в этой строке кода, то есть чтобы приостановить выполнение программы в этой строке, щелкните в крайнем левом поле редактора.To set a breakpoint on this line of code, that is, to make the program pause execution at this line, click in the far left margin of the editor. Кроме того, можно щелкнуть в любом месте строки кода и нажать клавишу F9 .You can also click anywhere on the line of code and then press F9 .

    В крайнем левом поле отображается красный кружок, и код выделяется красным цветом.A red circle appears in the far left margin, and the code is highlighted in red.

  2. Начните отладку, выбрав пункты Отладка > Начать отладку или нажав клавишу F5 .Start debugging by selecting Debug > Start Debugging or by pressing F5 .

  3. Если появляется окно консоли с запросом имени, введите имя и нажмите клавишу ВВОД .When the console window appears and asks for your name, type it in and press Enter .

    Фокус возвращается в редактор кода Visual Studio, и строка кода с точкой останова выделяется желтым.The focus returns to the Visual Studio code editor and the line of code with the breakpoint is highlighted in yellow. Это означает, что она является следующей строкой кода, которую будет выполнять программа.This signifies that it’s the next line of code that the program will execute.

  4. Наведите указатель мыши на переменную для просмотра ее значения.Hover your mouse over the variable to see its value. Кроме того, можно щелкнуть правой кнопкой мыши и выбрать пункт Добавить контрольное значение , чтобы добавить переменную в окно контрольных значений , где можно будет просмотреть ее значение.Alternatively, you can right-click on and select Add Watch to add the variable to the Watch window, where you can also see its value.

  5. Чтобы разрешить программе продолжить выполнение, нажмите клавишу F5 еще раз.To let the program run to completion, press F5 again.

Дополнительные сведения о выполнении отладки в Visual Studio см. в статье Обзор возможностей отладчика Visual Studio.To get more details about debugging in Visual Studio, see Debugger feature tour.

Доступ к инструментам Visual StudioAccess Visual Studio tools

Вы сможете быстро переходить к командной строке разработчика и другим инструментам Visual Studio, если закрепите их на начальном экране или на панели задач.You can quickly access the Developer Command Prompt, or another Visual Studio tool, if you pin it to the Start menu or the taskbar.

  1. В проводнике Windows перейдите к %ProgramData%\Microsoft\Windows\Start Menu\Programs\Visual Studio 2017\Visual Studio Tools.In Windows Explorer, browse to %ProgramData%\Microsoft\Windows\Start Menu\Programs\Visual Studio 2017\Visual Studio Tools.
  1. В проводнике Windows перейдите к %ProgramData%\Microsoft\Windows\Start Menu\Programs\Visual Studio 2019\Visual Studio Tools.In Windows Explorer, browse to %ProgramData%\Microsoft\Windows\Start Menu\Programs\Visual Studio 2019\Visual Studio Tools.
  1. Откройте контекстное меню командной строки разработчика, а затем выберите Закрепить на начальном экране или Закрепить на панели задач.Right-click or open the context menu for Developer Command Prompt, and then choose Pin to Start or Pin to taskbar.

XamarinXamarin

  • Комплексный набор элементов управления xplatComprehensive set of xplat controls

    • Общедоступная версия AdaptiveTriggers/StateTriggers AdaptiveTriggers/StateTriggers GA
    • Карауселвиев Дж CarouselView GA
    • F100: добавление MediaElement F100: Add MediaElement
    • Общедоступная версия IndicatorView IndicatorView GA
    • RadioButton RadioButton
    • Свипевиев Дж SwipeView GA
  • Ускорение разработки для всех мобильных платформ с помощью Горячего перезапускаBuild on all mobile platforms faster with Hot Restart

    Горячая перезагрузка для приложений iOS в Visual Studio 2019Hot Restart for iOS applications in Visual Studio 2019

  • Использование последних версий пакетов SDK для Android по умолчаниюUse the latest Android SDKs by default

Запуск приложенияRun the application

Пришло время для построения, развертывания и запуска UWP-приложения «Hello World», чтобы посмотреть, как оно выглядит и как оно звучит.It’s time to build, deploy, and launch the «Hello World» UWP app to see what it looks and sounds like. Ниже описывается порядок действий.Here’s how.

  1. Используйте кнопку воспроизведения (с меткой локальный компьютер), чтобы запустить приложение на локальном компьютере.Use the Play button (it has the text Local Machine) to start the application on the local machine.

    (Вы также можете выбрать команду Отладка > Начать отладку в строке меню или нажать клавишу F5 для запуска приложения.)(Alternatively, you can choose Debug > Start Debugging from the menu bar or press F5 to start your app.)

  2. Посмотрите на свое приложение, которое появится вскоре после исчезновения всплывающего окна.View your app, which appears soon after a splash screen disappears. Приложение должно выглядеть следующим образом:The app should look similar to this:

  3. Нажмите кнопку Hello World.Click the Hello World button.

    Ваше устройство с Windows 10 буквально произнесет «Hello, World!».Your Windows 10 device will literally say, «Hello, World!»

  4. Для закрытия приложения нажмите кнопку Остановить отладку на панели инструментов.To close the app, click the Stop Debugging button in the toolbar. (Либо выберите пункт меню Отладка > Остановить отладку или нажмите клавиши SHIFT+F5.)(Alternatively, choose Debug > Stop debugging from the menu bar, or press Shift+F5.)

Пришло время для построения, развертывания и запуска UWP-приложения «Hello World», чтобы посмотреть, как оно выглядит и как оно звучит.It’s time to build, deploy, and launch the «Hello World» UWP app to see what it looks and sounds like. Ниже описывается порядок действий.Here’s how.

  1. Используйте кнопку воспроизведения (с меткой локальный компьютер), чтобы запустить приложение на локальном компьютере.Use the Play button (it has the text Local Machine) to start the application on the local machine.

    (Вы также можете выбрать команду Отладка > Начать отладку в строке меню или нажать клавишу F5 для запуска приложения.)(Alternatively, you can choose Debug > Start Debugging from the menu bar or press F5 to start your app.)

  2. Посмотрите на свое приложение, которое появится вскоре после исчезновения всплывающего окна.View your app, which appears soon after a splash screen disappears. Приложение должно выглядеть следующим образом:The app should look similar to this:

  3. Нажмите кнопку Hello World.Click the Hello World button.

    Ваше устройство с Windows 10 буквально произнесет «Hello, World!».Your Windows 10 device will literally say, «Hello, World!»

  4. Для закрытия приложения нажмите кнопку Остановить отладку на панели инструментов.To close the app, click the Stop Debugging button in the toolbar. (Либо выберите пункт меню Отладка > Остановить отладку или нажмите клавиши SHIFT+F5.)(Alternatively, choose Debug > Stop debugging from the menu bar, or press Shift+F5.)

5) Установите GetFLV Player

Step 3 — Install the Visual Studio installer

Run the bootstrapper file to install the Visual Studio Installer. This new lightweight installer includes everything you need to both install and customize Visual Studio.

  1. From your Downloads folder, double-click the bootstrapper that matches or is similar to one of the following files:

    • vs_community.exe for Visual Studio Community
    • vs_professional.exe for Visual Studio Professional
    • vs_enterprise.exe for Visual Studio Enterprise

    If you receive a User Account Control notice, choose Yes.

  2. We’ll ask you to acknowledge the Microsoft License Terms and the Microsoft Privacy Statement. Choose Continue.

Step 8 — Start developing

  1. After Visual Studio installation is complete, choose the Launch button to get started developing with Visual Studio.

  2. Choose File, and then choose New Project.

  3. Select a project type.

    For example, to build a C++ app, choose Installed, expand Visual C++, and then choose the C++ project type that you want to build.

    To build a C# app, choose Installed, expand Visual C#, and then choose the C# project type that you want to build.

  1. After Visual Studio installation is complete, choose the Launch button to get started developing with Visual Studio.

  2. On the start window, choose Create a new project.

  3. In the search box, enter the type of app you want to create to see a list of available templates. The list of templates depends on the workload(s) that you chose during installation. To see different templates, choose different workloads.

    You can also filter your search for a specific programming language by using the Language drop-down list. You can filter by using the Platform list and the Project type list, too.

  4. Visual Studio opens your new project, and you’re ready to code!

Свойства проектаProject properties

Строка в файле Calendar.cs, содержащая атрибут InternalsVisibleToAttribute, ссылается на имя сборки (имя файла) проекта QuickTest.The line in the Calendar.cs file that contains the InternalsVisibleToAttribute attribute references the assembly name (file name) of the QuickTest project. Имя сборки может не всегда совпадать с именем проекта.The assembly name might not always be the same as the project name. Чтобы найти имя сборки проекта, откройте свойства проекта.To find the assembly name of a project, open the project properties.

Выберите проект QuickTest в Обозревателе решений.In Solution Explorer, select the QuickTest project. Выберите Свойства в контекстном меню или просто нажмите клавиши ALT+ВВОД.From the right-click or context menu, select Properties, or just press Alt+Enter.
Страницы свойств для проекта, открытые на вкладке Приложение. Страницы свойств содержат различные параметры для проекта.The property pages for the project open on the Application tab. The property pages contain various settings for the project

Обратите внимание, что имя сборки проекта QuickTest действительно имеет значение «QuickTest».Notice that the assembly name of the QuickTest project is indeed «QuickTest». Если вы хотите изменить его, это можно сделать здесь.If you wanted to change it, this is where you’d do that

Позже, при сборке тестового проекта, имя итогового двоичного файла изменится с QuickTest.dll на то, которое вы выбрали.Then, when you build the test project, the name of the resulting binary file would change from QuickTest.dll to whatever you chose.
!(media/tutorial-projects-netcore-properties.png «Диалоговое окно «Свойства проекта» в Visual Studio.»)

Изучите другие вкладки на страницах свойств проекта, такие как Сборка и Отладка.Explore some of the other tabs of the project’s property pages, such as Build and Debug. Эти вкладки отличаются для различных типов проектов.These tabs are different for different types of projects.

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *

Adblock
detector