-
Notifications
You must be signed in to change notification settings - Fork 4
/
jetbrains-tools-japanese.html
3882 lines (3357 loc) · 138 KB
/
jetbrains-tools-japanese.html
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
<!doctype html>
<!--suppress RequiredAttributes -->
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Booth presentation - JetBrains tools - Japanese</title>
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
<meta name="author" content="Hakim El Hattab">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/jetbrains.css" id="theme">
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match(/print-pdf/gi) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName('head')[0].appendChild(link);
</script>
<script type="text/javascript" src="js/jquery-2.1.3.min.js"></script>
<script type="text/javascript" src="js/jetbrains-slides.js"></script>
<script type="text/javascript" src="js/all-products.js"></script>
<script type="text/javascript" src="js/playlist.js"></script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body class="classToBeRemoved">
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<!--region General slides (license giveaways, announcements etc.)-->
<section data-product="general" data-autoslide="20000">
<div class="jetbrains-logo _logo-jetbrains _size-5"></div>
<h1>アンケートに参加して —<br/>ライセンスを獲得してください!</h1>
</section>
<!--endregion-->
<!--region GameDev Intro-->
<section data-product="gamedev_video_intro" data-autoslide="12000"
data-background-video="img/screenshots/gamedev/gamedev_intro.mp4" class="no-background"
data-background-size="cover">
</section>
<!--endregion-->
<!--region Rider-->
<!-- 200 dpi is preferred (some images use 150 dpi), Visual Studio Dark, Darcula -->
<section data-product="rider">
<h2>Rider</h2>
<p>高速で強力なクロスプラットフォーム.NET IDE</p>
<div class="jetbrains-logo _logo-rider _size-5"></div>
</section>
<section class="high-image-inside" data-product="rider">
<div class="content-col">
<h2>Windows、macOS、Linuxで.NETのコーディング</h2>
<p>WebStorm、IntelliJ IDEA、その他のJetBrainsツールと同様のIDEでコーディングできます。</p>
</div>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/welcome.png">
</div>
</section>
<section data-product="rider">
<h2>Alt+Enterでコードを修正または改善</h2>
<p>Riderは内部的にReSharperのコード解析を使用しています。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/alt_enter.png">
</p>
</section>
<section class="high-image-inside" data-product="rider" data-autoslide="18300">
<h2>Roslynアナライザ</h2>
<p>さらに強力にコードの品質を向上させます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/roslyn-analyzer.gif">
</div>
</section>
<section data-product="rider">
<h2>コードの改善にかかる時間を節約</h2>
<p>多数のクイックフィックスをファイル、プロジェクト、またはソリューションに適用できます。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/quick_fix_remove_redundant_code.png">
</p>
</section>
<section class="high-image-inside" data-product="rider" data-autoslide="12000">
<h2>Code Vision</h2>
<p>新しい方法で、エディタ内から直接コードに関する有用な情報を確認できます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/code-vision.gif">
</div>
</section>
<section data-product="rider">
<h2>コードを片っ端からリファクタリング</h2>
<p>コードのRename(名前変更)・move(移動)・extract(抽出)、または階層の変更を実行できます。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/refactor.png">
</p>
</section>
<section data-product="rider">
<h2>プロジェクト全体のRename(名前変更)</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/rename-project.png">
</p>
</section>
<section data-product="rider">
<h2>Solution Explorerまたはパンくずリストによるナビゲーション</h2>
<p>複数のナビゲーション機能でコードベース内を移動できます。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/navigation_breadcrumbs.png">
</p>
</section>
<section data-product="rider">
<h2>Search Everywhere(どこでも検索)</h2>
<p>単一のUIからクラス・ファイル・最近編集した項目を検索できます。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/search_everywhere.png">
</p>
</section>
<section data-product="rider">
<h2>任意の.NETアプリケーションをデバッグ</h2>
<p>デバッガは .NET Framework、.NET Core、Mono、Xamarin、Unity、ASP.NET、ASP.NET Coreをサポートしています。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/debugger.png">
</p>
</section>
<section data-product="rider" data-autoslide="7000">
<h2>サードパーティのコードをデバッグ</h2>
<p>Riderがデコンパイルするアセンブリ内で直接ステップ実行を行い、<br>ブレークポイントを設定できます。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/debugging-third-party-code.png">
</p>
</section>
<section data-product="rider">
<h2>スマートなステップインアクション</h2>
<p>Riderは複数のステートメントを含む行のデバッグを簡単にします。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/smart-step-into.png">
</p>
</section>
<section data-product="rider" data-autoslide="7000">
<h2>デバッガのMemoryビュー</h2>
<p>アプリケーションの内部動作を確認し、デバッグ中にマネージヒープを調べることができます。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/memory-view.png">
</p>
</section>
<section class="high-image-inside" data-product="rider">
<h2>デバッガでのDockerのサポート</h2>
<p>Dockerコンテナ内でアプリケーションをデバッグできます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/docker-debugging.png">
</div>
</section>
<section data-product="rider">
<h2>リモートデバッグ</h2>
<p>.NET Framework、.NET Core、Monoのアプリケーションをリモートでデバッグできます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/remote-debug.png">
</div>
</section>
<section data-product="rider" data-autoslide="7000">
<h2>例外のポップアップ </h2>
<p>発生した例外に関する基本的な情報を参照し、ハイライト表示されたスタックトレースからすばやく移動できます。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/exception-popup.png">
</p>
</section>
<section class="high-image-inside" data-product="rider">
<h2>ユニットテストの実行と管理</h2>
<p>.NET Framework、.NET Core、またはMonoを対象にするNUnitまたはxUnitを使用できます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/unit_testing.png">
</div>
</section>
<section data-product="rider">
<h2>単体テストのカバーと継続的な実行</h2>
<p>Windowsのみ</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/unit-test-coverage.png">
</p>
</section>
<section class="high-image-inside" data-product="rider">
<h2>統合されたパフォーマンスプロファイラ</h2>
<p>Windowsのみ</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/performance-profiler.png">
</div>
</section>
<section data-product="rider">
<h2>IISまたはFTPへの公開</h2>
<p>ローカルまたはリモートサーバーにASP.NET Coreウェブアプリケーションをデプロイできます。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/publishing-to-iis.png">
</p>
</section>
<section class="high-image-inside" data-product="rider">
<h2>F#プロジェクトのビルド・実行・デバッグ </h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/support-f-sharp.png">
</div>
</section>
<section class="high-image-inside" data-product="rider">
<h2>データベースおよびSQLに対応</h2>
<p>SQLスクリプトの編集と実行、SQLサーバーや各種DBMSへの接続に対応しています。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/database.png">
</div>
</section>
<section class="high-image-inside" data-product="rider">
<div class="content-col">
<h2>VCSの変更を管理</h2>
<p>Git、GitHub、Subversion、Mercurial、Perforce、CVSおよびTFVCに対応しています。</p>
</div>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/vcs.png">
</div>
</section>
<section data-product="rider">
<h2>集中モード</h2>
<p>Riderをメモ帳のような外観にしながら、パワフルなIDEのように機能させることができます。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/distraction_free_mode.png">
</p>
</section>
<section data-product="rider">
<h2>1000種類以上のプラグイン</h2>
<p>ReSharperとIntelliJプラットフォームのプラグインをRiderでご利用いただけます。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/rider/plugins.png">
</p>
</section>
<section data-product="rider">
<h2>詳細を確認して、無料30日間体験版のダウンロード</h2>
<p>jetbrains.com/rider</p>
<div class="jetbrains-logo _logo-rider _size-5"></div>
</section>
<!--endregion-->
<!--region GameDev Intro: Unity-->
<section data-product="gamedev_video_unity_intro" data-autoslide="12000"
data-background-video="img/screenshots/gamedev/Unity_intro.mp4" class="no-background"
data-background-size="cover">
</section>
<!--endregion-->
<!--region rider-unity-->
<section data-product="rider-unity" class="no-background" style="color: white"
data-background-image="img/background_rider_unity.jpg" data-background-size="cover">
<img data-src="img/big_logo_rider_unity.svg" class="plain" style="background: none;"/>
<p>クロスプラットフォーム.NET IDE</p>
<p>Unity C#スクリプト作成を強力に支援</p>
<div class="jetbrains-logo _logo-rider _size-5"></div>
</section>
<section class="high-image-inside" data-product="rider-unity">
<div class="content-col">
<h2>2,500種類以上のインスペクション、リファクタリング、およびクイックフィックス</h2>
<p>Unityスクリプトのコードを深く理解します。</p>
</div>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/inspections.png" class="plain">
</div>
</section>
<section data-product="rider-unity" data-autoslide="6000">
<h2><kbd>Alt</kbd>+<kbd>Enter</kbd>でフィックスインスペクション
</h2>
<p>高速かつ静的なコード解析により、コードの問題を検出して修正できます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/unity_alt_enter.gif">
</div>
</section>
<section class="high-image-inside" data-product="rider-unity">
<h2>Search Everywhere(どこでも検索)</h2>
<p>単一のUIからパワフルかつ高速な検索機能を使って、ファイルやC#のクラス、またはシンボルを見つけることができます。</p>
<div class="image-col">
<img class="plain" data-src="img/screenshots/resharper-ultimate/rider-unity/search_everywhere.png">
</div>
</section>
<section data-product="rider-unity">
<h2>豊富なコードナビゲーション</h2>
<p>使用箇所を検索し、型メンバーに移動し、クラス階層間を遷移できます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/navigate_to.png">
</div>
</section>
<section data-product="rider-unity" data-autoslide="12500">
<h2>Unityの外部エディタとして設定</h2>
<p>C#ファイルをダブルクリックし、Riderで開くことができます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/unity_integration.gif">
</div>
</section>
<section data-product="rider-unity">
<h2>ワンクリックでUnityエディタをデバッグ</h2>
<p>プレイモードに自動的に切り替えできます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/debug_configurations.png">
</div>
</section>
<section data-product="rider-unity">
<h2>Unityプレイヤーをデバッグ</h2>
<p>ローカルのプレイヤーまたはネットワーク上のデバイスを検出できます。</p>
<div class="image-col">
<img class="plain" data-src="img/screenshots/resharper-ultimate/rider-unity/debug_players.png">
</div>
</section>
<section data-product="rider-unity">
<h2>割り当てられたコンポーネントと<br>子階層をデバッガで表示</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/debug_extensions.png">
</div>
</section>
<section class="high-image-inside" data-product="rider-unity">
<h2>Unity ExplorerでUnityプロジェクトの構造を表示</h2>
<p>アセットとパッケージを表示します。</p>
<div class="image-col">
<img class="plain" data-src="img/screenshots/resharper-ultimate/rider-unity/unity_explorer.png">
</div>
</section>
<section class="high-image-inside" data-product="rider-unity">
<h2>エディタから直接Unityスクリプトを作成</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/file_templates.png">
</div>
</section>
<section class="high-image-inside" data-product="rider-unity" data-autoslide="15500">
<h2>Unityログビューア</h2>
<p>ログを表示し、その中を遷移できます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/log_viewer.gif">
</div>
</section>
<section data-product="rider-unity" data-autoslide="16500">
<h2>Riderから直接Unityを再生、一時停止、ステップ実行</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/play_pause.gif">
</div>
</section>
<section class="high-image-inside" data-product="rider-unity" data-autoslide="10500">
<h2>Unityイベント関数の生成</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/unity_generate_code.gif">
</div>
</section>
<section data-product="rider-unity" data-autoslide="8000">
<h2>Unityイベント関数のコード補完</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/unity_code_completion.gif">
</div>
</section>
<section data-product="rider-unity">
<h2>クイックドキュメントとUnityヘルプへのリンク</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/quick_doc.png">
</div>
</section>
<section data-product="rider-unity">
<h2>Unity固有のCode Vision</h2>
<p>明示的に使用されているクラス、イベント関数、およびシリアル化されたフィールドのリンク</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/code_vision.png">
</div>
</section>
<section data-product="rider-unity">
<h2>シーンおよびアセット内のイベントハンドラの使用箇所を検索</h2>
<p>Unityでの使用箇所を表示できます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/show_usages_in_unity.png">
</div>
</section>
<section data-product="rider-unity">
<h2>「マジックストリング」のサポート</h2>
<p>コード補完、使用箇所の検索、名前の変更
<p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/invoke.png">
</div>
</section>
<section class="high-image-inside" data-product="rider-unity" data-autoslide="28000">
<h2>Unity固有のコードインスペクションとクイックフィックス</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/unity_inspections.gif">
</div>
</section>
<section data-product="rider-unity">
<h2>パフォーマンスインジケーター</h2>
<p>パフォーマンスに問題のあるコードとコストの高い既知のAPIへの呼び出しをハイライト</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/performance_indicators.png">
</div>
</section>
<section data-product="rider-unity">
<h2>統合ILビューア</h2>
<p>コードの挙動を正確に把握できます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/il_viewer.png">
</div>
</section>
<section data-product="rider-unity">
<h2>シェーダーファイルのサポート</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/shaderlab.png">
</div>
</section>
<section data-product="rider-unity">
<h2>ハイライト表示と編集のカラー化</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider-unity/colour_highlighting.png">
</div>
</section>
<section class="high-image-inside" data-product="rider-unity">
<div class="content-col">
<h2>VCSの変更を管理</h2>
<p>Git、GitHub、Mercurial、Perforce、Subversion、CVSおよびTFVCに対応しています。</p>
</div>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/vcs.png">
</div>
</section>
<section class="high-image-inside" data-product="rider-unity">
<h2>データベースおよびSQLに対応</h2>
<p>複数のデータベースプラットフォームでのSQLスクリプトの編集と実行に対応しています。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/database.png">
</div>
</section>
<section data-product="rider-unity">
<h2>1000種類以上のプラグイン</h2>
<p>ReSharperとIntelliJのプラグインをRiderでご利用いただけます。</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/rider/plugins.png">
</div>
</section>
<section data-product="rider-unity">
<h2>詳細を確認して、無料30日間体験版のダウンロード</h2>
<p>jetbrains.com/unity</p>
<div class="jetbrains-logo _logo-rider _size-5"></div>
</section>
<!--endregion-->
<!--region ReSharper-->
<section data-product="resharper">
<h2>ReSharper</h2>
<p>.NETおよびウェブ開発者向け<br/>Visual Studio拡張機能</p>
<div class="jetbrains-logo _logo-resharper _size-5"></div>
</section>
<section data-product="resharper">
<h2>継続的なコード品質解析</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/code_analysis.png">
</p>
</section>
<section data-product="resharper">
<h2>クイックフィックスによるコードの改善</h2>
<p>C#、VB.NET、XAML、ASP.NET、HTML、JavaScript、TypeScript、CSS、XML</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/qf_general.png">
<!--TODO Add shortcut callout (Alt+Enter)-->
</p>
</section>
<section data-product="resharper">
<h2>共通の命名規則を使用</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/qf_naming.png">
</p>
</section>
<section data-product="resharper">
<h2>準備が完了次第、C#6 または 7に移行可能</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/qf_csharp6.png">
</p>
</section>
<section data-product="resharper">
<h2>LINQの使用箇所を確認可能</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/qf_linq.png">
</p>
</section>
<section data-product="resharper">
<h2>潜在的な例外の検出と予防</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/qf_invalid_cast.png">
</p>
</section>
<section data-product="resharper">
<h2>未使用または到達不能なコードを検出</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/qf_unreachable_code.png">
</p>
</section>
<section data-product="resharper">
<h2>潜在的な脅威となる問題を検出</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/qf_lock.png">
</p>
</section>
<section data-product="resharper">
<h2>ソリューション全体で発生したエラーを追跡</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/swa.png">
</p>
</section>
<section data-product="resharper">
<h2>任意の範囲であらゆるコードの問題をすばやく検出</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/inspection_results.png">
</p>
</section>
<section data-product="resharper">
<h2>統合されたReSpellerによるコードのスペルチェック</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/spell-checking.png">
</p>
</section>
<section data-product="resharper">
<h2>JSLint、ESLint、TSLintによるJS/TSコードのリンティング</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/linters.png">
</p>
</section>
<section data-product="resharper">
<h2>拡張された補完機能で高速にコーディング</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/completion.png">
<!--TODO Add shortcut callout (Ctrl+Space)-->
</p>
</section>
<section data-product="resharper">
<h2>拡張された補完機能で高速にコーディング</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/completion2.png">
</p>
</section>
<section data-product="resharper">
<h2>ボイラープレートコードの高速生成</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/generate_general.png">
</p>
</section>
<section data-product="resharper">
<h2>ボイラープレートコードの高速生成</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/generate_override_members.png">
</p>
</section>
<section class="high-image-inside" data-product="resharper">
<h2>楽しくデバッグ</h2>
<p>インラインデバッグ情報と検索可能なデータヒント</p>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/resharper/debugging_assistance.png">
</div>
</section>
<section data-product="resharper">
<h2>安全にリファクタリング</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/refactor_this.png">
<!--TODO Add shortcut callout (Ctrl+Shift+R)-->
</p>
</section>
<section data-product="resharper">
<h2>コード使用箇所の検索と参照</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/find_usages.png">
</p>
</section>
<section data-product="resharper">
<h2>コード使用箇所の検索と参照</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/go_to_usages.png">
</p>
</section>
<section data-product="resharper">
<h2>任意のコードにすばやく移動</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/go_to_symbol.png">
</p>
</section>
<section data-product="resharper">
<h2>ソースやテキスト形式ファイル内で任意のテキストを検索</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/go_to_word.png">
</p>
</section>
<section data-product="resharper">
<h2>コンテキスト対応ナビゲーションによる高速化</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/navigate_to.png">
</p>
</section>
<section data-product="resharper" data-autoslide="25000">
<h2>構造的なコード片間を移動</h2>
<p>ブラウザでウェブページをタブで切り替えるように移動できます。</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/tab_navigation.gif">
</p>
</section>
<section data-product="resharper">
<h2>ウェブ開発を楽しむ</h2>
<p>ASP.NET(Core、MVC、Web Forms)、HTML、JavaScript、TypeScript、Angular、JSON、CSS</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/aspnet.png">
<!--TODO Add shortcut callout (Alt+Enter)-->
</p>
</section>
<section data-product="resharper">
<h2>XAML開発を楽しむ</h2>
<p>WPF、Silverlight、Windows Phone、ユニバーサルWindowsプラットフォーム</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/xaml1.png">
<!--TODO Add shortcut callout (Alt+Enter)-->
</p>
</section>
<section data-product="resharper">
<h2>XAML開発を楽しむ</h2>
<p>WPF、Silverlight、Windows Phone、ユニバーサルWindowsプラットフォーム</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/xaml2.png">
</p>
</section>
<section data-product="resharper">
<h2>ユニットテストの管理と実行</h2>
<p>NUnit、MSTest、xUnit、QUnit、Jasmine...</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/unit_test_explorer_default.png">
</p>
</section>
<section data-product="resharper">
<h2>ユニットテストの管理と実行</h2>
<p>NUnit、MSTest、xUnit、QUnit、Jasmine...</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/unit_test_explorer_categories.png">
</p>
</section>
<section data-product="resharper">
<h2>ユニットテストの管理と実行</h2>
<p>NUnit、MSTest、xUnit、QUnit、Jasmine...</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/unit_test_explorer_sessions.png">
</p>
</section>
<section data-product="resharper">
<h2>ユニットテストの管理と実行</h2>
<p>NUnit、MSTest、xUnit、QUnit、Jasmine...</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/unit_tests_context.png">
</p>
</section>
<section data-product="resharper">
<h2>ユニットテストの管理と実行</h2>
<p>NUnit、MSTest、xUnit、QUnit、Jasmine...</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/unit_test_sessions.png">
</p>
</section>
<section data-product="resharper">
<h2>ReSharperの拡張</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/extensions.png">
</p>
</section>
<section data-product="resharper">
<h2>コマンドラインからインスペクションを実行</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper/command_line.png">
</p>
</section>
<section data-product="resharper">
<h2>詳細を確認して、無料30日間体験版のダウンロード</h2>
<p>jetbrains.com/resharper</p>
<div class="jetbrains-logo _logo-resharper _size-5"></div>
</section>
<!--endregion-->
<!--region GameDev Intro: Unreal-->
<section data-product="gamedev_video_unreal_intro" data-autoslide="12000"
data-background-video="img/screenshots/gamedev/Unreal_intro.mp4" class="no-background"
data-background-size="cover">
</section>
<!--endregion-->
<!--region ReSharper C++-->
<section data-product="resharper-cpp">
<h2>ReSharper C++</h2>
<p>C++開発者向け<br/>Visual Studio拡張機能</p>
<div class="jetbrains-logo _logo-resharper-cpp _size-5"></div>
</section>
<section data-product="resharper-cpp">
<h2>最新のC++標準をネイティブでサポート</h2>
<p>C++14、C++17、C++20を含む!</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/fold_expressions.png">
</p>
</section>
<section data-product="resharper-cpp" data-autoslide="8000">
<h2>C++/CLIの初期サポート</h2>
<p>次を含みます。</p>
<ul>
<li>コードインスペクション</li>
<li>入力支援</li>
<li>書式設定</li>
<li>コード補完</li>
<li>ナビゲーション</li>
</ul>
<p>
ReSharper Ultimateのサブスクリプションが必要です。
</p>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/cpp-cli-rename.gif">
</p>
</section>
<section class="high-image-inside" data-product="resharper-cpp">
<h2>デザイン時のコード品質解析</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/code_analysis.png">
</div>
</section>
<section data-product="resharper-cpp">
<h2>テンプレートコードで役立つエラー診断</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/substitution_failed.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>プロジェクトまたはソリューション内でコードの問題を検出</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/inspection_results.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>クイックフィックスによるコードの修正と改善</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/qf_redundant_qualifier.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>クイックフィックスによるコードの修正と改善</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/qf_use_type.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>スマート補完機能で高速にコーディング</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/code_completion.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>コンテキストアクションを使ったコード変換</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/ca_generate_constructor.png">
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/ca_generate_implementation.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>コンテキストアクションを使ったコード変換</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/ca_substitute_typedef.png">
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/ca_merge_nested_if.png">
</p>
</section>
<section class="high-image-inside" data-product="resharper-cpp" data-autoslide="33000">
<h2>コンテキストアクションを使ったコード変換</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/enum_to_string2.gif">
</div>
</section>
<section data-product="resharper-cpp">
<h2>安全にリファクタリング</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/refactoring_popup.png">
</p>
</section>
<section class="high-image-inside" data-product="resharper-cpp">
<h2>安全にリファクタリング</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/refactoring_dialog.png">
</div>
</section>
<section data-product="resharper-cpp">
<h2>シンボルの使用箇所を参照</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/find_usages.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>詳細なパラメータ情報の取得</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/parameter_info_templates.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>パラメータや名前空間のリスト内を移動</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/parameter_hints.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>To-doコメントの参照</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/todo_explorer.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>あらゆるものをすばやく検索</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/go_to_combos.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>スマートなナビゲーションによる高速化</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/navigate_to.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>テンプレートの特殊化間を移動</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/template_specializations.png">
</p>
</section>
<section class="high-image-inside" data-product="resharper-cpp" data-autoslide="33000">
<h2>Go to declaration(宣言に移動)による<br>一致しないシグニチャへの移動</h2>
<div class="image-col">
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/go_to_unmatched.gif">
</div>
</section>
<section data-product="resharper-cpp">
<h2>型の階層を視覚的に参照</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/subtypes_hierarchy.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>include文の階層を視覚的に参照</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/includes_hierarchy.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>Includes Analyzerによるコンパイル速度の最適化</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/includes_analyzer.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>定型コードの生成</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/generate_popup.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>コードテンプレートを使用したコーディングの高速化</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/templates_surround.png">
</p>
</section>
<section data-product="resharper-cpp">
<h2>任意の範囲でコードを再フォーマット</h2>
<p>
<img data-src="img/screenshots/resharper-ultimate/resharper-cpp/format_selection.png">
</p>