-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathyaml_linter_run_project.txt
More file actions
1728 lines (1727 loc) · 883 KB
/
Copy pathyaml_linter_run_project.txt
File metadata and controls
1728 lines (1727 loc) · 883 KB
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
f:\Floofdev\HardLight\RobustToolbox\Robust.Shared.Scripting\ScriptInstanceShared.cs(111,30): warning CS0618: 'Classifier.GetClassifiedSpans(SemanticModel, TextSpan, Workspace, CancellationToken)' is obsolete: 'Use GetClassifiedSpansAsync instead' [f:\Floofdev\HardLight\RobustToolbox\Robust.Shared.Scripting\Robust.Shared.Scripting.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Server\ViewVariables\ViewVariablesSession.cs(102,37): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\RobustToolbox\Robust.Server\Robust.Server.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\RichText\MarkupDrawingContext.cs(11,26): warning CS0618: 'IMarkupTag' is obsolete: 'Use IMarkupTagHandler' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\Controls\BaseButton.cs(394,33): warning CS0672: Member 'BaseButton.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'BaseButton.Dispose(bool)'. [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\CustomControls\DefaultWindow.xaml.cs(129,33): warning CS0672: Member 'DefaultWindow.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'DefaultWindow.Dispose(bool)'. [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Animations\AnimationTrackSpriteFlick.cs(58,27): warning CS0618: 'SpriteComponent.LayerGetActualRSI(object)' is obsolete: 'Use SpriteSystem.LayerGetEffectiveRsi() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Animations\AnimationTrackSpriteFlick.cs(62,21): warning CS0618: 'SpriteComponent.LayerSetAutoAnimated(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetAutoAnimated() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Animations\AnimationTrackSpriteFlick.cs(65,21): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Animations\AnimationTrackSpriteFlick.cs(66,21): warning CS0618: 'SpriteComponent.LayerSetAnimationTime(object, float)' is obsolete: 'Use SpriteSystem.LayerSetAnimationTime() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Animations\AnimationTrackComponentProperty.cs(29,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\ViewVariables\Instances\ViewVariablesInstanceEntity.cs(372,33): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\ViewVariables\Instances\ViewVariablesInstanceEntity.cs(383,33): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\ViewVariables\Editors\VVPropEditorIPrototype.cs(64,24): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\ViewVariables\Editors\VVPropEditorIPrototype.cs(113,24): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\ViewVariables\Editors\VVPropEditorEntityCoordinates.cs(34,24): warning CS0618: 'EntityCoordinates.GetGridUid(IEntityManager)' is obsolete: 'Use SharedTransformSystem.GetGrid()' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\ViewVariables\Editors\VVPropEditorDummy.cs(17,17): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\ViewVariables\ClientViewVariablesManager.cs(126,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\ViewVariables\ClientViewVariablesManager.cs(208,17): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Debugging\DebugPhysicsSystem.cs(244,42): warning CS0618: 'SharedPhysicsSystem.GetCollidingEntities(MapId, in Box2Rotated)' is obsolete: 'Use EntityLookupSystem' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Debugging\DebugPhysicsSystem.cs(288,42): warning CS0618: 'SharedPhysicsSystem.GetCollidingEntities(MapId, in Box2Rotated)' is obsolete: 'Use EntityLookupSystem' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Debugging\DebugPhysicsSystem.cs(309,42): warning CS0618: 'SharedPhysicsSystem.GetCollidingEntities(MapId, in Box2Rotated)' is obsolete: 'Use EntityLookupSystem' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Debugging\DebugPhysicsSystem.cs(396,42): warning CS0618: 'SharedPhysicsSystem.GetCollidingEntities(MapId, in Box2)' is obsolete: 'Use EntityLookupSystem' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Debugging\DebugPhysicsSystem.cs(398,31): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\WordWrap.cs(144,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\WordWrap.cs(149,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\WordWrap.cs(150,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\WordWrap.cs(151,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\WordWrap.cs(152,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\WordWrap.cs(153,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\WordWrap.cs(154,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\WordWrap.cs(155,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\WordWrap.cs(156,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\Themes\UiTheme.cs(52,9): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Console\Commands\UITestCommand.TabSpriteView.cs(196,17): warning CS0618: 'SpriteComponent.Offset.set' is obsolete: 'Use SpriteSystem.SetOffset() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Console\Commands\UITestCommand.TabSpriteView.cs(204,17): warning CS0618: 'SpriteComponent.Scale.set' is obsolete: 'Use SpriteSystem.SetScale() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Console\Commands\UITestCommand.TabSpriteView.cs(211,17): warning CS0618: 'SpriteComponent.Rotation.set' is obsolete: 'Use SpriteSystem.SetRotation() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Console\Commands\UITestCommand.TabSpriteView.cs(218,17): warning CS0618: 'SpriteComponent.Scale.set' is obsolete: 'Use SpriteSystem.SetScale() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Console\Commands\UITestCommand.TabSpriteView.cs(219,17): warning CS0618: 'SpriteComponent.Offset.set' is obsolete: 'Use SpriteSystem.SetOffset() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Console\Commands\UITestCommand.TabSpriteView.cs(220,17): warning CS0618: 'SpriteComponent.Rotation.set' is obsolete: 'Use SpriteSystem.SetRotation() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\GameObjects\EntitySystems\SpriteSystem.Component.cs(77,25): warning CS0612: 'SpriteComponent.Layer.Layer(SpriteComponent.Layer, SpriteComponent)' is obsolete [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\GameObjects\EntitySystems\SpriteSystem.cs(79,13): warning CS0618: 'SpriteSystem.QueueUpdateInert(EntityUid, SpriteComponent)' is obsolete: 'Use QueueUpdateIsInert' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Graphics\Shaders\ShaderPrototype.cs(71,29): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Graphics\Shaders\ShaderPrototype.cs(131,33): warning CS0618: 'Logger.ErrorS(string, string, params object?[])' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\Screens\DebugBuiltinConnectionScreen.xaml.cs(83,13): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\RichText\MarkupDrawingContext.cs(17,25): warning CS0618: 'IMarkupTag' is obsolete: 'Use IMarkupTagHandler' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\RichText\MarkupDrawingContext.cs(24,25): warning CS0618: 'IMarkupTag' is obsolete: 'Use IMarkupTagHandler' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\RichText\ItalicTag.cs(22,42): warning CS0184: The given expression is never of the provided ('BoldTag') type [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\RichText\BoldTag.cs(22,42): warning CS0184: The given expression is never of the provided ('ItalicTag') type [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\GameObjects\EntitySystems\SpriteSystem.cs(223,30): warning CS0618: 'SpriteSpecifierExt.GetTexture(SpriteSpecifier.Texture, IResourceCache)' is obsolete: 'Use SpriteSystem.GetTexture() instead' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Graphics\Clyde\Clyde.GridRendering.cs(55,18): warning CS0618: 'IMapManager.MapExists(MapId?)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\GameObjects\EntitySystems\GenericVisualizerSystem.cs(39,34): warning CS0618: 'SpriteComponent.LayerMapReserveBlank(object)' is obsolete: 'Use SpriteSystem.LayerMapReserve() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\GameObjects\EntitySystems\GenericVisualizerSystem.cs(40,17): warning CS0618: 'SpriteComponent.LayerSetData(int, PrototypeLayerData)' is obsolete: 'Use SpriteSystem.LayerSetData() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\GameObjects\EntitySystems\ContainerSystem.cs(330,17): warning CS0618: 'SpriteComponent.ContainerOccluded.set' is obsolete: 'Use SpriteSystem.SetContainerOccluded() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\DevWindow\ProfTree.xaml.cs(56,13): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\Controls\VerticalTabContainer.xaml.cs(62,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Graphics\Clyde\Clyde.Sprite.cs(131,30): warning CS0618: 'SharedTransformSystem.GetRelativePositionRotation(TransformComponent, EntityUid, EntityQuery<TransformComponent>)' is obsolete: 'Use variant without entity query' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\CustomControls\DefaultWindow.xaml.cs(131,13): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\CustomControls\BaseWindow.cs(214,17): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\Control.cs(642,17): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\UserInterfaceManager.Windows.cs(32,9): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\UserInterfaceManager.Windows.cs(65,9): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\State\StateManager.cs(41,13): warning CS0618: 'Logger.Debug(string)' is obsolete: 'Use ISawmill.Debug' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\UserInterfaceManager.Windows.cs(114,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\Controls\SpriteView.cs(187,29): warning CS0618: 'SpriteComponent.CalculateRotatedBoundingBox(Vector2, Angle, Angle)' is obsolete: 'Use SpriteSystem.CalculateBounds() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\Controls\SpinBox.cs(189,17): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\Controls\SpinBox.cs(194,17): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Placement\PlacementMode.cs(127,17): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\Controls\BaseButton.cs(396,13): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\UserInterface\Controls\AnimatedTextureRect.cs(39,22): warning CS0618: 'SpriteSpecifierExt.RsiStateLike(SpriteSpecifier)' is obsolete: 'Use SpriteSystem.RsiStateLike() instead' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Graphics\Clyde\Clyde.RenderHandle.cs(210,17): warning CS0618: 'SpriteComponent.Render(DrawingHandleWorld, Angle, Angle, Direction?, Vector2)' is obsolete: 'Use SpriteSystem.Render() instead.' [f:\Floofdev\HardLight\RobustToolbox\Robust.Client\Robust.Client.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(49,7): warning CS0105: The using directive for 'Robust.Shared.Serialization.Manager' appeared previously in this namespace [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Supermatter\Systems\SupermatterSystem.cs(25,7): warning CS0105: The using directive for 'Content.Shared.DoAfter' appeared previously in this namespace [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\PublicTransit\PublicTransitSystem.cs(20,7): warning CS0105: The using directive for 'Content.Server.GameTicking' appeared previously in this namespace [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\PublicTransit\PublicTransitSystem.cs(35,7): warning CS0105: The using directive for 'Content.Shared.GameTicking' appeared previously in this namespace [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.Consoles.cs(60,7): warning CS0105: The using directive for 'Content.Server.Shuttles.Systems' appeared previously in this namespace [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(4,7): warning CS0105: The using directive for 'Content.Server.Shuttles.Systems' appeared previously in this namespace [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(5,7): warning CS0105: The using directive for 'Content.Server.Shuttles.Components' appeared previously in this namespace [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(47,7): warning CS0105: The using directive for 'System.Numerics' appeared previously in this namespace [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(65,7): warning CS0105: The using directive for 'Robust.Shared.Utility' appeared previously in this namespace [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(66,7): warning CS0105: The using directive for 'Robust.Shared.Map.Events' appeared previously in this namespace [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(67,7): warning CS0105: The using directive for 'Robust.Shared.Containers' appeared previously in this namespace [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Abilities\Psionics\AnomalyPowerSystem.cs(41,35): warning CS0618: 'SolutionContainerSystem' is obsolete: 'This is being depreciated. Use SharedSolutionContainerSystem instead!' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Anomaly\AnomalySystem.cs(47,6): warning CS0618: 'ValidatePrototypeIdAttribute<WeightedRandomPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Speech\EntitySystems\RatvarianLanguageSystem.cs(14,6): warning CS0618: 'ValidatePrototypeIdAttribute<StatusEffectPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Speech\EntitySystems\SlurredSystem.cs(19,6): warning CS0618: 'ValidatePrototypeIdAttribute<StatusEffectPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Systems\AdminVerbSystem.Antags.cs(26,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Systems\AdminVerbSystem.Antags.cs(29,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Systems\AdminVerbSystem.Antags.cs(32,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Systems\AdminVerbSystem.Antags.cs(35,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Systems\AdminVerbSystem.Antags.cs(38,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Systems\AdminVerbSystem.Antags.cs(41,6): warning CS0618: 'ValidatePrototypeIdAttribute<StartingGearPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.Spawning.cs(37,10): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.Spawning.cs(40,10): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.cs(76,6): warning CS0618: 'ValidatePrototypeIdAttribute<ExplosionPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\Rules\NukeopsRuleSystem.cs(41,6): warning CS0618: 'ValidatePrototypeIdAttribute<CurrencyPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\Rules\NukeopsRuleSystem.cs(44,6): warning CS0618: 'ValidatePrototypeIdAttribute<TagPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Fluids\EntitySystems\PuddleSystem.cs(63,6): warning CS0618: 'ValidatePrototypeIdAttribute<ReagentPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Fluids\EntitySystems\PuddleSystem.cs(66,6): warning CS0618: 'ValidatePrototypeIdAttribute<ReagentPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Fluids\EntitySystems\PuddleSystem.cs(69,6): warning CS0618: 'ValidatePrototypeIdAttribute<ReagentPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Gateway\Systems\GatewayGeneratorSystem.cs(40,6): warning CS0618: 'ValidatePrototypeIdAttribute<LocalizedDatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\StationEvents\BasicStationEventSchedulerSystem.cs(98,72): warning CS0618: 'Prototype<EntityPrototype>' is obsolete: 'Use ProtoId<T> or EntProtoId, or the prototype directly' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\StationEvents\BasicStationEventSchedulerSystem.cs(151,70): warning CS0618: 'Prototype<EntityPrototype>' is obsolete: 'Use ProtoId<T> or EntProtoId, or the prototype directly' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\StationEvents\BasicStationEventSchedulerSystem.cs(174,74): warning CS0618: 'Prototype<EntityPrototype>' is obsolete: 'Use ProtoId<T> or EntProtoId, or the prototype directly' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\StationEvents\BasicStationEventSchedulerSystem.cs(201,45): warning CS0618: 'Prototype<EntityPrototype>' is obsolete: 'Use ProtoId<T> or EntProtoId, or the prototype directly' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Spreader\KudzuSystem.cs(17,6): warning CS0618: 'ValidatePrototypeIdAttribute<EdgeSpreaderPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Audio\ContentAudioSystem.cs(16,6): warning CS0618: 'ValidatePrototypeIdAttribute<SoundCollectionPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Kitchen\EntitySystems\MicrowaveSystem.cs(74,10): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Body\Commands\AddHandCommand.cs(21,10): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Medical\BiomassReclaimer\BiomassReclaimerSystem.cs(60,10): warning CS0618: 'ValidatePrototypeIdAttribute<MaterialPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\CartridgeLoader\Cartridges\CrewManifestCartridgeSystem.cs(19,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Paint\PaintSystem.cs(26,35): warning CS0618: 'SolutionContainerSystem' is obsolete: 'This is being depreciated. Use SharedSolutionContainerSystem instead!' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Procedural\DungeonSystem.cs(57,6): warning CS0618: 'ValidatePrototypeIdAttribute<ContentTileDefinition>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Traitor\Uplink\UplinkSystem.cs(25,6): warning CS0618: 'ValidatePrototypeIdAttribute<CurrencyPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Traits\Assorted\NarcolepsySystem.cs(12,6): warning CS0618: 'ValidatePrototypeIdAttribute<StatusEffectPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\StoreDiscount\Systems\StoreDiscountSystem.cs(17,6): warning CS0618: 'ValidatePrototypeIdAttribute<StoreCategoryPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Medical\VomitSystem.cs(34,10): warning CS0618: 'ValidatePrototypeIdAttribute<SoundCollectionPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Chat\Systems\ChatSystem.cs(883,6): warning CS0618: 'ValidatePrototypeIdAttribute<ReplacementAccentPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Research\Oracle\OracleSystem.cs(41,35): warning CS0618: 'SolutionContainerSystem' is obsolete: 'This is being depreciated. Use SharedSolutionContainerSystem instead!' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Chemistry\EntitySystems\ChemMasterSystem.cs(43,10): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Revenant\EntitySystems\RevenantSystem.cs(49,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Temperature\Systems\TemperatureSystem.cs(39,6): warning CS0618: 'ValidatePrototypeIdAttribute<AlertCategoryPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Chemistry\SolutionRegenerationSwitcher\SolutionRegenerationSwitcherSystem.cs(13,39): warning CS0618: 'SolutionContainerSystem' is obsolete: 'This is being depreciated. Use SharedSolutionContainerSystem instead!' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Cargo\Systems\CargoSystem.Bounty.cs(36,6): warning CS0618: 'ValidatePrototypeIdAttribute<NameIdentifierGroupPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Salvage\SalvageSystem.ExpeditionConsole.cs(34,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Salvage\SalvageSystem.Magnet.cs(18,6): warning CS0618: 'ValidatePrototypeIdAttribute<RadioChannelPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Commands\FTLDiskCommand.cs(28,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Commands\FTLDiskCommand.cs(31,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Xenoarchaeology\XenoArtifacts\ArtifactSystem.Actions.cs(13,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\EmergencyShuttleSystem.Console.cs(68,6): warning CS0618: 'ValidatePrototypeIdAttribute<AccessLevelPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\EmergencyShuttleSystem.cs(76,6): warning CS0618: 'ValidatePrototypeIdAttribute<TagPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Borgs\BorgSystem.cs(67,6): warning CS0618: 'ValidatePrototypeIdAttribute<JobPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(25,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(27,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(29,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(31,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(33,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(35,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(37,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(39,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(41,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(43,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(45,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(47,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(49,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(51,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(53,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(55,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(57,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Laws\IonStormSystem.cs(59,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Construction\Commands\TileWallsCommand.cs(23,6): warning CS0618: 'ValidatePrototypeIdAttribute<ContentTileDefinition>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Construction\Commands\TileWallsCommand.cs(26,6): warning CS0618: 'ValidatePrototypeIdAttribute<TagPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Electrocution\ElectrocuteCommand.cs(17,10): warning CS0618: 'ValidatePrototypeIdAttribute<StatusEffectPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Electrocution\ElectrocutionSystem.cs(59,6): warning CS0618: 'ValidatePrototypeIdAttribute<StatusEffectPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Electrocution\ElectrocutionSystem.cs(62,6): warning CS0618: 'ValidatePrototypeIdAttribute<DamageTypePrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Cargo\Systems\NFCargoSystem.PirateBounty.cs(28,6): warning CS0618: 'ValidatePrototypeIdAttribute<NameIdentifierGroupPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Drowsiness\DrowsinessSystem.cs(11,6): warning CS0618: 'ValidatePrototypeIdAttribute<StatusEffectPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Abilities\Psionics\PsionicAbilitiesSystem.Functions.cs(107,13): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldGeneratorSystem.cs(219,13): warning CS8073: The result of the expression is always 'false' since a value of type 'EntityUid' is never equal to 'null' of type 'EntityUid?' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Abilities\Psionics\Abilities\TelegnosisPowerSystem.cs(26,13): warning CS0618: 'TransformComponent.AttachToGridOrMap()' is obsolete: 'Use the system's method instead.' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Abilities\Psionics\Abilities\PsionicRegenerationPowerSystem.cs(61,54): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Abilities\Psionics\Abilities\PsionicInvisibilityPowerSystem.cs(65,28): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Abilities\Psionics\Abilities\PsionicInvisibilityPowerSystem.cs(77,28): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\FireControl\FireControlSystem.cs(201,29): warning CS0618: 'EntityCoordinates.ToMap(IEntityManager, SharedTransformSystem)' is obsolete: 'Use SharedTransformSystem.ToMapCoordinates()' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Abilities\Psionics\Abilities\DispelPowerSystem.cs(60,37): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Abilities\Psionics\Abilities\DispelPowerSystem.cs(104,37): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Speech\EntitySystems\CavemanAccentSystem.cs(52,32): error CS0120: An object reference is required for the non-static field, method, or property 'CavemanAccentComponent.MaxWordLength' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\RoundPersistenceSystem.cs(273,25): warning CS0618: 'IMapManager.CreateMap(MapId?)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Abilities\Psionics\Abilities\AnomalyPowerSystem.GasProducer.cs(33,24): warning CS0618: 'MapGridComponent.GetLocalTilesIntersecting(Box2, bool, Predicate<TileRef>?)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Abilities\Psionics\Abilities\AnomalyPowerSystem.GasProducer.cs(78,24): warning CS0618: 'MapGridComponent.GetLocalTilesIntersecting(Box2, bool, Predicate<TileRef>?)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Hardlight\Drugs\PacketSealingSystem.cs(88,13): warning CS0618: 'TransformComponent.Coordinates.set' is obsolete: 'Use the system's setter method instead.' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Hardlight\Drugs\PacketSealingSystem.cs(149,9): warning CS0618: 'TransformComponent.Coordinates.set' is obsolete: 'Use the system's setter method instead.' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\RoundPersistenceSystem.cs(461,24): warning CS0618: 'TransformComponent.WorldPosition' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_EinsteinEngines\Silicon\EmitBuzzOnCrit\EmitBuzzWhileDamagedSystem.cs(54,64): warning CS0618: 'AudioHelpers.WithVariation(float, IRobustRandom?)' is obsolete: 'Use AudioParams.Variation data-field' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_EinsteinEngines\Silicon\DeadStartupButton\DeadStartupButtonSystem.cs(54,49): warning CS0618: 'AudioHelpers.WithVariation(float, IRobustRandom?)' is obsolete: 'Use AudioParams.Variation data-field' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Weather\WeatherSystem.cs(46,14): warning CS0618: 'IMapManager.MapExists(MapId?)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_EinsteinEngines\Power\Systems\BatteryDrinkerSystem.cs(112,13): warning CS8073: The result of the expression is always 'false' since a value of type 'EntityUid' is never equal to 'null' of type 'EntityUid?' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Worldgen\Systems\Debris\SimpleFloorPlanPopulatorSystem.cs(32,26): warning CS0618: 'MapGridComponent.GridTileToLocal(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.Consoles.cs(510,13): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.Consoles.cs(539,17): warning CS0618: 'Logger.Info(string)' is obsolete: 'Use ISawmill.Info' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.Consoles.cs(544,13): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.Consoles.cs(653,17): warning CS0618: 'Logger.Info(string)' is obsolete: 'Use ISawmill.Info' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.Consoles.cs(657,17): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(562,33): warning CS0618: 'TransformComponent.WorldRotation' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(563,33): warning CS0618: 'TransformComponent.WorldPosition' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(607,19): warning CS0618: 'TransformComponent.WorldPosition' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(607,48): warning CS0618: 'TransformComponent.WorldPosition' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(618,13): warning CS0618: 'TransformComponent.WorldPosition' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Supermatter\Systems\SupermatterSystem.cs(70,23): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Standing\StandingStateSystem.cs(28,29): warning CS0618: 'TransformComponent.WorldRotation' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Spider\SpiderSystem.cs(69,32): warning CS0618: 'TurfHelpers.GetEntitiesInTile(EntityCoordinates, LookupFlags, EntityLookupSystem?)' is obsolete: 'Use the lookup system' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Spawners\EntitySystems\SpawnerSystem.cs(22,9): warning CS0618: 'TimerExtensions.SpawnRepeatingTimer(EntityUid, TimeSpan, Action, CancellationToken)' is obsolete: 'Use a system update loop instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardGridSaveSystem.cs(767,25): warning CS0618: 'IMapManager.CreateMap(MapId?)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardGridSaveSystem.cs(835,21): warning CS0618: 'IMapManager.DeleteMap(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardGridSaveSystem.cs(1141,84): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Station\Systems\StationBiomeSystem.cs(31,22): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\StationAi\AiVisionWireAction.cs(26,32): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\StationAi\AiVisionWireAction.cs(32,32): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\StationAi\AiInteractWireAction.cs(25,35): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\StationAi\AiInteractWireAction.cs(31,35): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Singularity\EntitySystems\EventHorizonSystem.cs(292,40): warning CS0618: 'MapGridComponent.GetAnchoredEntities(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ShuttleSystem.FasterThanLight.cs(576,9): warning CS0618: 'IMapManager.SetMapPaused(MapId, bool)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ShuttleSystem.FasterThanLight.cs(797,75): warning CS0618: 'TransformComponent.WorldRotation' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ShuttleSystem.FasterThanLight.cs(798,75): warning CS0618: 'TransformComponent.WorldRotation' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ShuttleSystem.FasterThanLight.cs(805,17): warning CS0618: 'TransformComponent.WorldPosition' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\RoundEnd\RoundEndSystem.cs(193,31): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\RoundEnd\RoundEndSystem.cs(241,31): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ShuttleSystem.Impact.cs(43,62): warning CS0618: 'TransformComponent.WorldPosition' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\EmergencyShuttleSystem.Console.cs(308,31): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\EmergencyShuttleSystem.Console.cs(412,27): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Radiation\Systems\RadiationSystem.Blockers.cs(111,23): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\EmergencyShuttleSystem.cs(342,31): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\EmergencyShuttleSystem.cs(401,27): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Preferences\Managers\ServerPreferencesManager.cs(55,17): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Preferences\Managers\ServerPreferencesManager.cs(125,17): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Procedural\DungeonSystem.Rooms.cs(126,30): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\Nodes\CableTerminalPortNode.cs(20,29): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\Nodes\CableTerminalNode.cs(20,29): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\Nodes\CableNode.cs(20,29): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\Nodes\CableDeviceNode.cs(42,29): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\NodeGroups\PowerNet.cs(52,77): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\NodeGroups\PowerNet.cs(65,40): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\NodeGroups\PowerNet.cs(81,77): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\NodeGroups\PowerNet.cs(94,40): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\ParticleAccelerator\EntitySystems\ParticleAcceleratorSystem.ControlBox.cs(183,39): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Parallax\BiomeSystem.cs(260,28): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Objectives\Systems\StealConditionSystem.cs(115,43): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\StationEvents\EventManagerSystem.cs(305,13): warning CS0618: 'EntityPrototype.TryGetComponent<T>(out T?)' is obsolete: 'Pass in IComponentFactory' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\PsionicsSystem.cs(77,42): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Parallax\BiomeSystem.cs(969,32): warning CS0618: 'MapGridComponent.GetAnchoredEntitiesEnumerator(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\InnatePsionicPowersSystem.cs(28,21): warning CS0618: 'IComponent.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\InnatePsionicPowersSystem.cs(33,21): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nuke\NukeSystem.cs(52,56): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\PsionicsCommands.cs(37,58): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\Generation\Teg\TegNodeGroup.cs(189,25): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\Generation\Teg\TegNodeGroup.cs(137,25): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\EntitySystems\PowerReceiverSystem.cs(83,31): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Glimmer\Structures\GlimmerStructuresSystem.cs(62,53): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Glimmer\GlimmerReactiveSystem.cs(118,17): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Glimmer\GlimmerReactiveSystem.cs(306,35): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Glimmer\GlimmerReactiveSystem.cs(348,43): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Glimmer\GlimmerReactiveSystem.cs(349,41): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Glimmer\GlimmerReactiveSystem.cs(361,46): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NodeContainer\Nodes\PortPipeNode.cs(18,29): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NodeContainer\Nodes\PortablePipeNode.cs(18,29): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NodeContainer\Nodes\PipeNode.cs(180,23): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NodeContainer\Nodes\PipeNode.cs(220,36): warning CS0618: 'MapGridComponent.GetAnchoredEntities(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NodeContainer\Nodes\NodeHelpers.cs(14,39): warning CS0618: 'MapGridComponent.GetAnchoredEntities(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NodeContainer\Nodes\NodeHelpers.cs(52,37): warning CS0618: 'MapGridComponent.GetAnchoredEntities(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NodeContainer\Nodes\NodeHelpers.cs(56,33): warning CS0618: 'MapGridComponent.GetAnchoredEntities(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NodeContainer\Nodes\NodeHelpers.cs(59,33): warning CS0618: 'MapGridComponent.GetAnchoredEntities(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NodeContainer\Nodes\NodeHelpers.cs(62,33): warning CS0618: 'MapGridComponent.GetAnchoredEntities(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NodeContainer\Nodes\NodeHelpers.cs(65,33): warning CS0618: 'MapGridComponent.GetAnchoredEntities(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\EntitySystems\PowerNetSystem.cs(473,60): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\EntitySystems\PowerNetSystem.cs(494,57): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\EntitySystems\PowerNetSystem.cs(501,57): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NodeContainer\Nodes\AdjacentNode.cs(21,29): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\EntitySystems\PowerMonitoringConsoleSystem.cs(529,23): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\EntitySystems\PowerMonitoringConsoleSystem.cs(556,23): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\EntitySystems\PowerMonitoringConsoleSystem.cs(594,23): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\EntitySystems\PowerMonitoringConsoleSystem.cs(643,23): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\EntitySystems\PowerMonitoringConsoleSystem.cs(670,23): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\Systems\NPCCombatSystem.Ranged.cs(194,67): warning CS0618: 'MapGridComponent.WorldToLocal(Vector2)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\MoMMI\MoMMILink.cs(51,17): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\EntitySystems\CableVisSystem.cs(34,24): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\EntitySystems\CableVisSystem.cs(42,33): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Maps\PlanetCommand.cs(50,14): warning CS0618: 'IMapManager.MapExists(MapId?)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Maps\PlanetCommand.cs(63,22): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Mind\MindSystem.cs(295,9): warning CS0618: 'PvsOverrideSystem.ClearOverride(NetEntity)' is obsolete: 'Don't use this, clear specific overrides' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Light\EntitySystems\PoweredLightSystem.cs(381,13): warning CS0618: 'TimerExtensions.SpawnTimer(EntityUid, TimeSpan, Action, CancellationToken)' is obsolete: 'Use a system update loop instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\Pathfinding\PathfindingSystem.Grid.cs(63,35): warning CS0618: 'MapGridComponent.GridTileToLocal(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\Pathfinding\PathfindingSystem.Grid.cs(316,21): warning CS0618: 'MapGridComponent.GridTileToLocal(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Instruments\InstrumentComponent.cs(20,60): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Instruments\InstrumentComponent.cs(21,55): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\InteractionVerbs\Actions\ChatMessageAction.cs(51,14): warning CS0618: 'Loc.TryGetString(string, out string?, params (string, object)[])' is obsolete: 'Use ILocalizationManager' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\NPCBlackboardSerializer.cs(89,34): error CS8605: Unboxing a possibly null value. [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\NPCBlackboardSerializer.cs(127,32): error CS8600: Converting null literal or possible null value to non-nullable type. [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\NPCBlackboardSerializer.cs(128,37): error CS8604: Possible null reference argument for parameter 'value' in 'void NPCBlackboard.SetValue(string key, object value)'. [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Hands\Systems\HandsSystem.cs(232,29): warning CS0618: 'EntityCoordinates.ToMapPos(IEntityManager, SharedTransformSystem)' is obsolete: 'Use SharedTransformSystem.ToMapCoordinates()' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Hands\Systems\HandsSystem.cs(232,85): warning CS0618: 'TransformComponent.WorldPosition' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Gateway\Systems\GatewayGeneratorSystem.cs(103,21): warning CS0618: 'IMapManager.CreateMap(MapId?)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Gateway\Systems\GatewayGeneratorSystem.cs(104,22): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Flash\FlashSystem.cs(104,13): warning CS0618: 'TimerExtensions.SpawnTimer(EntityUid, int, Action, CancellationToken)' is obsolete: 'Use a system update loop instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\EUI\EuiManager.cs(102,17): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Fax\FaxSystem.cs(667,33): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Engineering\EntitySystems\SpawnAfterInteractSystem.cs(37,18): warning CS0618: 'MapGridComponent.TryGetTileRef(EntityCoordinates, out TileRef)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Engineering\EntitySystems\SpawnAfterInteractSystem.cs(50,104): warning CS0618: 'AwaitedDoAfterEvent' is obsolete: 'Dont use async DoAfters' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Engineering\EntitySystems\SpawnAfterInteractSystem.cs(54,36): warning CS0618: 'SharedDoAfterSystem.WaitDoAfter(DoAfterArgs, DoAfterComponent?)' is obsolete: 'Use the synchronous version instead.' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Dragon\DragonRiftSystem.cs(86,35): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\EntityEffects\Effects\MovespeedModifier.cs(76,9): warning CS0612: 'Component.Dirty(IEntityManager?)' is obsolete [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\EntityEffects\Effects\DecrementBloodModificationTracker.cs(19,9): warning CS0618: 'BloodstreamSystem.DecrementBloodModificationTracker(EntityUid)' is obsolete: 'Use dynamic blood restoration instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\DeviceNetwork\Systems\DeviceNetworkSystem.cs(349,21): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\DeviceNetwork\Systems\DeviceNetworkSystem.cs(353,33): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\DeviceNetwork\Systems\DeviceNetworkSystem.cs(356,37): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\EntityEffects\Effects\AreaReactionEffect.cs(88,61): warning CS0618: 'AudioHelpers.WithVariation(float)' is obsolete: 'Use AudioParams.Variation data-field' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\EntityEffects\EffectConditions\JobCondition.cs(31,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\EntityEffects\EffectConditions\JobCondition.cs(37,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Construction\ConstructionSystem.Graph.cs(367,13): warning CS0618: 'TransformComponent.Anchored.set' is obsolete: 'Use the SharedTransformSystem.AnchorEntity/Unanchor methods instead.' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Connection\ConnectionManager.cs(251,29): warning CS0618: 'EntitySystem.TryGet<T>(out T?)' is obsolete: 'Either use a dependency, resolve and cache IEntityManager manually, or use EntityManager.System<T>()' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Construction\ConstructionSystem.Initial.cs(257,85): warning CS0618: 'AwaitedDoAfterEvent' is obsolete: 'Dont use async DoAfters' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Construction\ConstructionSystem.Initial.cs(267,23): warning CS0618: 'SharedDoAfterSystem.WaitDoAfter(DoAfterArgs, DoAfterComponent?)' is obsolete: 'Use the synchronous version instead.' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Chemistry\TileReactions\CreateEntityTileReaction.cs(49,37): warning CS0618: 'TurfHelpers.GetEntitiesInTile(TileRef, LookupFlags, EntityLookupSystem?)' is obsolete: 'Use the lookup system' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Cloning\CloningConsoleSystem.cs(270,25): warning CS0162: Unreachable code detected [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Chat\Systems\ChatSystem.cs(350,59): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Chat\Systems\ChatSystem.cs(380,31): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Chat\Systems\ChatSystem.cs(420,31): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Construction\Conditions\ComponentInTile.cs(61,28): warning CS0618: 'TurfHelpers.GetEntitiesInTile(TileRef, LookupFlags, EntityLookupSystem?)' is obsolete: 'Use the lookup system' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Chat\Managers\ChatManager.cs(113,9): warning CS0618: 'Logger.InfoS(string, string)' is obsolete: 'Use ISawmill.Info' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Atmos\Serialization\TileAtmosCollectionSerializer.cs(51,25): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Atmos\Serialization\TileAtmosCollectionSerializer.cs(94,37): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Construction\Completions\BuildMech.cs(31,13): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Construction\Completions\BuildMech.cs(40,13): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Construction\Completions\BuildMech.cs(46,13): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Construction\Completions\BuildMech.cs(53,13): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Anomaly\Effects\ProjectileAnomalySystem.cs(88,23): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Atmos\Piping\EntitySystems\AtmosPipeAppearanceSystem.cs(57,20): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Atmos\Piping\EntitySystems\AtmosPipeAppearanceSystem.cs(60,29): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Atmos\Piping\Components\AtmosPipeColorComponent.cs(16,93): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Salvage\SalvageSystem.ExpeditionConsole.cs(231,9): warning CS0618: 'TimerExtensions.SpawnTimer(EntityUid, TimeSpan, Action, CancellationToken)' is obsolete: 'Use a system update loop instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Salvage\SalvageSystem.ExpeditionConsole.cs(318,9): warning CS0618: 'TimerExtensions.SpawnTimer(EntityUid, TimeSpan, Action, CancellationToken)' is obsolete: 'Use a system update loop instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Salvage\SalvageSystem.Magnet.cs(50,9): warning CS4014: Because this call is not awaited, execution of the current method continues before the call is completed. Consider applying the 'await' operator to the result of the call. [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Salvage\SalvageSystem.Magnet.cs(432,17): warning CS0612: 'IMapManager.FindGridsIntersecting(MapId, Box2Rotated, bool, bool)' is obsolete [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Salvage\SalvageSystem.Runner.cs(84,13): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Salvage\SalvageSystem.Runner.cs(410,17): warning CS0618: 'TimerExtensions.SpawnTimer(EntityUid, TimeSpan, Action, CancellationToken)' is obsolete: 'Use a system update loop instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(318,30): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(512,52): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(551,17): warning CS0219: The variable 'parsedEntityCount' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(967,95): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(974,39): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(975,13): warning CS0618: 'TransformComponent.WorldPosition' is obsolete: 'Use the system method instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1014,30): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1020,42): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1030,72): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1037,41): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1054,73): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1090,61): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1098,75): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1108,87): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1109,28): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1115,28): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1139,66): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1142,57): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1156,65): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1181,66): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1191,69): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1232,24): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1235,20): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1258,95): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1259,47): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1290,30): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1296,42): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1308,72): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1315,69): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1358,61): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1378,20): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1867,38): warning CS0168: The variable 'ex' is declared but never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(1897,30): warning CS0168: The variable 'ex' is declared but never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(2215,22): warning CS0612: 'ContainerManagerComponent.TryGetContainer(string, out BaseContainer?)' is obsolete [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(2311,33): warning CS0618: 'EntityCoordinates.ToMap(IEntityManager, SharedTransformSystem)' is obsolete: 'Use SharedTransformSystem.ToMapCoordinates()' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(2400,61): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(50,17): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(57,17): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(64,13): warning CS0618: 'Logger.Info(string)' is obsolete: 'Use ISawmill.Info' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(68,17): warning CS0618: 'Logger.Info(string)' is obsolete: 'Use ISawmill.Info' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(93,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(100,17): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(106,17): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(112,17): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(122,13): warning CS0618: 'Logger.Info(string)' is obsolete: 'Use ISawmill.Info' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(130,17): warning CS0618: 'Logger.Info(string)' is obsolete: 'Use ISawmill.Info' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(134,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(144,13): warning CS0618: 'Logger.Info(string)' is obsolete: 'Use ISawmill.Info' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(158,13): warning CS0618: 'Logger.Info(string)' is obsolete: 'Use ISawmill.Info' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\StationEvents\Events\ImmovableRodRule.cs(38,31): warning CS0618: 'EntityCoordinates.ToMap(IEntityManager, SharedTransformSystem)' is obsolete: 'Use SharedTransformSystem.ToMapCoordinates()' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\StationEvents\Events\BluespaceLockerRule.cs(33,50): warning CS0618: 'EntityCoordinates.GetGridUid(IEntityManager)' is obsolete: 'Use SharedTransformSystem.GetGrid()' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\NoosphericFryRule.cs(68,26): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\NoosphericFryRule.cs(70,85): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\NoosphericFryRule.cs(70,128): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\NoosphericFryRule.cs(71,70): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\NoosphericFryRule.cs(71,38): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\NoosphericFryRule.cs(74,88): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\NoosphericFryRule.cs(74,131): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\NoosphericFryRule.cs(75,70): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\NoosphericFryRule.cs(75,38): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\NoosphericFryRule.cs(118,35): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\FreeProberRule.cs(66,35): warning CS0618: 'MapGridComponent.TileIndicesFor(EntityCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\FreeProberRule.cs(77,44): warning CS0618: 'MapGridComponent.GridTileToLocal(Vector2i)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Dreams\DreamSystem.cs(40,46): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Dreams\DreamSystem.cs(54,35): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Chat\NyanoChatSystem.cs(104,52): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\Components\PowerMonitoringDeviceComponent.cs(61,51): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\Components\CableComponent.cs(45,32): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Medical\BiomassReclaimer\BiomassReclaimerSystem.cs(138,40): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\Components\BaseNetConnectorComponent.cs(59,41): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\Components\ApcComponent.cs(41,23): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Power\Components\ApcComponent.cs(46,26): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\SmokeOnTriggerSystem.cs(35,14): warning CS0618: 'MapGridComponent.TryGetTileRef(EntityCoordinates, out TileRef)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\SmokeOnTriggerSystem.cs(44,22): warning CS0618: 'MapGridComponent.MapToGrid(MapCoordinates)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\TriggerSystem.cs(268,23): warning CS0618: 'TransformComponent.MapPosition' is obsolete: 'Use TransformSystem.GetMapCoordinates' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.Processing.cs(740,67): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.cs(347,50): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.cs(347,24): warning CS0618: 'EntityCoordinates.FromMap(EntityUid, MapCoordinates, SharedTransformSystem, IEntityManager?)' is obsolete: 'Use SharedTransformSystem.ToCoordinates()' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.cs(348,22): warning CS0618: 'EntityCoordinates.GetGridUid(IEntityManager)' is obsolete: 'Use SharedTransformSystem.GetGrid()' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.cs(352,22): warning CS0618: 'EntityCoordinates.GetGridUid(IEntityManager)' is obsolete: 'Use SharedTransformSystem.GetGrid()' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionGridTileFlood.cs(68,30): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionGridTileFlood.cs(75,72): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.Processing.cs(791,93): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.Processing.cs(847,17): warning CS0618: 'MapGridComponent.TryGetTileRef(Vector2i, out TileRef)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.Processing.cs(859,22): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.Processing.cs(908,56): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.Processing.cs(910,37): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.GridMap.cs(312,18): warning CS0618: 'MapGridComponent.TryGetTileRef(Vector2i, out TileRef)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.Processing.cs(318,55): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.Visuals.cs(47,28): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\DeviceNetwork\Systems\DeviceListSystem.cs(99,44): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.Player.cs(133,25): warning CS0618: 'PvsOverrideSystem.ClearOverride(NetEntity)' is obsolete: 'Don't use this, clear specific overrides' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.RoundFlow.cs(109,50): warning CS0618: 'IMapManager.MapExists(MapId?)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\DeviceNetwork\Systems\ApcNetworkSystem.cs(41,48): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.RoundFlow.cs(558,39): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.RoundFlow.cs(559,17): warning CS8073: The result of the expression is always 'true' since a value of type 'MapId' is never equal to 'null' of type 'MapId?' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.RoundFlow.cs(811,33): warning CS0618: 'EntitySystem.Get<T>()' is obsolete: 'Either use a dependency, resolve and cache IEntityManager manually, or use EntityManager.System<T>()' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.RoundFlow.cs(814,45): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.RoundFlow.cs(847,49): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.RoundFlow.cs(854,52): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Chat\TSayCommand.cs(42,13): warning CS0618: 'EntitySystem.Get<T>()' is obsolete: 'Either use a dependency, resolve and cache IEntityManager manually, or use EntityManager.System<T>()' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.Spawning.cs(465,17): warning CS0618: 'IMapManager.MapExists(MapId?)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.Spawning.cs(467,30): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.Spawning.cs(473,33): warning CS0618: 'IMapManager.GetAllMapIds()' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.Spawning.cs(475,30): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Notes\UserNotesEui.cs(25,13): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Notes\UserNotesEui.cs(42,13): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Logs\AdminLogManager.Json.cs(60,41): warning CS0618: 'IComponent.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Procedural\DungeonJob\DungeonJob.OreDunGen.cs(25,13): warning CS0219: The variable 'emptyTiles' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Atmos\EntitySystems\FlammableSystem.cs(415,13): warning CS0618: 'TimerExtensions.SpawnTimer(EntityUid, int, Action, CancellationToken)' is obsolete: 'Use a system update loop instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\Commands\JoinGameCommand.cs(49,17): warning CS0618: 'Logger.InfoS(string, string)' is obsolete: 'Use ISawmill.Info' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Atmos\EntitySystems\AtmosphereSystem.HighPressureDelta.cs(111,36): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Atmos\EntitySystems\AtmosphereSystem.Hotspot.cs(115,32): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Commands\RoleBanCommand.cs(34,13): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Commands\PrisonerCommands.cs(68,17): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Commands\PlayGlobalSoundCommand.cs(91,79): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Commands\PersistenceSaveCommand.cs(37,14): warning CS0618: 'IMapManager.MapExists(MapId?)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Commands\DepartmentBanCommand.cs(32,13): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Atmos\EntitySystems\AtmosphereSystem.Utils.cs(112,14): warning CS0618: 'MapGridComponent.TryGetTileRef(Vector2i, out TileRef)' is obsolete: 'Use the MapSystem method' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Atmos\Components\AtmosPlaqueComponent.cs(17,93): warning CS0618: 'Component.Owner' is obsolete: 'Update your API to allow accessing Owner through other means' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Systems\AdminSystem.cs(418,35): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Atmos\Commands\SetMapAtmosCommand.cs(31,19): warning CS0618: 'IMapManager.GetMapEntityId(MapId)' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Abilities\Psionics\Abilities\AnomalyPowerSystem.Injection.cs(10,54): warning CS0649: Field 'AnomalyPowerSystem._injectableQuery' is never assigned to, and will always have its default value [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Crescent\Cybernetics\MantisBladeSystem.cs(31,55): warning CS0414: The field 'MantisBladeSystem._explosion' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_EinsteinEngines\Power\Systems\BatteryDrinkerSystem.cs(29,51): warning CS0414: The field 'BatteryDrinkerSystem._powerCell' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Glimmer\GlimmerReactiveSystem.cs(45,51): warning CS0414: The field 'GlimmerReactiveSystem._mapManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldProtectionSystem.cs(12,47): warning CS0414: The field 'GridShieldProtectionSystem._mapManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_EinsteinEngines\Power\Systems\BatteryDrinkerSystem.cs(23,51): warning CS0414: The field 'BatteryDrinkerSystem._slots' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Shitmed\Medical\Surgery\SurgerySystem.cs(41,51): warning CS0414: The field 'SurgerySystem._blindableSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Crescent\Cybernetics\MantisBladeSystem.cs(23,50): warning CS0414: The field 'MantisBladeSystem._body' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(96,53): warning CS0414: The field 'ShipyardSystem._netManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ArrivalsSystem.cs(58,47): warning CS0414: The field 'ArrivalsSystem._timing' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ArrivalsSystem.cs(69,49): warning CS0414: The field 'ArrivalsSystem._shuttles' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardGridSaveSystem.cs(79,88): warning CS0414: The field 'ShipyardGridSaveSystem._shipSerialization' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Weapons\Ranged\Systems\GunSystem.cs(36,49): warning CS0414: The field 'GunSystem._battery' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldGeneratorSystem.cs(34,49): warning CS0414: The field 'GridShieldGeneratorSystem._entityManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Cloning\RandomCloneSpawnerSystem.cs(18,52): warning CS0414: The field 'RandomCloneSpawnerSystem._mind' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\SpaceArtillery\SpaceArtillerySystem.cs(22,52): warning CS0414: The field 'SpaceArtillerySystem._deviceLink' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Worldgen\Systems\Debris\DebrisFeaturePlacerSystem.cs(22,49): warning CS0414: The field 'DebrisFeaturePlacerSystem._gc' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.Consoles.cs(83,48): warning CS0414: The field 'ShipyardSystem._chatManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Medical\HealingSystem.cs(38,57): warning CS0414: The field 'HealingSystem._targetingSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Crescent\Cybernetics\MantisBladeSystem.cs(33,55): warning CS0414: The field 'MantisBladeSystem._inventory' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Cloning\RandomCloneSpawnerSystem.cs(14,49): warning CS0414: The field 'RandomCloneSpawnerSystem._cloning' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(97,48): warning CS0414: The field 'ShipyardSystem._taskManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipEventHandlerSystem.cs(19,50): warning CS0414: The field 'ShipEventHandlerSystem._entityManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Abilities\Psionics\PsionicAbilitiesSystem.cs(35,57): warning CS0414: The field 'PsionicAbilitiesSystem._config' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Cloning\RandomCloneSpawnerSystem.cs(16,49): warning CS0414: The field 'RandomCloneSpawnerSystem._random' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Cloning\RandomCloneSpawnerSystem.cs(17,57): warning CS0414: The field 'RandomCloneSpawnerSystem._transformSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\PlayerPaymentPersistenceSystem.cs(28,47): warning CS0414: The field 'PlayerPaymentPersistenceSystem._timing' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.Consoles.cs(87,49): warning CS0414: The field 'ShipyardSystem._dockingSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldGeneratorSystem.cs(33,55): warning CS0414: The field 'GridShieldGeneratorSystem._powerReceiverSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldGeneratorSystem.cs(30,47): warning CS0414: The field 'GridShieldGeneratorSystem._mapManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ShuttleConsoleSystem.cs(40,49): warning CS0414: The field 'ShuttleConsoleSystem._station' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ArrivalsSystem.cs(64,46): warning CS0414: The field 'ArrivalsSystem._ticker' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\PublicTransit\PublicTransitSystem.cs(76,18): warning CS0414: The field 'PublicTransitSystem._arrivalsReady' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ArrivalsSystem.cs(61,47): warning CS0414: The field 'ArrivalsSystem._actor' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldProtectionSystem.cs(13,57): warning CS0414: The field 'GridShieldProtectionSystem._transformSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Cloning\CloningPodSystem.cs(49,50): warning CS0414: The field 'CloningPodSystem._mobStateSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\HTN\PrimitiveTasks\Operators\Specific\PlantBotServiceOperator.cs(26,30): warning CS0414: The field 'PlantbotServiceOperator._damageableSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\HTN\PrimitiveTasks\Operators\Specific\PlantBotServiceOperator.cs(19,53): warning CS0414: The field 'PlantbotServiceOperator._prototypeManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(65,57): warning CS0414: The field 'ShipSerializationSystem._netManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Salvage\SalvageSystem.ExpeditionConsole.cs(38,49): warning CS0414: The field 'SalvageSystem._salvage' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardGridSaveSystem.cs(80,57): warning CS0414: The field 'ShipyardGridSaveSystem._configManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Silicons\Borgs\BorgSystem.cs(63,56): warning CS0414: The field 'BorgSystem._player' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\PlayerPaymentPersistenceSystem.cs(29,46): warning CS0414: The field 'PlayerPaymentPersistenceSystem._mind' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\FreeProberRule.cs(18,47): warning CS0414: The field 'FreeProberRule._mapManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\InnatePsionicPowersSystem.cs(10,57): warning CS0414: The field 'InnatePsionicPowersSystem._prototypeManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Shitmed\Body\Organ\DermisSystem.cs(11,52): warning CS0414: The field 'DermisSystem._bodySystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\ShuttleRecords\ShuttleRecordsSystem.Console.cs(22,57): warning CS0414: The field 'ShuttleRecordsSystem._transform' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_EinsteinEngines\Silicon\DeadStartupButton\DeadStartupButtonSystem.cs(28,46): warning CS0414: The field 'DeadStartupButtonSystem._chatSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\StationEvents\EventManagerSystem.cs(31,22): warning CS0414: The field 'EventManagerSystem._sawmill' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\HTN\PrimitiveTasks\Operators\Specific\PickNearbyServicableHydroponicsTrayOperator.cs(15,53): warning CS0414: The field 'PickNearbyServicableHydroponicsTrayOperator._prototypeManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ArrivalsSystem.cs(57,48): warning CS0414: The field 'ArrivalsSystem._console' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ArrivalsSystem.cs(63,55): warning CS0414: The field 'ArrivalsSystem._deviceNetworkSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Crescent\Cybernetics\InternalBombSystem.cs(15,53): warning CS0414: The field 'InternalBombSystem._gibbing' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(67,61): warning CS0414: The field 'ShipSerializationSystem._serverIdentity' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Shitmed\Body\Organ\CerebralImplantSystem.cs(11,52): warning CS0414: The field 'CerebralImplantSystem._bodySystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\HTN\PrimitiveTasks\Operators\Specific\PlantBotServiceOperator.cs(27,23): warning CS0414: The field 'PlantbotServiceOperator._tagSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Shitmed\Body\Systems\EyesSystem.cs(12,54): warning CS0414: The field 'EyesSystem._entityManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(23,57): warning CS0414: The field 'ShipSaveSystem._netManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(104,53): warning CS0414: The field 'ShipyardSystem._popupSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Research\Systems\ResearchSystem.cs(25,53): warning CS0414: The field 'ResearchSystem._station' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Glimmer\PassiveGlimmerReductionSystem.cs(20,69): warning CS0414: The field 'PassiveGlimmerReductionSystem._cartridgeSys' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ArrivalsSystem.cs(70,57): warning CS0414: The field 'ArrivalsSystem._stationSpawning' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Medical\HealthAnalyzerSystem.cs(41,51): warning CS0414: The field 'HealthAnalyzerSystem._transformSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldGeneratorSystem.cs(25,49): warning CS0414: The field 'GridShieldGeneratorSystem._physics' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Dreams\DreamSystem.cs(14,50): warning CS0414: The field 'DreamsSystem._chat' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\PsionicsRecords\Systems\PsionicsRecordsSystem.cs(24,46): warning CS0414: The field 'PsionicsRecordsSystem._ticker' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.Consoles.cs(86,47): warning CS0414: The field 'ShipyardSystem._mapManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(61,56): warning CS0414: The field 'ShipSerializationSystem._atmosphere' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ArrivalsSystem.cs(68,57): warning CS0414: The field 'ArrivalsSystem._transform' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Save\ShipSaveSystem.cs(21,51): warning CS0414: The field 'ShipSaveSystem._mapManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Invisibility\PsionicInvisibleContactsSystem.cs(16,51): warning CS0414: The field 'PsionicInvisibleContactsSystem._gameTiming' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\ArrivalsSystem.cs(55,48): warning CS0414: The field 'ArrivalsSystem._chat' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\PublicTransit\PublicTransitSystem.cs(75,18): warning CS0414: The field 'PublicTransitSystem._stationsGenerated' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldGeneratorSystem.cs(29,45): warning CS0414: The field 'GridShieldGeneratorSystem._tags' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Crescent\Cybernetics\MantisBladeSystem.cs(21,53): warning CS0414: The field 'MantisBladeSystem._gibbing' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Cloning\CloningConsoleSystem.cs(85,54): warning CS0414: The field 'CloningConsoleSystem._mobStateSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\StationEvents\Events\NoosphericFryRule.cs(30,47): warning CS0414: The field 'NoosphericFryRule._mapManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Commands\PrisonerCommands.cs(106,53): warning CS0414: The field 'PermaPardonCommand._prototypes' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Weapons\Ranged\Systems\GunSystem.cs(42,51): warning CS0414: The field 'GunSystem._powerCell' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\GameTicking\GameTicker.RoundFlow.cs(46,54): warning CS0414: The field 'GameTicker._arrivalsSystem' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Cloning\RandomCloneSpawnerSystem.cs(15,53): warning CS0414: The field 'RandomCloneSpawnerSystem._prototypeManager' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\PsionicsRecords\Systems\PsionicsRecordsConsoleSystem.cs(32,54): warning CS0414: The field 'PsionicsRecordsConsoleSystem._idCard' is assigned but its value is never used [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Psionics\Glimmer\GlimmerReactiveSystem.cs(381,12): warning RA0003: Class must be explicitly marked as [Virtual], abstract, static or sealed [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Explosion\EntitySystems\ExplosionSystem.Processing.cs(923,39): warning RA0039: Do not instantiate prototypes directly. Prototypes should always be instantiated by the prototype manager. [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\GameRule\PointOfInterestPrototype.cs(13,29): warning RA0038: Type Content.Server._NF.GameRule.PointOfInterestPrototype is a prototype and marked as [Serializable]. Prototypes should not be directly sent over the network, send their IDs instead. [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Shitmed\DelayedDeath\DelayedDeathSystem.cs(7,16): warning RA0003: Class must be explicitly marked as [Virtual], abstract, static or sealed [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldGeneratorSystem.cs(298,13): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldGeneratorSystem.cs(312,13): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldGeneratorSystem.cs(320,14): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldGeneratorSystem.cs(330,40): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldGeneratorSystem.cs(361,14): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Mono\ShipShield\GridShieldGeneratorSystem.cs(395,17): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\RoundPersistenceSystem.cs(215,14): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\RoundPersistenceSystem.cs(222,24): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\RoundPersistenceSystem.cs(232,27): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\RoundPersistenceSystem.cs(312,97): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\RoundPersistenceSystem.cs(429,93): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\RoundPersistenceSystem.cs(454,17): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\RoundPersistenceSystem.cs(664,17): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\RoundPersistenceSystem.cs(496,93): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\RoundPersistenceSystem.cs(584,50): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_HL\RoundPersistence\Systems\RoundPersistenceSystem.cs(894,13): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Trash\TrashCleanupSystem.cs(158,18): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\ShuttleRecords\ShuttleRecordsSystem.Console.cs(140,14): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\ShuttleRecords\ShuttleRecordsSystem.Console.cs(195,14): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\ShuttleRecords\ShuttleRecordsSystem.Console.cs(197,14): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(209,14): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(259,14): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(354,14): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(539,14): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(539,81): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(591,26): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(920,18): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(927,22): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(969,22): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(1014,22): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(1131,18): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(1165,18): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(1259,17): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(1282,21): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(1292,17): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(1311,17): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(1338,18): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(1357,46): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(1386,17): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.cs(1737,18): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_NF\Shipyard\Systems\ShipyardSystem.Consoles.cs(87,49): warning RA0032: Another [Dependency] field of type 'Content.Server.Shuttles.Systems.DockingSystem' already exists in this type with field '_docking' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Speech\EntitySystems\ReplacementAccentSystem.cs(66,30): warning RA0026: Usage of a static Regex function that takes in a pattern string. This can cause constant re-parsing of the pattern. [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Speech\EntitySystems\ReplacementAccentSystem.cs(69,35): warning RA0026: Usage of a static Regex function that takes in a pattern string. This can cause constant re-parsing of the pattern. [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Research\Oracle\OracleSystem.cs(96,55): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\Systems\DockingSystem.cs(182,22): warning RA0030: Use the non-generic variant of this method for type MetaDataComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Research\SophicScribe\SophicScribeSystem.cs(42,74): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Nyanotrasen\Research\SophicScribe\SophicScribeSystem.cs(83,74): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\StationEvents\Events\RandomSentienceRule.cs(75,83): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\StationEvents\Events\RandomSentienceRule.cs(76,87): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Maps\GameMapPrototype.cs(61,16): warning RA0039: Do not instantiate prototypes directly. Prototypes should always be instantiated by the prototype manager. [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\NPCBlackboardSerializer.cs(43,35): warning RA0005: Consider using the generic variant of this method to avoid potential allocations [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\NPCBlackboardSerializer.cs(48,31): warning RA0005: Consider using the generic variant of this method to avoid potential allocations [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\HTN\PrimitiveTasks\Operators\Specific\WeldbotWeldOperator.cs(88,67): warning RA0033: The id parameter of TryIndex forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\NPC\HTN\PrimitiveTasks\Operators\Specific\WeldbotWeldOperator.cs(97,71): warning RA0033: The id parameter of TryIndex forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Gateway\Systems\GatewayGeneratorSystem.cs(111,81): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Gateway\Systems\GatewayGeneratorSystem.cs(183,78): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Forensics\Systems\ForensicScannerSystem.cs(122,86): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Forensics\Systems\ForensicScannerSystem.cs(130,74): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\EntityEffects\Effects\PlantMutateChemicals.cs(25,87): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Ghost\GhostSystem.cs(613,95): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Destructible\Thresholds\Behaviors\WeightedSpawnEntityBehavior.cs(67,51): warning RA0033: The id parameter of TryIndex forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Cluwne\CluwneSystem.cs(57,96): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Botany\Systems\MutationSystem.cs(18,86): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\_Shitmed\DelayedDeath\DelayedDeathSystem.cs(23,89): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Salvage\SalvageSystem.ExpeditionConsole.cs(110,14): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Salvage\SpawnSalvageMissionJob.cs(197,117): warning RA0033: The id parameter of Index forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Shuttles\ShipSerializationSystem.cs(933,26): warning RA0030: Use the non-generic variant of this method for type TransformComponent [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Anomaly\AnomalySystem.Psionics.cs(11,49): warning RA0032: Another [Dependency] field of type 'Robust.Shared.Random.IRobustRandom' already exists in this type with field '_random' [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Systems\AdminSystem.cs(253,38): warning RA0039: Do not instantiate prototypes directly. Prototypes should always be instantiated by the prototype manager. [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Server\Administration\Systems\AdminVerbSystem.Smites.cs(960,69): warning RA0033: The id parameter of TryIndex forbids literal values [f:\Floofdev\HardLight\Content.Server\Content.Server.csproj]
f:\Floofdev\HardLight\Content.Client\Sprite\SpriteStateToggleVisualizerSystem.cs(3,7): warning CS0105: The using directive for 'Content.Shared.Sprite' appeared previously in this namespace [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\MassMedia\Ui\ArticleEditorPanel.xaml.cs(117,29): warning CS0672: Member 'ArticleEditorPanel.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'ArticleEditorPanel.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\MassMedia\Ui\NewsWriterMenu.xaml.cs(90,29): warning CS0672: Member 'NewsWriterMenu.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'NewsWriterMenu.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\NetworkConfigurator\Systems\NetworkConfiguratorSystem.cs(26,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\AdminMenuWindow.xaml.cs(36,29): warning CS0672: Member 'AdminMenuWindow.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'AdminMenuWindow.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\BanList\Bans\BanListLine.xaml.cs(31,29): warning CS0672: Member 'BanListLine.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'BanListLine.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\BanList\RoleBans\RoleBanListLine.xaml.cs(32,29): warning CS0672: Member 'RoleBanListLine.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'RoleBanListLine.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Bwoink\BwoinkPanel.xaml.cs(109,33): warning CS0672: Member 'BwoinkPanel.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'BwoinkPanel.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\CustomControls\AdminLogLabel.cs(27,29): warning CS0672: Member 'AdminLogLabel.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'AdminLogLabel.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Logs\AdminLogsControl.xaml.cs(518,29): warning CS0672: Member 'AdminLogsControl.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'AdminLogsControl.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Notes\AdminNotesControl.xaml.cs(211,29): warning CS0672: Member 'AdminNotesControl.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'AdminNotesControl.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Notes\AdminNotesLine.xaml.cs(191,29): warning CS0672: Member 'AdminNotesLine.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'AdminNotesLine.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Notes\AdminNotesLinePopup.xaml.cs(98,29): warning CS0672: Member 'AdminNotesLinePopup.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'AdminNotesLinePopup.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Notes\NoteEdit.xaml.cs(325,29): warning CS0672: Member 'NoteEdit.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'NoteEdit.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Guidebook\Controls\GuideEntityEmbed.xaml.cs(126,29): warning CS0672: Member 'GuideEntityEmbed.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'GuideEntityEmbed.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Guidebook\Controls\GuideReagentReaction.xaml.cs(24,6): warning CS0618: 'ValidatePrototypeIdAttribute<MixingCategoryPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Guidebook\Richtext\KeyBindTag.cs(9,34): warning CS0618: 'IMarkupTag' is obsolete: 'Use IMarkupTagHandler' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Guidebook\Richtext\ProtodataTag.cs(12,36): warning CS0618: 'IMarkupTag' is obsolete: 'Use IMarkupTagHandler' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Guidebook\Richtext\TextLinkTag.cs(12,35): warning CS0618: 'IMarkupTag' is obsolete: 'Use IMarkupTagHandler' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Tabs\ObjectsTab\ObjectsTabHeader.xaml.cs(69,33): warning CS0672: Member 'ObjectsTabHeader.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'ObjectsTabHeader.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Tabs\PlayerTab\PlayerTab.xaml.cs(102,29): warning CS0672: Member 'PlayerTab.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'PlayerTab.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Tabs\PlayerTab\PlayerTabHeader.xaml.cs(91,29): warning CS0672: Member 'PlayerTabHeader.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'PlayerTabHeader.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Tabs\ServerTab.xaml.cs(33,33): warning CS0672: Member 'ServerTab.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'ServerTab.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Chemistry\EntitySystems\ChemistryGuideDataSystem.cs(21,6): warning CS0618: 'ValidatePrototypeIdAttribute<MixingCategoryPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Chemistry\EntitySystems\ChemistryGuideDataSystem.cs(23,6): warning CS0618: 'ValidatePrototypeIdAttribute<MixingCategoryPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Chemistry\EntitySystems\ChemistryGuideDataSystem.cs(25,6): warning CS0618: 'ValidatePrototypeIdAttribute<MixingCategoryPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Chemistry\EntitySystems\ChemistryGuideDataSystem.cs(27,6): warning CS0618: 'ValidatePrototypeIdAttribute<MixingCategoryPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Info\PlaytimeStats\PlaytimeStatsHeader.cs(76,29): warning CS0672: Member 'PlaytimeStatsHeader.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'PlaytimeStatsHeader.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Interactable\Components\InteractionOutlineComponent.cs(15,10): warning CS0618: 'ValidatePrototypeIdAttribute<ShaderPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Interactable\Components\InteractionOutlineComponent.cs(18,10): warning CS0618: 'ValidatePrototypeIdAttribute<ShaderPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Interaction\DragDropSystem.cs(56,6): warning CS0618: 'ValidatePrototypeIdAttribute<ShaderPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Interaction\DragDropSystem.cs(59,6): warning CS0618: 'ValidatePrototypeIdAttribute<ShaderPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Outline\TargetOutlineSystem.cs(73,6): warning CS0618: 'ValidatePrototypeIdAttribute<ShaderPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Outline\TargetOutlineSystem.cs(76,6): warning CS0618: 'ValidatePrototypeIdAttribute<ShaderPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Overlays\ShowJobIconsSystem.cs(16,6): warning CS0618: 'ValidatePrototypeIdAttribute<JobIconPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Parallax\ParallaxSystem.cs(17,6): warning CS0618: 'ValidatePrototypeIdAttribute<ParallaxPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Construction\UI\FlatpackCreatorMenu.xaml.cs(30,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\ContextMenu\UI\ContextMenuElement.xaml.cs(59,33): warning CS0672: Member 'ContextMenuElement.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'ContextMenuElement.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\ContextMenu\UI\ContextMenuPopup.xaml.cs(73,33): warning CS0672: Member 'ContextMenuPopup.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'ContextMenuPopup.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\ContextMenu\UI\EntityMenuElement.cs(44,33): warning CS0672: Member 'EntityMenuElement.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'EntityMenuElement.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\LateJoin\LateJoinGui.cs(321,33): warning CS0672: Member 'LateJoinGui.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'LateJoinGui.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\CriminalRecords\CriminalRecordsConsoleWindow.xaml.cs(36,6): warning CS0618: 'ValidatePrototypeIdAttribute<LocalizedDatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\RichText\MonoTag.cs(13,31): warning CS0618: 'IMarkupTag' is obsolete: 'Use IMarkupTagHandler' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\RichText\MonoTag.cs(15,6): warning CS0618: 'ValidatePrototypeIdAttribute<FontPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\RichText\ScrambleTag.cs(13,35): warning CS0618: 'IMarkupTag' is obsolete: 'Use IMarkupTagHandler' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Lobby\UI\CharacterPickerButton.xaml.cs(85,29): warning CS0672: Member 'CharacterPickerButton.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'CharacterPickerButton.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Lobby\UI\HumanoidProfileEditor.xaml.cs(1265,33): warning CS0672: Member 'HumanoidProfileEditor.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'HumanoidProfileEditor.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Lobby\UI\HumanoidProfileEditor.xaml.cs(1355,22): warning CS0108: 'HumanoidProfileEditor.SetHeight(float)' hides inherited member 'Control.SetHeight'. Use the new keyword if hiding was intended. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Lobby\UI\HumanoidProfileEditor.xaml.cs(1368,22): warning CS0108: 'HumanoidProfileEditor.SetWidth(float)' hides inherited member 'Control.SetWidth'. Use the new keyword if hiding was intended. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Lobby\UI\HumanoidProfileEditor.xaml.cs(102,10): warning CS0618: 'ValidatePrototypeIdAttribute<GuideEntryPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Lobby\UI\Loadouts\LoadoutContainer.xaml.cs(64,29): warning CS0672: Member 'LoadoutContainer.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'LoadoutContainer.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Lobby\UI\LobbyCharacterPreviewPanel.xaml.cs(65,29): warning CS0672: Member 'LobbyCharacterPreviewPanel.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'LobbyCharacterPreviewPanel.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Power\Generation\Teg\TegSystem.cs(18,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Alerts\Controls\AlertControl.cs(138,33): warning CS0672: Member 'AlertControl.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'AlertControl.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\PsionicsRecords\PsionicsRecordsConsoleWindow.xaml.cs(32,6): warning CS0618: 'ValidatePrototypeIdAttribute<DatasetPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Chat\ChatUIController.cs(71,6): warning CS0618: 'ValidatePrototypeIdAttribute<ColorPalettePrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Chat\Controls\ChannelFilterButton.cs(81,29): warning CS0672: Member 'ChannelFilterButton.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'ChannelFilterButton.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Chat\Controls\ChannelSelectorPopup.cs(119,29): warning CS0672: Member 'ChannelSelectorPopup.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'ChannelSelectorPopup.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Chat\Widgets\ChatBox.xaml.cs(177,29): warning CS0672: Member 'ChatBox.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'ChatBox.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Info\InfoUIController.cs(24,6): warning CS0618: 'ValidatePrototypeIdAttribute<GuideEntryPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Ghost\Widgets\GhostGui.xaml.cs(96,29): warning CS0672: Member 'GhostGui.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'GhostGui.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\VendingMachines\UI\VendingMachineMenu.xaml.cs(51,33): warning CS0672: Member 'VendingMachineMenu.Dispose(bool)' overrides obsolete member 'Control.Dispose(bool)'. Add the Obsolete attribute to 'VendingMachineMenu.Dispose(bool)'. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Atmos\Systems\NFGasRecyclerSystem.cs(11,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.cs(42,6): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\HealthAnalyzer\UI\HealthAnalyzerWindow.xaml.cs(44,10): warning CS0618: 'ValidatePrototypeIdAttribute<EntityPrototype>' is obsolete: 'Use a static readonly ProtoId<T> instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_Starlight\Actions\Stasis\StasisSystem.cs(124,13): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_Starlight\Actions\Stasis\StasisSystem.cs(127,13): warning CS0618: 'SpriteComponent.Visible.set' is obsolete: 'Use SpriteSystem.SetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_Starlight\Actions\Stasis\StasisSystem.cs(131,30): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_Starlight\Actions\Stasis\StasisSystem.cs(170,13): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_Starlight\Actions\Stasis\StasisSystem.cs(173,13): warning CS0618: 'SpriteComponent.Visible.set' is obsolete: 'Use SpriteSystem.SetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_Starlight\Actions\Stasis\StasisSystem.cs(177,30): warning CS0618: 'ResolvedSoundSpecifier.implicit operator ResolvedSoundSpecifier(string)' is obsolete: 'String literals for sounds are deprecated, use a SoundSpecifier or ResolvedSoundSpecifier as appropriate instead' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_Starlight\Actions\Stasis\StasisSystem.cs(205,13): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_Starlight\Actions\Stasis\StasisSystem.cs(209,13): warning CS0618: 'SpriteComponent.Visible.set' is obsolete: 'Use SpriteSystem.SetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_Starlight\Actions\Stasis\StasisSystem.cs(264,13): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_Starlight\Actions\Stasis\StasisSystem.cs(269,13): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Actions\ActionsSystem.cs(117,13): warning CS0618: 'BaseActionComponent.RaiseOnAction' is obsolete: 'This datafield will be reworked in an upcoming action refactor' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Tabs\ServerTab.xaml.cs(35,13): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Access\UI\IdCardConsoleBoundUserInterface.cs(58,21): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Tabs\PlayerTab\PlayerTabHeader.xaml.cs(93,9): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_Shitmed\Medical\Surgery\SurgeryBui.cs(50,21): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Tabs\PlayerTab\PlayerTab.xaml.cs(104,9): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_Shitmed\Medical\Surgery\SurgeryBui.cs(214,13): warning CS0618: 'FormattedMessage.AddMarkup(string)' is obsolete: 'Use AddMarkupOrThrow or TryAddMarkup' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Tabs\ObjectsTab\ObjectsTabHeader.xaml.cs(71,13): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Vehicles\VehicleSystem.cs(31,14): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Vehicles\VehicleSystem.cs(33,9): warning CS0618: 'SpriteComponent.LayerSetAutoAnimated(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetAutoAnimated() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Vehicles\VehicleSystem.cs(51,17): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Vehicles\VehicleSystem.cs(53,17): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Vehicles\VehicleSystem.cs(78,17): warning CS0618: 'SpriteComponent.Offset.set' is obsolete: 'Use SpriteSystem.SetOffset() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Trade\TradeCrateVisualizerSystem.cs(33,9): warning CS0618: 'SpriteComponent.LayerSetTexture(object, Texture)' is obsolete: 'Use SpriteSystem.LayerSetTexture() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Trade\TradeCrateVisualizerSystem.cs(34,9): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Trade\TradeCrateVisualizerSystem.cs(37,13): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Trade\TradeCrateVisualizerSystem.cs(39,17): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Trade\TradeCrateVisualizerSystem.cs(41,17): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Trade\TradeCrateVisualizerSystem.cs(44,13): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Storage\Visualizers\ContainerCountVisualizerSystem.cs(20,9): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\AlertLevel\AlertLevelDisplaySystem.cs(24,21): warning CS0618: 'SpriteComponent.LayerMapReserveBlank(object)' is obsolete: 'Use SpriteSystem.LayerMapReserve() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\AlertLevel\AlertLevelDisplaySystem.cs(28,13): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\AlertLevel\AlertLevelDisplaySystem.cs(33,13): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\AlertLevel\AlertLevelDisplaySystem.cs(39,13): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\AlertLevel\AlertLevelDisplaySystem.cs(43,13): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Tabs\AdminbusTab\LoadBlueprintsWindow.xaml.cs(26,35): warning CS0618: 'IMapManager.GetAllMapIds()' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Shuttles\UI\NFShuttleDockControl.xaml.cs(358,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Shuttles\UI\NFShuttleDockControl.xaml.cs(361,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\SpawnExplosion\SpawnExplosionWindow.xaml.cs(90,29): warning CS0618: 'IMapManager.GetAllMapIds()' is obsolete: 'Use MapSystem' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Shipyard\BUI\ShipyardConsoleBoundUserInterface.cs(76,13): warning CS0618: 'Logger.Debug(string)' is obsolete: 'Use ISawmill.Debug' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Shipyard\BUI\ShipyardConsoleBoundUserInterface.cs(106,13): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Shipyard\BUI\ShipyardConsoleBoundUserInterface.cs(121,17): warning CS0618: 'Logger.Info(string)' is obsolete: 'Use ISawmill.Info' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Shipyard\BUI\ShipyardConsoleBoundUserInterface.cs(125,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Shipyard\BUI\ShipyardConsoleBoundUserInterface.cs(130,13): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Shipyard\BUI\ShipyardConsoleBoundUserInterface.cs(146,9): warning CS0618: 'Logger.Debug(string)' is obsolete: 'Use ISawmill.Debug' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Roles\Systems\InterviewHologramSystem.cs(46,9): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Roles\Systems\InterviewHologramSystem.cs(47,9): warning CS0618: 'SpriteComponent.Offset.set' is obsolete: 'Use SpriteSystem.SetOffset() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Roles\Systems\InterviewHologramSystem.cs(48,9): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Roles\Systems\InterviewHologramSystem.cs(53,17): warning CS0618: 'SpriteComponent.TryGetLayer(int, out SpriteComponent.Layer?, bool)' is obsolete: 'Use SpriteSystem.TryGetLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Roles\Systems\InterviewHologramSystem.cs(66,45): error CS0246: The type or namespace name 'Vector3' could not be found (are you missing a using directive or an assembly reference?) [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Roles\Systems\InterviewHologramSystem.cs(67,45): error CS0246: The type or namespace name 'Vector3' could not be found (are you missing a using directive or an assembly reference?) [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\PublicTransit\PublicTransitVisualsSystem.cs(18,17): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\PublicTransit\PublicTransitVisualsSystem.cs(23,9): warning CS0618: 'SpriteComponent.LayerSetColor(int, Color)' is obsolete: 'Use SpriteSystem.LayerSetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Notes\NoteEdit.xaml.cs(327,9): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\PlantAnalyzer\UI\PlantAnalyzerBoundUserInterface.cs(51,17): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Notes\AdminNotesLinePopup.xaml.cs(100,9): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Animations\EntityPickupAnimationSystem.cs(61,9): warning CS0618: 'SpriteComponent.CopyFrom(SpriteComponent)' is obsolete: 'Use SpriteSystem.CopySprite() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Animations\EntityPickupAnimationSystem.cs(62,9): warning CS0618: 'SpriteComponent.Visible.set' is obsolete: 'Use SpriteSystem.SetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\Systems\KillSignSystem.cs(21,14): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\Systems\KillSignSystem.cs(24,9): warning CS0618: 'SpriteComponent.RemoveLayer(int)' is obsolete: 'Use SpriteSystem.RemoveLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\Systems\KillSignSystem.cs(32,13): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\Systems\KillSignSystem.cs(35,19): warning CS0618: 'SpriteComponent.Bounds' is obsolete: 'Use SpriteSystem.GetLocalBounds() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\Systems\KillSignSystem.cs(37,21): warning CS0618: 'SpriteComponent.AddLayer(SpriteSpecifier, int?)' is obsolete: 'Use SpriteSystem.AddLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\Systems\KillSignSystem.cs(38,9): warning CS0618: 'SpriteComponent.LayerMapSet(object, int)' is obsolete: 'Use SpriteSystem.LayerMapSet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\Systems\KillSignSystem.cs(40,9): warning CS0618: 'SpriteComponent.LayerSetOffset(int, Vector2)' is obsolete: 'Use SpriteSystem.LayerSetOffset() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\Ui\AnomalyScannerBoundUserInterface.cs(45,15): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Notes\AdminNotesLine.xaml.cs(64,13): warning CS0618: 'Logger.WarningS(string, string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Notes\AdminNotesLine.xaml.cs(193,9): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Notes\AdminNotesControl.xaml.cs(213,9): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\ManageSolutions\EditSolutionsWindow.xaml.cs(43,31): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\Effects\ClientInnerBodySystem.cs(24,14): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\Effects\ClientInnerBodySystem.cs(25,21): warning CS0618: 'SpriteComponent.LayerMapReserveBlank(object)' is obsolete: 'Use SpriteSystem.LayerMapReserve() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\Effects\ClientInnerBodySystem.cs(31,13): warning CS0618: 'SpriteComponent.LayerSetSprite(int, SpriteSpecifier)' is obsolete: 'Use SpriteSystem.LayerSetSprite() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\Effects\ClientInnerBodySystem.cs(35,13): warning CS0618: 'SpriteComponent.LayerSetSprite(int, SpriteSpecifier)' is obsolete: 'Use SpriteSystem.LayerSetSprite() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\Effects\ClientInnerBodySystem.cs(38,9): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\Effects\ClientInnerBodySystem.cs(47,21): warning CS0618: 'SpriteComponent.LayerMapGet(object)' is obsolete: 'Use SpriteSystem.LayerMapGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\Effects\ClientInnerBodySystem.cs(48,9): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\AnomalySystem.cs(52,14): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\AnomalySystem.cs(53,14): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\AnomalySystem.cs(56,9): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\AnomalySystem.cs(57,9): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\AnomalySystem.cs(70,13): warning CS0618: 'SpriteComponent.Scale.set' is obsolete: 'Use SpriteSystem.SetScale() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\AnomalySystem.cs(75,17): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\AnomalySystem.cs(85,9): warning CS0618: 'SpriteComponent.Scale.set' is obsolete: 'Use SpriteSystem.SetScale() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Anomaly\AnomalySystem.cs(86,9): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Arcade\UI\BlockGameBoundUserInterface.cs(74,15): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\ManageSolutions\EditSolutionsWindow.xaml.cs(268,31): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\ManageSolutions\EditSolutionsWindow.xaml.cs(328,17): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\ManageSolutions\AddReagentWindow.xaml.cs(80,17): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Logs\AdminLogsEui.cs(96,9): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Logs\AdminLogsEui.cs(178,9): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Logs\AdminLogsEui.cs(179,20): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Logs\AdminLogsEui.cs(180,14): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Logs\AdminLogsControl.xaml.cs(520,9): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\CustomControls\CommandButton.cs(44,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\CustomControls\AdminLogLabel.cs(29,9): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\Bwoink\BwoinkPanel.xaml.cs(111,13): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\BanPanel\BanPanelEui.cs(41,9): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\BanList\RoleBans\RoleBanListLine.xaml.cs(34,9): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\BanList\RoleBans\RoleBanListControl.xaml.cs(23,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\BanList\Bans\BanListLine.xaml.cs(33,9): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\BanList\Bans\BanListControl.xaml.cs(23,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\BanList\BanListEui.cs(41,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Administration\UI\AdminMenuWindow.xaml.cs(39,9): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\EmpGenerator\EmpGeneratorSystem.cs(28,29): warning CS0618: 'SpriteComponent.LayerMapGet(object)' is obsolete: 'Use SpriteSystem.LayerMapGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\EmpGenerator\EmpGeneratorSystem.cs(29,17): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\EmpGenerator\EmpGeneratorSystem.cs(35,25): warning CS0618: 'SpriteComponent.LayerMapGet(object)' is obsolete: 'Use SpriteSystem.LayerMapGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\EmpGenerator\EmpGeneratorSystem.cs(40,21): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\EmpGenerator\EmpGeneratorSystem.cs(42,25): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\CrateMachine\CrateMachineSystem.cs(44,9): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\CrateMachine\CrateMachineSystem.cs(45,9): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\CrateMachine\CrateMachineSystem.cs(46,9): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\CrateMachine\CrateMachineSystem.cs(47,9): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\CrateMachine\CrateMachineSystem.cs(48,9): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\CrateMachine\CrateMachineSystem.cs(49,9): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\CrateMachine\CrateMachineSystem.cs(53,32): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\CrateMachine\CrateMachineSystem.cs(54,19): warning CS0618: 'SpriteComponent.LayerGetState(int)' is obsolete: 'Use SpriteSystem.LayerGetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\CrateMachine\CrateMachineSystem.cs(56,30): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\CrateMachine\CrateMachineSystem.cs(57,19): warning CS0618: 'SpriteComponent.LayerGetState(int)' is obsolete: 'Use SpriteSystem.LayerGetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\CrateMachine\CrateMachineSystem.cs(96,32): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\CrateMachine\CrateMachineSystem.cs(97,19): warning CS0618: 'SpriteComponent.LayerGetState(int)' is obsolete: 'Use SpriteSystem.LayerGetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Chemistry\UI\ChangeReagentWhitelistBoundUserInterface.cs(29,21): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Charges\Systems\LimitedChargesVisualizerSystem.cs(23,13): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Charges\Systems\LimitedChargesVisualizerSystem.cs(25,13): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Charges\Systems\LimitedChargesVisualizerSystem.cs(26,13): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Charges\Systems\LimitedChargesVisualizerSystem.cs(47,17): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Charges\Systems\LimitedChargesVisualizerSystem.cs(48,17): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Charges\Systems\LimitedChargesVisualizerSystem.cs(50,18): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Charges\Systems\LimitedChargesVisualizerSystem.cs(52,13): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Charges\Systems\LimitedChargesVisualizerSystem.cs(53,13): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Cargo\Systems\NFCargoSystem.Telepad.cs(84,17): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Cargo\Systems\NFCargoSystem.Telepad.cs(89,17): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Cargo\BUI\CargoOrderConsoleNFBoundUserInterface.cs(134,15): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_NF\Cargo\BUI\CargoOrderConsoleNFBoundUserInterface.cs(135,20): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_FS\DiscordAuth\DiscordAuthState.cs(34,9): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Hand\UI\CardHandMenuBoundUserInterface.cs(40,15): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Hand\CardHandSystem.cs(52,17): warning CS0618: 'SpriteComponent.TryGetLayer(int, out SpriteComponent.Layer?, bool)' is obsolete: 'Use SpriteSystem.TryGetLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\Xenos\XenoVisualizerSystem.cs(22,14): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\Xenos\XenoVisualizerSystem.cs(23,14): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\Xenos\XenoVisualizerSystem.cs(34,21): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\Xenos\XenoVisualizerSystem.cs(40,21): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\Xenos\XenoVisualizerSystem.cs(49,25): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\Xenos\XenoVisualizerSystem.cs(54,21): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Hand\CardHandSystem.cs(81,13): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Hand\CardHandSystem.cs(82,13): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Hand\CardHandSystem.cs(83,13): warning CS0618: 'SpriteComponent.LayerSetOffset(int, Vector2)' is obsolete: 'Use SpriteSystem.LayerSetOffset() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Hand\CardHandSystem.cs(84,13): warning CS0618: 'SpriteComponent.LayerSetScale(int, Vector2)' is obsolete: 'Use SpriteSystem.LayerSetScale() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Hand\CardHandSystem.cs(93,21): warning CS0618: 'SpriteComponent.LayerSetRotation(int, Angle)' is obsolete: 'Use SpriteSystem.LayerSetRotation() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Hand\CardHandSystem.cs(94,21): warning CS0618: 'SpriteComponent.LayerSetOffset(int, Vector2)' is obsolete: 'Use SpriteSystem.LayerSetOffset() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Hand\CardHandSystem.cs(95,21): warning CS0618: 'SpriteComponent.LayerSetScale(int, Vector2)' is obsolete: 'Use SpriteSystem.LayerSetScale() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Hand\CardHandSystem.cs(114,21): warning CS0618: 'SpriteComponent.LayerSetRotation(int, Angle)' is obsolete: 'Use SpriteSystem.LayerSetRotation() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Hand\CardHandSystem.cs(115,21): warning CS0618: 'SpriteComponent.LayerSetOffset(int, Vector2)' is obsolete: 'Use SpriteSystem.LayerSetOffset() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Hand\CardHandSystem.cs(116,21): warning CS0618: 'SpriteComponent.LayerSetScale(int, Vector2)' is obsolete: 'Use SpriteSystem.LayerSetScale() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\Xenos\XenoVisualizerSystem.cs(65,13): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\Xenos\XenoVisualizerSystem.cs(74,13): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\Xenos\Egg\XenoEggVisualsSystem.cs(47,9): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Deck\CardDeckSystem.cs(67,17): warning CS0618: 'SpriteComponent.TryGetLayer(int, out SpriteComponent.Layer?, bool)' is obsolete: 'Use SpriteSystem.TryGetLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\Xenos\Evolution\XenoEvolutionBoundUserInterface.cs(61,21): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Deck\CardDeckSystem.cs(95,17): warning CS0618: 'SpriteComponent.LayerSetRotation(int, Angle)' is obsolete: 'Use SpriteSystem.LayerSetRotation() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Deck\CardDeckSystem.cs(96,17): warning CS0618: 'SpriteComponent.LayerSetOffset(int, Vector2)' is obsolete: 'Use SpriteSystem.LayerSetOffset() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Deck\CardDeckSystem.cs(97,17): warning CS0618: 'SpriteComponent.LayerSetScale(int, Vector2)' is obsolete: 'Use SpriteSystem.LayerSetScale() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\NightVision\NightVisionOverlay.cs(68,24): warning CS0618: 'EntityCoordinates.ToMapPos(IEntityManager, SharedTransformSystem)' is obsolete: 'Use SharedTransformSystem.ToMapCoordinates()' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\NightVision\NightVisionOverlay.cs(71,9): warning CS0618: 'SpriteComponent.Render(DrawingHandleWorld, Angle, Angle, Direction?, Vector2)' is obsolete: 'Use SpriteSystem.Render() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Card\CardSystem.cs(28,18): warning CS0618: 'SpriteComponent.TryGetLayer(int, out SpriteComponent.Layer?, bool)' is obsolete: 'Use SpriteSystem.TryGetLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\IconSmoothing\IconSmoothRandomSystem.cs(36,22): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\IconSmoothing\IconSmoothRandomSystem.cs(39,23): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\IconSmoothing\IconSmoothRandomSystem.cs(48,30): warning CS0618: 'SpriteComponent.LayerGetState(int)' is obsolete: 'Use SpriteSystem.LayerGetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\IconSmoothing\IconSmoothRandomSystem.cs(51,17): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_CM14\IconSmoothing\IconSmoothRandomSystem.cs(52,17): warning CS0618: 'SpriteComponent.LayerSetColor(int, Color)' is obsolete: 'Use SpriteSystem.LayerSetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Card\CardSystem.cs(62,17): warning CS0618: 'SpriteComponent.AddBlankLayer(int?)' is obsolete: 'Use SpriteSystem.AddBlankLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Card\CardSystem.cs(66,17): warning CS0618: 'SpriteComponent.RemoveLayer(int)' is obsolete: 'Use SpriteSystem.RemoveLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\Card\CardSystem.cs(71,13): warning CS0618: 'SpriteComponent.LayerSetSprite(int, SpriteSpecifier)' is obsolete: 'Use SpriteSystem.LayerSetSprite() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\CardSpriteSystem.cs(35,17): warning CS0618: 'SpriteComponent.AddBlankLayer(int?)' is obsolete: 'Use SpriteSystem.AddBlankLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\CardSpriteSystem.cs(40,17): warning CS0618: 'SpriteComponent.RemoveLayer(int)' is obsolete: 'Use SpriteSystem.RemoveLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Zombies\ZombieSystem.cs(50,13): warning CS0618: 'SpriteComponent.LayerSetColor(int, Color)' is obsolete: 'Use SpriteSystem.LayerSetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\CardSpriteSystem.cs(67,13): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\CardSpriteSystem.cs(68,13): warning CS0618: 'SpriteComponent.LayerSetTexture(int, Texture?)' is obsolete: 'Use SpriteSystem.LayerSetTexture() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_EstacaoPirata\Cards\CardSpriteSystem.cs(69,13): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Xenoarchaeology\XenoArtifacts\RandomArtifactSpriteSystem.cs(23,13): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Xenoarchaeology\XenoArtifacts\RandomArtifactSpriteSystem.cs(26,13): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Xenoarchaeology\XenoArtifacts\RandomArtifactSpriteSystem.cs(27,13): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Xenoarchaeology\XenoArtifacts\RandomArtifactSpriteSystem.cs(28,13): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Xenoarchaeology\XenoArtifacts\RandomArtifactSpriteSystem.cs(34,13): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Wires\Visualizers\WiresVisualizerSystem.cs(13,25): warning CS0618: 'SpriteComponent.LayerMapReserveBlank(object)' is obsolete: 'Use SpriteSystem.LayerMapReserve() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Wires\Visualizers\WiresVisualizerSystem.cs(18,17): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Wires\Visualizers\WiresVisualizerSystem.cs(23,17): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_DV\Mail\MailSystem.cs(44,13): warning CS0618: 'SpriteComponent.LayerSetTexture(object, Texture)' is obsolete: 'Use SpriteSystem.LayerSetTexture() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_DV\Mail\MailSystem.cs(48,9): warning CS0618: 'SpriteComponent.LayerSetTexture(object, Texture)' is obsolete: 'Use SpriteSystem.LayerSetTexture() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Xenoarchaeology\Ui\AnalysisConsoleBoundUserInterface.cs(71,22): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Wires\UI\WiresBoundUserInterface.cs(40,19): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.AmmoCounter.cs(35,27): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\_DV\Administration\UI\JobWhitelistsEui.cs(40,9): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.ChamberMagazine.cs(24,14): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.ChamberMagazine.cs(33,13): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.ChamberMagazine.cs(37,13): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.cs(132,13): warning CS0618: 'SpriteComponent.LayerSetSprite(object, SpriteSpecifier)' is obsolete: 'Use SpriteSystem.LayerSetSprite() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.cs(133,13): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.cs(134,13): warning CS0618: 'SpriteComponent.Scale.set' is obsolete: 'Use SpriteSystem.SetScale() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(20,13): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(22,13): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(23,13): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(26,13): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(28,13): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(29,13): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(60,21): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(62,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(65,21): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(67,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(73,17): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(75,17): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(76,17): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(79,17): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(81,17): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(82,17): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(87,17): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(89,17): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(92,17): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.MagazineVisuals.cs(94,17): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.SpentAmmo.cs(32,9): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.SpentAmmo.cs(33,13): warning CS0618: 'SpriteComponent.LayerExists(object, bool)' is obsolete: 'Use SpriteSystem.LayerExists() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Ranged\Systems\GunSystem.SpentAmmo.cs(34,13): warning CS0618: 'SpriteComponent.RemoveLayer(object)' is obsolete: 'Use SpriteSystem.RemoveLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\VendingMachines\VendingMachineSystem.cs(157,9): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\VendingMachines\VendingMachineSystem.cs(158,9): warning CS0618: 'SpriteComponent.LayerSetAutoAnimated(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetAutoAnimated() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\VendingMachines\VendingMachineSystem.cs(159,9): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\VendingMachines\VendingMachineSystem.cs(170,13): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\VendingMachines\VendingMachineSystem.cs(202,14): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\VendingMachines\VendingMachineSystem.cs(205,9): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\VendingMachines\VendingMachineBoundUserInterface.cs(130,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\VendingMachines\UI\VendingMachineMenu.xaml.cs(53,13): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Viewport\ViewportUIController.cs(105,9): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Misc\TetherGunSystem.cs(36,9): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Misc\TetherGunSystem.cs(108,13): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Misc\TetherGunSystem.cs(112,13): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Misc\TetherGunSystem.cs(121,9): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Turrets\DeployableTurretSystem.cs(95,9): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Turrets\DeployableTurretSystem.cs(96,9): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Turrets\DeployableTurretSystem.cs(110,17): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Turrets\DeployableTurretSystem.cs(114,17): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Melee\UI\MeleeSpeechBoundUserInterface.cs(51,17): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TurretController\TurretControllerWindow.xaml.cs(113,36): warning CS8524: The switch expression does not handle some values of its input type (it is not exhaustive) involving an unnamed enum value. For example, the pattern '(Content.Client.TurretController.TurretControllerWindow.TurretArmamentSetting)2' is not covered. [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Trigger\TimerTriggerVisualizerSystem.cs(58,17): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Melee\MeleeWeaponSystem.Effects.cs(52,17): warning CS0618: 'SpriteComponent.CopyFrom(SpriteComponent)' is obsolete: 'Use SpriteSystem.CopySprite() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Melee\MeleeWeaponSystem.Effects.cs(59,9): warning CS0618: 'SpriteComponent.Rotation.set' is obsolete: 'Use SpriteSystem.SetRotation() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Melee\MeleeWeaponSystem.Effects.cs(141,9): warning CS0618: 'SpriteComponent.Rotation.set' is obsolete: 'Use SpriteSystem.SetRotation() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tools\Visualizers\WeldableVisualizerSystem.cs(14,13): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tools\Visualizers\WeldableVisualizerSystem.cs(16,13): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tools\ToolSystem.cs(39,21): warning CS0618: 'SpriteComponent.LayerSetSprite(int, SpriteSpecifier)' is obsolete: 'Use SpriteSystem.LayerSetSprite() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Toggleable\ToggleableLightVisualsSystem.cs(34,69): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Toggleable\ToggleableLightVisualsSystem.cs(36,13): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Toggleable\ToggleableLightVisualsSystem.cs(38,17): warning CS0618: 'SpriteComponent.LayerSetColor(int, Color)' is obsolete: 'Use SpriteSystem.LayerSetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Marker\DamageMarkerSystem.cs(23,21): warning CS0618: 'SpriteComponent.LayerMapReserveBlank(object)' is obsolete: 'Use SpriteSystem.LayerMapReserve() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Marker\DamageMarkerSystem.cs(24,9): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId, ResPath)' is obsolete: 'Use SpriteSystem.LayerSetRsi() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Marker\DamageMarkerSystem.cs(29,90): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Weapons\Marker\DamageMarkerSystem.cs(32,9): warning CS0618: 'SpriteComponent.RemoveLayer(int)' is obsolete: 'Use SpriteSystem.RemoveLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(103,13): warning CS0618: 'SpriteComponent.Rotation.set' is obsolete: 'Use SpriteSystem.SetRotation() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Throwing\ThrownItemVisualizerSystem.cs(49,13): warning CS0618: 'SpriteComponent.Scale.set' is obsolete: 'Use SpriteSystem.SetScale() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(153,21): warning CS0618: 'SpriteComponent.Scale.set' is obsolete: 'Use SpriteSystem.SetScale() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(157,21): warning CS0618: 'SpriteComponent.Scale.set' is obsolete: 'Use SpriteSystem.SetScale() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(168,21): warning CS0618: 'SpriteComponent.LayerSetAnimationTime(object, float)' is obsolete: 'Use SpriteSystem.LayerSetAnimationTime() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(169,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(170,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(171,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(173,17): warning CS0618: 'SpriteComponent.Rotation.set' is obsolete: 'Use SpriteSystem.SetRotation() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(178,17): warning CS0618: 'SpriteComponent.Visible.set' is obsolete: 'Use SpriteSystem.SetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(185,17): warning CS0618: 'SpriteComponent.Rotation.set' is obsolete: 'Use SpriteSystem.SetRotation() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(189,21): warning CS0618: 'SpriteComponent.LayerSetAnimationTime(object, float)' is obsolete: 'Use SpriteSystem.LayerSetAnimationTime() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(190,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(191,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(192,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(209,21): warning CS0618: 'SpriteComponent.LayerSetAnimationTime(object, float)' is obsolete: 'Use SpriteSystem.LayerSetAnimationTime() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(210,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(211,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tips\TippyUIController.cs(212,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Storage\Controls\ItemGridPiece.cs(104,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(92,13): warning CS0618: 'SpriteComponent.LayerMapReserveBlank(object)' is obsolete: 'Use SpriteSystem.LayerMapReserve() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(94,13): warning CS0618: 'SpriteComponent.LayerSetRSI(object, ResPath)' is obsolete: 'Use SpriteSystem.LayerSetRsi() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(95,13): warning CS0618: 'SpriteComponent.LayerSetColor(object, Color)' is obsolete: 'Use SpriteSystem.LayerSetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(96,13): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(157,13): warning CS0618: 'SpriteComponent.RemoveLayer(object)' is obsolete: 'Use SpriteSystem.RemoveLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(193,13): warning CS0618: 'SpriteComponent.RemoveLayer(object)' is obsolete: 'Use SpriteSystem.RemoveLayer() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(201,17): warning CS0618: 'SpriteComponent.LayerMapReserveBlank(object)' is obsolete: 'Use SpriteSystem.LayerMapReserve() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(203,17): warning CS0618: 'SpriteComponent.LayerSetRSI(object, ResPath)' is obsolete: 'Use SpriteSystem.LayerSetRsi() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(204,17): warning CS0618: 'SpriteComponent.LayerSetColor(object, Color)' is obsolete: 'Use SpriteSystem.LayerSetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(205,17): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(231,17): warning CS0618: 'SpriteComponent.LayerSetOffset(object, Vector2)' is obsolete: 'Use SpriteSystem.LayerSetOffset() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(261,13): warning CS0618: 'SpriteComponent.LayerSetOffset(object, Vector2)' is obsolete: 'Use SpriteSystem.LayerSetOffset() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\TextScreen\TextScreenSystem.cs(280,13): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Inventory\InventoryUIController.cs(82,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tabletop\TabletopSystem.cs(227,17): warning CS0618: 'SpriteComponent.Scale.set' is obsolete: 'Use SpriteSystem.SetScale() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Tabletop\TabletopSystem.cs(232,17): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Inventory\InventoryUIController.cs(246,13): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\SurveillanceCamera\UI\SurveillanceCameraSetupBoundUi.cs(68,21): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Inventory\InventoryUIController.cs(367,9): warning CS0618: 'SpriteComponent.CopyFrom(SpriteComponent)' is obsolete: 'Use SpriteSystem.CopySprite() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Inventory\InventoryUIController.cs(368,9): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\SubFloor\TrayScannerSystem.cs(105,21): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\SubFloor\TrayScannerSystem.cs(139,21): warning CS0618: 'SpriteComponent.Color.set' is obsolete: 'Use SpriteSystem.SetColor() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\SubFloor\SubFloorHideSystem.cs(78,18): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\SubFloor\SubFloorHideSystem.cs(87,9): warning CS0618: 'SpriteComponent.Visible.set' is obsolete: 'Use SpriteSystem.SetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\SubFloor\SubFloorHideSystem.cs(93,13): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\SubFloor\SubFloorHideSystem.cs(102,13): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\SubFloor\SubFloorHideSystem.cs(106,13): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Inventory\Controls\ItemSlotUIContainer.cs(44,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\SurveillanceCamera\UI\SurveillanceCameraMonitorBoundUi.cs(122,21): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Inventory\Controls\ItemSlotUIContainer.cs(87,13): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\SurveillanceCamera\SurveillanceCameraVisualsSystem.cs(21,17): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\SurveillanceCamera\SurveillanceCameraVisualsSystem.cs(27,9): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Inventory\Controls\ItemSlotUIContainer.cs(126,9): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Inventory\Controls\InventoryDisplay.cs(32,13): warning CS0618: 'Logger.Warning(string)' is obsolete: 'Use ISawmill.Warning' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Hands\HandsUIController.cs(395,9): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Guidebook\GuidebookUIController.cs(88,9): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\StorageFillVisualizerSystem.cs(18,9): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Guidebook\GuidebookUIController.cs(230,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Guidebook\GuidebookUIController.cs(260,17): warning CS0618: 'Logger.Error(string)' is obsolete: 'Use ISawmill.Error' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\EntityStorageVisualizerSystem.cs(26,9): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\EntityStorageVisualizerSystem.cs(36,13): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\EntityStorageVisualizerSystem.cs(41,21): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\EntityStorageVisualizerSystem.cs(45,21): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\EntityStorageVisualizerSystem.cs(46,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\EntityStorageVisualizerSystem.cs(50,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\EntityStorageVisualizerSystem.cs(54,21): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\EntityStorageVisualizerSystem.cs(59,21): warning CS0618: 'SpriteComponent.DrawDepth.set' is obsolete: 'Use SpriteSystem.SetDrawDepth() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\EntityStorageVisualizerSystem.cs(63,21): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\EntityStorageVisualizerSystem.cs(64,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\EntityStorageVisualizerSystem.cs(67,21): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Visualizers\EntityStorageVisualizerSystem.cs(70,21): warning CS0618: 'SpriteComponent.LayerSetState(object, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Ghost\Widgets\GhostGui.xaml.cs(98,9): warning CS0618: 'Control.Dispose(bool)' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\UserInterface\Systems\Ghost\Widgets\GhostGui.xaml.cs(102,13): warning CS0618: 'Control.Dispose()' is obsolete: 'Controls should only be removed from UI tree instead of being disposed' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Systems\StorageContainerVisualsSystem.cs(24,14): warning CS0618: 'SpriteComponent.LayerMapTryGet(object, out int, bool)' is obsolete: 'Use SpriteSystem.LayerMapTryGet() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Systems\StorageContainerVisualsSystem.cs(35,13): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Systems\StorageContainerVisualsSystem.cs(37,13): warning CS0618: 'SpriteComponent.LayerSetState(int, RSI.StateId)' is obsolete: 'Use SpriteSystem.LayerSetRsiState() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Systems\StorageContainerVisualsSystem.cs(41,13): warning CS0618: 'SpriteComponent.LayerSetVisible(int, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Systems\ItemMapperSystem.cs(51,13): warning CS0618: 'SpriteComponent.LayerMapReserveBlank(object)' is obsolete: 'Use SpriteSystem.LayerMapReserve() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Systems\ItemMapperSystem.cs(52,13): warning CS0618: 'SpriteComponent.LayerSetSprite(object, SpriteSpecifier)' is obsolete: 'Use SpriteSystem.LayerSetSprite() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]
f:\Floofdev\HardLight\Content.Client\Storage\Systems\ItemMapperSystem.cs(53,13): warning CS0618: 'SpriteComponent.LayerSetVisible(object, bool)' is obsolete: 'Use SpriteSystem.LayerSetVisible() instead.' [f:\Floofdev\HardLight\Content.Client\Content.Client.csproj]