Différences
Ci-dessous, les différences entre deux révisions de la page.
Prochaine révision | Révision précédente |
ide:vs:configuration [2018/10/03 11:09] – Création avec "Enlever la flèche "Exécuter jusqu'à la ligne"" root | ide:vs:configuration [2020/05/11 00:03] (Version actuelle) – Suppression de la taille par défaut pour les images root |
---|
====Enlever la flèche "Exécuter jusqu'à la ligne"==== | ====Enlever la flèche "Exécuter jusqu'à la ligne"==== |
{{:ide:vs:configuration:ehiec.png?758|}} | {{:ide:vs:configuration:ehiec.png|}} |
| |
[[https://stackoverflow.com/questions/41072534/how-to-disable-run-execution-to-here-in-visual-studio-15|How to disable “Run execution to here” in Visual Studio 15?]] {{:ide:vs:configuration:how_to_disable_run_execution_to_here_in_visual_studio_15_-_stack_overflow.mhtml|Archive 03/10/2018}} | [[https://stackoverflow.com/questions/41072534/how-to-disable-run-execution-to-here-in-visual-studio-15|How to disable “Run execution to here” in Visual Studio 15?]] {{ :ide:vs:configuration:how_to_disable_run_execution_to_here_in_visual_studio_15_-_stack_overflow_2020-04-28_11_21_44_pm_.html |Archive du 10/12/2016 le 28/04/2020}} |
| |
| ====Afficher les messages d'erreur en anglais==== |
| Il est difficile de faire des recherches sur Internet avec les messages d'erreur en français. |
| |
| Ajouter |
| <code csharp> |
| if (Debugger.IsAttached) |
| CultureInfo.DefaultThreadCurrentUICulture = CultureInfo.GetCultureInfo("en-US"); |
| </code> |
| |
| après |
| <code csharp> |
| static void Main() |
| { |
| </code> |
| |
| [[https://stackoverflow.com/questions/852569/configure-visual-studio-to-show-error-messages-in-english|Configure Visual Studio to show error messages in English]] {{ :ide:vs:configuration:localization_-_configure_visual_studio_to_show_error_messages_in_english_-_stack_overflow_2020-04-28_11_21_45_pm_.html |Archive du 12/05/2009 le 28/04/2020}} |