Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SharedStrings.resx « ILLink.Shared « src - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0330b7f0522778ecfb6eeac884ecec2a69e9ad07 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
<?xml version="1.0" encoding="utf-8"?>
<root>
  <!--
    Microsoft ResX Schema

    Version 2.0

    The primary goals of this format is to allow a simple XML format
    that is mostly human readable. The generation and parsing of the
    various data types are done through the TypeConverter classes
    associated with the data types.

    Example:

    ... ado.net/XML headers & schema ...
    <resheader name="resmimetype">text/microsoft-resx</resheader>
    <resheader name="version">2.0</resheader>
    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
        <value>[base64 mime encoded serialized .NET Framework object]</value>
    </data>
    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
        <comment>This is a comment</comment>
    </data>

    There are any number of "resheader" rows that contain simple
    name/value pairs.

    Each data row contains a name, and value. The row also contains a
    type or mimetype. Type corresponds to a .NET class that support
    text/value conversion through the TypeConverter architecture.
    Classes that don't support this are serialized and stored with the
    mimetype set.

    The mimetype is used for serialized objects, and tells the
    ResXResourceReader how to depersist the object. This is currently not
    extensible. For a given mimetype the value must be set accordingly

    Note - application/x-microsoft.net.object.binary.base64 is the format
    that the ResXResourceWriter will generate, however the reader can
    read any of the formats listed below.

    mimetype: application/x-microsoft.net.object.binary.base64
    value   : The object must be serialized with
            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
            : and then encoded with base64 encoding.

    mimetype: application/x-microsoft.net.object.soap.base64
    value   : The object must be serialized with
            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
            : and then encoded with base64 encoding.

    mimetype: application/x-microsoft.net.object.bytearray.base64
    value   : The object must be serialized into a byte array
            : using a System.ComponentModel.TypeConverter
            : and then encoded with base64 encoding.
    -->
  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
    <xsd:element name="root" msdata:IsDataSet="true">
      <xsd:complexType>
        <xsd:choice maxOccurs="unbounded">
          <xsd:element name="metadata">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" />
              </xsd:sequence>
              <xsd:attribute name="name" use="required" type="xsd:string" />
              <xsd:attribute name="type" type="xsd:string" />
              <xsd:attribute name="mimetype" type="xsd:string" />
              <xsd:attribute ref="xml:space" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="assembly">
            <xsd:complexType>
              <xsd:attribute name="alias" type="xsd:string" />
              <xsd:attribute name="name" type="xsd:string" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="data">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
              <xsd:attribute ref="xml:space" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="resheader">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" />
            </xsd:complexType>
          </xsd:element>
        </xsd:choice>
      </xsd:complexType>
    </xsd:element>
  </xsd:schema>
  <resheader name="resmimetype">
    <value>text/microsoft-resx</value>
  </resheader>
  <resheader name="version">
    <value>2.0</value>
  </resheader>
  <resheader name="reader">
    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
  <resheader name="writer">
    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
  <data name="XmlFeatureDoesNotSpecifyFeatureValueTitle" xml:space="preserve">
    <value>An Xml Feature does not specify a 'featurevalue' attribute.</value>
  </data>
  <data name="XmlFeatureDoesNotSpecifyFeatureValueMessage" xml:space="preserve">
    <value>Failed to process '{0}'. Feature '{1}' does not specify a 'featurevalue' attribute.</value>
  </data>
  <data name="XmlUnsupportedNonBooleanValueForFeatureTitle" xml:space="preserve">
    <value>Feature definition has to be a boolean.</value>
  </data>
  <data name="XmlUnsupportedNonBooleanValueForFeatureMessage" xml:space="preserve">
    <value>Failed to process '{0}'. Unsupported non-boolean feature definition '{1}'.</value>
  </data>
  <data name="XmlExceptionTitle" xml:space="preserve">
    <value>An exception was thrown while processing the xml file.</value>
  </data>
  <data name="XmlExceptionMessage" xml:space="preserve">
    <value>Error processing '{0}': {1}.</value>
  </data>
  <data name="CouldNotFindMethodInAssemblyTitle" xml:space="preserve">
    <value>An error ocurred while processing a method in assembly.</value>
  </data>
  <data name="CouldNotFindMethodInAssemblyMessage" xml:space="preserve">
    <value>Error processing method '{0}' in assembly '{1}'.</value>
  </data>
  <data name="CannotStubConstructorWhenBaseTypeDoesNotHaveConstructorTitle" xml:space="preserve">
    <value>Cannot stub constructor of a type when base type does not have default constructor. Constructors of derived types marked for substitution require to have a default constructor in its base type.</value>
  </data>
  <data name="CannotStubConstructorWhenBaseTypeDoesNotHaveConstructorMessage" xml:space="preserve">
    <value>Cannot stub constructor on '{0}' when base type does not have default constructor.</value>
  </data>
  <data name="CouldNotFindTypeTitle" xml:space="preserve">
    <value>Could not find predefined type".</value>
  </data>
  <data name="CouldNotFindTypeMessage" xml:space="preserve">
    <value>Missing predefined '{0}' type".</value>
  </data>
  <data name="CouldNotFindConstructorTitle" xml:space="preserve">
    <value>Could not find constructor.</value>
  </data>
  <data name="CouldNotFindConstructorMessage" xml:space="preserve">
    <value>Could not find constructor on '{0}'.</value>
  </data>
  <data name="CouldNotFindAssemblyReferenceTitle" xml:space="preserve">
    <value>Assembly reference could not be resolved.</value>
  </data>
  <data name="CouldNotFindAssemblyReferenceMessage" xml:space="preserve">
    <value>Assembly reference '{0}' could not be resolved.</value>
  </data>
  <data name="CouldNotLoadAssemblyTitle" xml:space="preserve">
    <value>Assembly cannot be loaded due to failure in processing the reference assembly.</value>
  </data>
  <data name="CouldNotLoadAssemblyMessage" xml:space="preserve">
    <value>Assembly '{0}' cannot be loaded due to failure in processing '{1}' reference</value>
  </data>
  <data name="FailedToWriteOutputTitle" xml:space="preserve">
    <value>There was an error writing the linked assembly 'output'.</value>
  </data>
  <data name="FailedToWriteOutputMessage" xml:space="preserve">
    <value>Failed to write '{0}'.</value>
  </data>
  <data name="LinkerUnexpectedErrorTitle" xml:space="preserve">
    <value>There was an unexpected error while trimming. An exception with more details is printed to the MSBuild log. Please share this stack trace with the IL Linker team to further investigate the cause and possible solution.</value>
  </data>
  <data name="LinkerUnexpectedErrorMessage" xml:space="preserve">
    <value>IL Trimmer has encountered an unexpected error. Please report the issue at https://github.com/dotnet/linker/issues</value>
  </data>
  <data name="ErrorProcessingXmlLocationTitle" xml:space="preserve">
    <value>There was an error processing 'XML document location' xml file. The most likely reason for this is that the XML file has syntactical errors.</value>
  </data>
  <data name="ErrorProcessingXmlLocationMessage" xml:space="preserve">
    <value>Error processing '{0}'.</value>
  </data>
  <data name="XmlDocumentLocationHasInvalidFeatureDefaultTitle" xml:space="preserve">
    <value>Element in XML document contains a 'featuredefault' attribute with an invalid value.</value>
  </data>
  <data name="XmlDocumentLocationHasInvalidFeatureDefaultMessage" xml:space="preserve">
    <value>Failed to process '{0}'. Unsupported value for featuredefault attribute.</value>
  </data>
  <data name="UnrecognizedCommandLineOptionTitle" xml:space="preserve">
    <value>The string passed to the command-line does not correspond to a valid command-line option.</value>
  </data>
  <data name="UnrecognizedCommandLineOptionMessage" xml:space="preserve">
    <value>Unrecognized command-line option: '{0}'.</value>
  </data>
  <data name="InvalidWarningVersionTitle" xml:space="preserve">
    <value>The value given for the --warn argument was not a valid warning version.</value>
  </data>
  <data name="InvalidWarningVersionMessage" xml:space="preserve">
    <value>Invalid warning version '{0}'.</value>
  </data>
  <data name="InvalidGenerateWarningSuppressionsValueTitle" xml:space="preserve">
    <value>Invalid value 'value' was used for command-line option '--generate-warning-suppressions'; must be 'cs' or 'xml'.</value>
  </data>
  <data name="InvalidGenerateWarningSuppressionsValueMessage" xml:space="preserve">
    <value>Invalid value '{0}' for '--generate-warning-suppressions' option.</value>
  </data>
  <data name="MissingArgumentForCommanLineOptionNameTitle" xml:space="preserve">
    <value>The command-line option 'optionName' was specified but no argument was given.</value>
  </data>
  <data name="MissingArgumentForCommanLineOptionNameMessage" xml:space="preserve">
    <value>Missing argument for '{0}' option.</value>
  </data>
  <data name="CustomDataFormatIsInvalidTitle" xml:space="preserve">
    <value>The command-line option --custom-data receives a key-value pair using the format KEY=VALUE.</value>
  </data>
  <data name="CustomDataFormatIsInvalidMessage" xml:space="preserve">
    <value>Value used with '--custom-data' has to be in the KEY=VALUE format.</value>
  </data>
  <data name="NoFilesToLinkSpecifiedTitle" xml:space="preserve">
    <value>No input files were specified. Use one of the resolver options.</value>
  </data>
  <data name="NoFilesToLinkSpecifiedMessage" xml:space="preserve">
    <value>No input files were specified. Use one of '{0}' options.</value>
  </data>
  <data name="NewMvidAndDeterministicCannotBeUsedAtSameTimeTitle" xml:space="preserve">
    <value>Options '--new-mvid' and '--deterministic' cannot be used at the same time.</value>
  </data>
  <data name="NewMvidAndDeterministicCannotBeUsedAtSameTimeMessage" xml:space="preserve">
    <value>Options '--new-mvid' and '--deterministic' cannot be used at the same time.</value>
  </data>
  <data name="AssemblyInCustomStepOptionCouldNotBeFoundTitle" xml:space="preserve">
    <value>The assembly argument specified for '--custom-step' option could not be found.</value>
  </data>
  <data name="AssemblyInCustomStepOptionCouldNotBeFoundMessage" xml:space="preserve">
    <value>The assembly '{0}' specified for '--custom-step' option could not be found.</value>
  </data>
  <data name="AssemblyPathInCustomStepMustBeFullyQualifiedTitle" xml:space="preserve">
    <value>The path to the assembly specified for '--custom-step' must be fully qualified.</value>
  </data>
  <data name="AssemblyPathInCustomStepMustBeFullyQualifiedMessage" xml:space="preserve">
    <value>The path to the assembly '{0}' specified for '--custom-step' must be fully qualified.</value>
  </data>
  <data name="InvalidArgForCustomStepTitle" xml:space="preserve">
    <value>An invalid value was specified for '--custom-step' option.</value>
  </data>
  <data name="InvalidArgForCustomStepMessage" xml:space="preserve">
    <value>Invalid value '{0}' specified for '--custom-step' option.</value>
  </data>
  <data name="ExpectedSignToControlNewStepInsertionTitle" xml:space="preserve">
    <value>A custom step that is inserted relative to an existing step in the pipeline must specify whether to be added before (-) or after (+) the step it's relative to.</value>
  </data>
  <data name="ExpectedSignToControlNewStepInsertionMessage" xml:space="preserve">
    <value>Expected '+' or '-' to control new step insertion.</value>
  </data>
  <data name="PipelineStepCouldNotBeFoundTitle" xml:space="preserve">
    <value>A custom step was specified for insertion relative to a non existent step.</value>
  </data>
  <data name="PipelineStepCouldNotBeFoundMessage" xml:space="preserve">
    <value>Pipeline step '{0}' could not be found.</value>
  </data>
  <data name="CustomStepTypeCouldNotBeFoundTitle" xml:space="preserve">
    <value>The custom step could not be found in the given assembly.</value>
  </data>
  <data name="CustomStepTypeCouldNotBeFoundMessage" xml:space="preserve">
    <value>Custom step '{0}' could not be found.</value>
  </data>
  <data name="CustomStepTypeIsIncompatibleWithLinkerVersionTitle" xml:space="preserve">
    <value>Custom step is incompatible with this trimmer version.</value>
  </data>
  <data name="CustomStepTypeIsIncompatibleWithLinkerVersionMessage" xml:space="preserve">
    <value>Custom step '{0}' is incompatible with this trimmer version.</value>
  </data>
  <data name="InvalidOptimizationValueTitle" xml:space="preserve">
    <value>The optimization 'text' is invalid. Optimization values can either be 'beforefieldinit', 'overrideremoval', 'unreachablebodies', 'unusedinterfaces', 'ipconstprop', or 'sealer'.</value>
  </data>
  <data name="InvalidOptimizationValueMessage" xml:space="preserve">
    <value>Invalid optimization value '{0}'.</value>
  </data>
  <data name="InvalidArgumentForTokenOptionTitle" xml:space="preserve">
    <value>Invalid argument for 'token' option.</value>
  </data>
  <data name="InvalidArgumentForTokenOptionMessage" xml:space="preserve">
    <value>Invalid argument for '{0}' option.</value>
  </data>
  <data name="InvalidAssemblyActionTitle" xml:space="preserve">
    <value>Invalid assembly action.</value>
  </data>
  <data name="InvalidAssemblyActionMessage" xml:space="preserve">
    <value>Invalid assembly action '{0}'.</value>
  </data>
  <data name="RootAssemblyCouldNotBeFoundTitle" xml:space="preserve">
    <value>Root assembly could not be found.</value>
  </data>
  <data name="RootAssemblyCouldNotBeFoundMessage" xml:space="preserve">
    <value>Root assembly '{0}' could not be found.</value>
  </data>
  <data name="XmlDescriptorCouldNotBeFoundTitle" xml:space="preserve">
    <value>XML descriptor file could not be found'.</value>
  </data>
  <data name="XmlDescriptorCouldNotBeFoundMessage" xml:space="preserve">
    <value>XML descriptor file '{0}' could not be found'.</value>
  </data>
  <data name="RootAssemblyDoesNotHaveEntryPointTitle" xml:space="preserve">
    <value>Root assembly does not have entry point.</value>
  </data>
  <data name="RootAssemblyDoesNotHaveEntryPointMessage" xml:space="preserve">
    <value>Root assembly '{0}' does not have entry point.</value>
  </data>
  <data name="RootAssemblyCannotUseActionTitle" xml:space="preserve">
    <value>Referenced root assembly cannot use the specified action.</value>
  </data>
  <data name="RootAssemblyCannotUseActionMessage" xml:space="preserve">
    <value>Root assembly '{0}' cannot use action '{1}'.</value>
  </data>
  <data name="InvalidAssemblyNameTitle" xml:space="preserve">
    <value>Invalid assembly name.</value>
  </data>
  <data name="InvalidAssemblyNameMessage" xml:space="preserve">
    <value>Invalid assembly name '{0}'.</value>
  </data>
  <data name="InvalidAssemblyRootModeTitle" xml:space="preserve">
    <value>Invalid assembly root mode.</value>
  </data>
  <data name="InvalidAssemblyRootModeMessage" xml:space="preserve">
    <value>Invalid assembly root mode '{0}'.</value>
  </data>
  <data name="ExportedTypeCannotBeResolvedTitle" xml:space="preserve">
    <value>Exported type cannot be resolved.</value>
  </data>
  <data name="ExportedTypeCannotBeResolvedMessage" xml:space="preserve">
    <value>Exported type '{0}' cannot be resolved.</value>
  </data>
  <data name="ReferenceAssemblyCouldNotBeLoadedTitle" xml:space="preserve">
    <value>A reference assembly input passed via -reference could not be loaded.</value>
  </data>
  <data name="ReferenceAssemblyCouldNotBeLoadedMessage" xml:space="preserve">
    <value>Reference assembly '{0}' could not be loaded.</value>
  </data>
  <data name="FailedToResolveMetadataElementTitle" xml:space="preserve">
    <value>Metadata element cannot be resolved. This usually means there is a version mismatch between dependencies.</value>
  </data>
  <data name="FailedToResolveMetadataElementMessage" xml:space="preserve">
    <value>{0}.</value>
  </data>
  <data name="FailedToResolveFieldElementTitle" xml:space="preserve">
    <value>Field element cannot be resolved. This usually means there is a version mismatch between dependencies.</value>
  </data>
  <data name="FailedToResolveFieldElementMessage" xml:space="preserve">
    <value>Field '{0}' reference could not be resolved.</value>
  </data>
  <data name="FailedToResolveMethodElementTitle" xml:space="preserve">
    <value>Method element cannot be resolved. This usually means there is a version mismatch between dependencies.</value>
  </data>
  <data name="FailedToResolveMethodElementMessage" xml:space="preserve">
    <value>Method '{0}' reference could not be resolved.</value>
  </data>
  <data name="FailedToResolveTypeElementTitle" xml:space="preserve">
    <value>Type element cannot be resolved. This usually means there is a version mismatch between dependencies.</value>
  </data>
  <data name="FailedToResolveTypeElementMessage" xml:space="preserve">
    <value>Type '{0}' reference could not be resolved.</value>
  </data>
  <data name="TypeUsedWithAttributeValueCouldNotBeFoundTitle" xml:space="preserve">
    <value>The type name used to define custom attribute value could not be resolved.</value>
  </data>
  <data name="TypeUsedWithAttributeValueCouldNotBeFoundMessage" xml:space="preserve">
    <value>The type '{0}' used with attribute value '{1}' could not be found.</value>
  </data>
  <data name="CannotConverValueToTypeTitle" xml:space="preserve">
    <value>The 'value' specified for the custom attribute value cannot be converted to specified argument type 'typeName'.</value>
  </data>
  <data name="CannotConverValueToTypeMessage" xml:space="preserve">
    <value>Cannot convert value '{0}' to type '{1}'.</value>
  </data>
  <data name="CustomAttributeArgumentForTypeRequiresNestedNodeTitle" xml:space="preserve">
    <value>The syntax for custom attribute value for 'type' requires to also specify the underlying attribute type.</value>
  </data>
  <data name="CustomAttributeArgumentForTypeRequiresNestedNodeMessage" xml:space="preserve">
    <value>Custom attribute argument for '{0}' requires nested '{1}' node.</value>
  </data>
  <data name="CouldNotResolveCustomAttributeTypeValueTitle" xml:space="preserve">
    <value>The value specified for the custom attribute of System.Type type could not be resolved.</value>
  </data>
  <data name="CouldNotResolveCustomAttributeTypeValueMessage" xml:space="preserve">
    <value>Could not resolve custom attribute type value '{0}'.</value>
  </data>
  <data name="UnexpectedAttributeArgumentTypeTitle" xml:space="preserve">
    <value>The type name used with attribute type is not one of the supported types.</value>
  </data>
  <data name="UnexpectedAttributeArgumentTypeMessage" xml:space="preserve">
    <value>Unexpected attribute argument type '{0}'.</value>
  </data>
  <data name="InvalidMetadataOptionTitle" xml:space="preserve">
    <value>Invalid metadata value.</value>
  </data>
  <data name="InvalidMetadataOptionMessage" xml:space="preserve">
    <value>Invalid metadata value '{0}'.</value>
  </data>
  <data name="TypeHasNoFieldsToPreserveTitle" xml:space="preserve">
    <value>The XML descriptor preserves fields on type, but this type has no fields.</value>
  </data>
  <data name="TypeHasNoFieldsToPreserveMessage" xml:space="preserve">
    <value>Type '{0}' has no fields to preserve.</value>
  </data>
  <data name="TypeHasNoMethodsToPreserveTitle" xml:space="preserve">
    <value>The XML descriptor preserves methods on type, but this type has no methods.</value>
  </data>
  <data name="TypeHasNoMethodsToPreserveMessage" xml:space="preserve">
    <value>Type '{0}' has no methods to preserve.</value>
  </data>
  <data name="CouldNotResolveDependencyAssemblyTitle" xml:space="preserve">
    <value>The assembly in PreserveDependency attribute could not be resolved.</value>
  </data>
  <data name="CouldNotResolveDependencyAssemblyMessage" xml:space="preserve">
    <value>Could not resolve dependency assembly '{0}' specified in a 'PreserveDependency' attribute.</value>
  </data>
  <data name="CouldNotResolveDependencyTypeTitle" xml:space="preserve">
    <value>The type in PreserveDependency attribute could not be resolved.</value>
  </data>
  <data name="CouldNotResolveDependencyTypeMessage" xml:space="preserve">
    <value>Could not resolve dependency type '{0}' specified in a 'PreserveDependency' attribute.</value>
  </data>
  <data name="CouldNotResolveDependencyMemberTitle" xml:space="preserve">
    <value>The member in PreserveDependency attribute could not be resolved.</value>
  </data>
  <data name="CouldNotResolveDependencyMemberMessage" xml:space="preserve">
    <value>Could not resolve dependency member '{0}' declared in type '{1}' specified in a 'PreserveDependency' attribute.</value>
  </data>
  <data name="XmlCouldNotResolveAssemblyTitle" xml:space="preserve">
    <value>The assembly in the XML could not be resolved.</value>
  </data>
  <data name="XmlCouldNotResolveAssemblyMessage" xml:space="preserve">
    <value>Could not resolve assembly '{0}'.</value>
  </data>
  <data name="XmlCouldNotResolveTypeTitle" xml:space="preserve">
    <value>The type in the XML could not be resolved.</value>
  </data>
  <data name="XmlCouldNotResolveTypeMessage" xml:space="preserve">
    <value>Could not resolve type '{0}'.</value>
  </data>
  <data name="XmlCouldNotFindMethodOnTypeTitle" xml:space="preserve">
    <value>The XML defined a method on a type, but the method was not found.</value>
  </data>
  <data name="XmlCouldNotFindMethodOnTypeMessage" xml:space="preserve">
    <value>Could not find method '{0}' on type '{1}'.</value>
  </data>
  <data name="XmlInvalidValueForStubTitle" xml:space="preserve">
    <value>Invalid value for 'signature' stub in the substitution XML.</value>
  </data>
  <data name="XmlInvalidValueForStubMessage" xml:space="preserve">
    <value>Invalid value for '{0}' stub.</value>
  </data>
  <data name="XmlUnkownBodyModificationTitle" xml:space="preserve">
    <value>The value of the body attribute used in the substitution XML is invalid (the only supported options are remove and stub).</value>
  </data>
  <data name="XmlUnkownBodyModificationMessage" xml:space="preserve">
    <value>Unknown body modification '{0}' for '{1}'.</value>
  </data>
  <data name="XmlCouldNotFindFieldOnTypeTitle" xml:space="preserve">
    <value>The XML defined a field on a type, but the field was not found.</value>
  </data>
  <data name="XmlCouldNotFindFieldOnTypeMessage" xml:space="preserve">
    <value>Could not find field '{0}' on type '{1}'.</value>
  </data>
  <data name="XmlSubstitutedFieldNeedsToBeStaticTitle" xml:space="preserve">
    <value>The substituted field 'field' was non-static or constant. Only static non-constant fields are supported.</value>
  </data>
  <data name="XmlSubstitutedFieldNeedsToBeStaticMessage" xml:space="preserve">
    <value>Substituted field '{0}' needs to be static field.</value>
  </data>
  <data name="XmlMissingSubstitutionValueForFieldTitle" xml:space="preserve">
    <value>A field was specified for substitution but no value to be substituted was given.</value>
  </data>
  <data name="XmlMissingSubstitutionValueForFieldMessage" xml:space="preserve">
    <value>Missing 'value' attribute for field '{0}'.</value>
  </data>
  <data name="XmlInvalidSubstitutionValueForFieldTitle" xml:space="preserve">
    <value>The value used in the substitution XML for field is not a built-in type, or does not match the type of the field.</value>
  </data>
  <data name="XmlInvalidSubstitutionValueForFieldMessage" xml:space="preserve">
    <value>Invalid value '{0}' for '{1}'.</value>
  </data>
  <data name="XmlCouldNotFindEventOnTypeTitle" xml:space="preserve">
    <value>The XML defined a event on a type, but the event was not found.</value>
  </data>
  <data name="XmlCouldNotFindEventOnTypeMessage" xml:space="preserve">
    <value>Could not find event '{0}' on type '{1}'.</value>
  </data>
  <data name="XmlCouldNotFindPropertyOnTypeTitle" xml:space="preserve">
    <value>The XML defined a property on a type, but the property was not found.</value>
  </data>
  <data name="XmlCouldNotFindPropertyOnTypeMessage" xml:space="preserve">
    <value>Could not find property '{0}' on type '{1}'.</value>
  </data>
  <data name="XmlCouldNotFindGetAccesorOfPropertyOnTypeTitle" xml:space="preserve">
    <value>The XML defined the get accessor of property on a type, but the accessor was not found.</value>
  </data>
  <data name="XmlCouldNotFindGetAccesorOfPropertyOnTypeMessage" xml:space="preserve">
    <value>Could not find the get accessor of property '{0}' on type '{1}'.</value>
  </data>
  <data name="XmlCouldNotFindSetAccesorOfPropertyOnTypeTitle" xml:space="preserve">
    <value>The XML defined the set accessor of property on a type, but the accessor was not found.</value>
  </data>
  <data name="XmlCouldNotFindSetAccesorOfPropertyOnTypeMessage" xml:space="preserve">
    <value>Could not find the set accessor of property '{0}' in type '{1}'.</value>
  </data>
  <data name="XmlCouldNotFindMatchingConstructorForCustomAttributeTitle" xml:space="preserve">
    <value>The XML attribute arguments use values or types which don't match to any constructor</value>
  </data>
  <data name="XmlCouldNotFindMatchingConstructorForCustomAttributeMessage" xml:space="preserve">
    <value>Could not find matching constructor for custom attribute '{0}' arguments.</value>
  </data>
  <data name="XmlMoreThanOneReturnElementForMethodTitle" xml:space="preserve">
    <value>Method 'method' has more than one return element specified. There can only be one return element.</value>
  </data>
  <data name="XmlMoreThanOneReturnElementForMethodMessage" xml:space="preserve">
    <value>There is more than one 'return' child element specified for method '{0}'.</value>
  </data>
  <data name="XmlMoreThanOneValyForParameterOfMethodTitle" xml:space="preserve">
    <value>Method has more than one parameter for the XML element 'parameter'. There can only be one value specified for each parameter.</value>
  </data>
  <data name="XmlMoreThanOneValyForParameterOfMethodMessage" xml:space="preserve">
    <value>More than one value specified for parameter '{0}' of method '{1}'.</value>
  </data>
  <data name="XmlDuplicatePreserveMemberTitle" xml:space="preserve">
    <value>The XML descriptor marks for preservation the member more than once.</value>
  </data>
  <data name="XmlDuplicatePreserveMemberMessage" xml:space="preserve">
    <value>Duplicate preserve of '{0}'.</value>
  </data>
  <data name="RequiresUnreferencedCodeTitle" xml:space="preserve">
    <value>Members annotated with 'RequiresUnreferencedCodeAttribute' require dynamic access otherwise can break functionality when trimming application code</value>
  </data>
  <data name="RequiresUnreferencedCodeMessage" xml:space="preserve">
    <value>Using member '{0}' which has 'RequiresUnreferencedCodeAttribute' can break functionality when trimming application code.{1}{2}</value>
  </data>
  <data name="DynamicTypeInvocationTitle" xml:space="preserve">
    <value>Using dynamic types might cause types or members to be removed by trimmer.</value>
  </data>
  <data name="DynamicTypeInvocationMessage" xml:space="preserve">
    <value>Invoking members on dynamic types is not trimming-compatible. Types or members might have been removed by the trimmer.</value>
  </data>
  <data name="AttributeShouldOnlyBeUsedOnceOnMemberTitle" xml:space="preserve">
    <value>The linker found multiple instances of attribute on a member. This attribute is only allowed to have one instance.</value>
  </data>
  <data name="AttributeShouldOnlyBeUsedOnceOnMemberMessage" xml:space="preserve">
    <value>Attribute '{0}' should only be used once on '{1}</value>
  </data>
  <data name="AttributeDoesntHaveTheRequiredNumberOfParametersTitle" xml:space="preserve">
    <value>Attribute doesn't have the required number of parameters specified.</value>
  </data>
  <data name="AttributeDoesntHaveTheRequiredNumberOfParametersMessage" xml:space="preserve">
    <value>Attribute '{0}' doesn't have the required number of parameters specified.</value>
  </data>
  <data name="XmlElementDoesNotContainRequiredAttributeFullnameTitle" xml:space="preserve">
    <value>'attribute' element does not contain attribute 'fullname' or it's empty.</value>
  </data>
  <data name="XmlElementDoesNotContainRequiredAttributeFullnameMessage" xml:space="preserve">
    <value>'attribute' element does not contain attribute 'fullname' or it's empty.</value>
  </data>
  <data name="XmlCouldNotResolveAssemblyForAttributeTitle" xml:space="preserve">
    <value>The assembly name specified for attribute could not be resolved.</value>
  </data>
  <data name="XmlCouldNotResolveAssemblyForAttributeMessage" xml:space="preserve">
    <value>Could not resolve assembly '{0}' for attribute '{1}'.</value>
  </data>
  <data name="XmlAttributeTypeCouldNotBeFoundTitle" xml:space="preserve">
    <value>The described attribute type could not be found in the assemblies.</value>
  </data>
  <data name="XmlAttributeTypeCouldNotBeFoundMessage" xml:space="preserve">
    <value>Attribute type '{0}' could not be found.</value>
  </data>
  <data name="UnrecognizedParameterInMethodCreateInstanceTitle" xml:space="preserve">
    <value>The value passed as the assembly name or type name to the CreateInstance method can't be statically analyzed.</value>
  </data>
  <data name="UnrecognizedParameterInMethodCreateInstanceMessage" xml:space="preserve">
    <value>Unrecognized value passed to the parameter '{0}' of method '{1}'. It's not possible to guarantee the availability of the target type.</value>
  </data>
  <data name="DeprecatedPreserveDependencyAttributeTitle" xml:space="preserve">
    <value>'PreserveDependencyAttribute' is deprecated. Use 'DynamicDependencyAttribute' instead.</value>
  </data>
  <data name="DeprecatedPreserveDependencyAttributeMessage" xml:space="preserve">
    <value>'PreserveDependencyAttribute' is deprecated. Use 'DynamicDependencyAttribute' instead.</value>
  </data>
  <data name="DynamicDependencyAttributeCouldNotBeAnalyzedTitle" xml:space="preserve">
    <value>The input contains an invalid use of DynamicDependencyAttribute.</value>
  </data>
  <data name="DynamicDependencyAttributeCouldNotBeAnalyzedMessage" xml:space="preserve">
    <value>The 'DynamicDependencyAttribute' could not be analyzed.</value>
  </data>
  <data name="UnresolvedAssemblyInDynamicDependencyAttributeTitle" xml:space="preserve">
    <value>The assembly string given in a DynamicDependencyAttribute constructor could not be resolved.</value>
  </data>
  <data name="UnresolvedAssemblyInDynamicDependencyAttributeMessage" xml:space="preserve">
    <value>Unresolved assembly '{0}' in 'DynamicDependencyAttribute'.</value>
  </data>
  <data name="UnresolvedTypeInDynamicDependencyAttributeTitle" xml:space="preserve">
    <value>The type in a DynamicDependencyAttribute constructor could not be resolved.</value>
  </data>
  <data name="UnresolvedTypeInDynamicDependencyAttributeMessage" xml:space="preserve">
    <value>Unresolved type '{0}' in 'DynamicDependencyAttribute'.</value>
  </data>
  <data name="NoMembersResolvedForMemberSignatureOrTypeTitle" xml:space="preserve">
    <value>The member signature or DynamicallyAccessedMemberTypes in a DynamicDependencyAttribute constructor did not resolve to any members on the type.</value>
  </data>
  <data name="NoMembersResolvedForMemberSignatureOrTypeMessage" xml:space="preserve">
    <value>No members were resolved for '{0}'.</value>
  </data>
  <data name="XmlMissingNameAttributeInResourceTitle" xml:space="preserve">
    <value>The resource element in a substitution file did not have a 'name' attribute.</value>
  </data>
  <data name="XmlMissingNameAttributeInResourceMessage" xml:space="preserve">
    <value>Missing 'name' attribute for resource.</value>
  </data>
  <data name="XmlInvalidValueForAttributeActionForResourceTitle" xml:space="preserve">
    <value>The resource element in a substitution file did not have a valid 'action' attribute.</value>
  </data>
  <data name="XmlInvalidValueForAttributeActionForResourceMessage" xml:space="preserve">
    <value>Invalid value '{0}' for attribute 'action' for resource '{1}'.</value>
  </data>
  <data name="XmlCouldNotFindResourceToRemoveInAssemblyTitle" xml:space="preserve">
    <value>The resource name in a substitution file could not be found in the specified assembly.</value>
  </data>
  <data name="XmlCouldNotFindResourceToRemoveInAssemblyMessage" xml:space="preserve">
    <value>Could not find embedded resource '{0}' to remove in assembly '{1}'.</value>
  </data>
  <data name="DynamicallyAccessedMembersIsNotAllowedOnMethodsTitle" xml:space="preserve">
    <value>The 'DynamicallyAccessedMembersAttribute' is not allowed on methods. It is allowed on method return value or method parameters.</value>
  </data>
  <data name="DynamicallyAccessedMembersIsNotAllowedOnMethodsMessage" xml:space="preserve">
    <value>The 'DynamicallyAccessedMembersAttribute' is not allowed on methods. It is allowed on method return value or method parameters though.</value>
  </data>
  <data name="DynamicallyAccessedMembersCouldNotFindBackingFieldTitle" xml:space="preserve">
    <value>Could not find a unique backing field for property to propagate 'DynamicallyAccessedMembersAttribute'.</value>
  </data>
  <data name="DynamicallyAccessedMembersCouldNotFindBackingFieldMessage" xml:space="preserve">
    <value>Could not find a unique backing field for property '{0}' to propagate 'DynamicallyAccessedMembersAttribute'.</value>
  </data>
  <data name="DynamicallyAccessedMembersConflictsBetweenPropertyAndAccessorTitle" xml:space="preserve">
    <value>'DynamicallyAccessedMembersAttribute' on property conflicts with the same attribute on its accessor.</value>
  </data>
  <data name="DynamicallyAccessedMembersConflictsBetweenPropertyAndAccessorMessage" xml:space="preserve">
    <value>'DynamicallyAccessedMembersAttribute' on property '{0}' conflicts with the same attribute on its accessor '{1}'.</value>
  </data>
  <data name="XmlCouldNotFindAnyTypeInNamespaceTitle" xml:space="preserve">
    <value>The XML descriptor specifies a namespace but there are no types found in such namespace.</value>
  </data>
  <data name="XmlCouldNotFindAnyTypeInNamespaceMessage" xml:space="preserve">
    <value>Could not find any type in namespace '{0}'.</value>
  </data>
  <data name="AttributeIsReferencedButTrimmerRemoveAllInstancesTitle" xml:space="preserve">
    <value>An attribute is being referenced in the code but the attribute instances have been removed using the 'RemoveAttributeInstances' internal attribute.</value>
  </data>
  <data name="AttributeIsReferencedButTrimmerRemoveAllInstancesMessage" xml:space="preserve">
    <value>Attribute '{0}' is being referenced in code but the trimmer was instructed to remove all instances of this attribute. If the attribute instances are necessary make sure to either remove the trimmer attribute XML portion which removes the attribute instances, or override the removal by using the trimmer XML descriptor to keep the attribute type (which in turn keeps all of its instances).</value>
  </data>
  <data name="RequiresUnreferencedCodeAttributeMismatchTitle" xml:space="preserve">
    <value>'RequiresUnreferencedCodeAttribute' annotations must match across all interface implementations or overrides.</value>
  </data>
  <data name="RequiresUnreferencedCodeAttributeMismatchMessage" xml:space="preserve">
    <value>{0}. 'RequiresUnreferencedCodeAttribute' annotations must match across all interface implementations or overrides.</value>
  </data>
  <data name="XmlRemoveAttributeInstancesCanOnlyBeUsedOnTypeTitle" xml:space="preserve">
    <value>Internal attribute 'RemoveAttributeInstances' can only be used on attribute types.</value>
  </data>
  <data name="XmlRemoveAttributeInstancesCanOnlyBeUsedOnTypeMessage" xml:space="preserve">
    <value>Internal attribute '{0}' can only be used on attribute types.</value>
  </data>
  <data name="CorrectnessOfCOMCannotBeGuaranteedTitle" xml:space="preserve">
    <value>Correctness of COM interop cannot be guaranteed after trimming. Interfaces and interface members might be removed.</value>
  </data>
  <data name="CorrectnessOfCOMCannotBeGuaranteedMessage" xml:space="preserve">
    <value>P/invoke method '{0}' declares a parameter with COM marshalling. Correctness of COM interop cannot be guaranteed after trimming. Interfaces and interface members might be removed.</value>
  </data>
  <data name="XmlPropertyDoesNotContainAttributeNameTitle" xml:space="preserve">
    <value>An attribute element has property but this could not be found.</value>
  </data>
  <data name="XmlPropertyDoesNotContainAttributeNameMessage" xml:space="preserve">
    <value>Property element does not contain attribute 'name'.</value>
  </data>
  <data name="XmlCouldNotFindPropertyTitle" xml:space="preserve">
    <value>An attribute element has property but this could not be found.</value>
  </data>
  <data name="XmlCouldNotFindPropertyMessage" xml:space="preserve">
    <value>Property '{0}' could not be found.</value>
  </data>
  <data name="MakeGenericTypeTitle" xml:space="preserve">
    <value>Either the type on which the MakeGenericType is called can't be statically determined, or the type parameters to be used for generic arguments can't be statically determined.</value>
  </data>
  <data name="MakeGenericTypeMessage" xml:space="preserve">
    <value>Call to '{0}' can not be statically analyzed. It's not possible to guarantee the availability of requirements of the generic type.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnPropertyConflictsWithBackingFieldTitle" xml:space="preserve">
    <value>'DynamicallyAccessedMemberAttribute' on property conflicts with the same attribute on its backing field.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnPropertyConflictsWithBackingFieldMessage" xml:space="preserve">
    <value>'DynamicallyAccessedMemberAttribute' on property '{0}' conflicts with the same attribute on its backing field '{1}'.</value>
  </data>
  <data name="UnrecognizedTypeNameInTypeGetTypeTitle" xml:space="preserve">
    <value>Unrecognized value passed to the parameter of method. It's not possible to guarantee the availability of the target type.</value>
  </data>
  <data name="UnrecognizedTypeNameInTypeGetTypeMessage" xml:space="preserve">
    <value>Unrecognized value passed to the parameter 'typeName' of method '{0}'. It's not possible to guarantee the availability of the target type.</value>
  </data>
  <data name="ParametersOfAssemblyCreateInstanceCannotBeAnalyzedTitle" xml:space="preserve">
    <value>Parameters passed to method cannot be analyzed. Consider using methods 'System.Type.GetType' and `System.Activator.CreateInstance` instead.</value>
  </data>
  <data name="ParametersOfAssemblyCreateInstanceCannotBeAnalyzedMessage" xml:space="preserve">
    <value>Parameters passed to method '{0}' cannot be analyzed. Consider using methods 'System.Type.GetType' and `System.Activator.CreateInstance` instead.</value>
  </data>
  <data name="UnrecognizedTypeInRuntimeHelpersRunClassConstructorTitle" xml:space="preserve">
    <value>The type passed to the RunClassConstructor is not statically known, Trimmer can't make sure that its static constructor is available.</value>
  </data>
  <data name="UnrecognizedTypeInRuntimeHelpersRunClassConstructorMessage" xml:space="preserve">
    <value>Unrecognized value passed to the parameter 'type' of method '{0}'. It's not possible to guarantee the availability of the target static constructor.</value>
  </data>
  <data name="MakeGenericMethodTitle" xml:space="preserve">
    <value>Call to 'System.Reflection.MethodInfo.MakeGenericMethod' can not be statically analyzed. It's not possible to guarantee the availability of requirements of the generic method.</value>
  </data>
  <data name="MakeGenericMethodMessage" xml:space="preserve">
    <value>Call to '{0}' can not be statically analyzed. It's not possible to guarantee the availability of requirements of the generic method.</value>
  </data>
  <data name="UnresolvedAssemblyInCreateInstanceTitle" xml:space="preserve">
    <value>Calling CreateInstance with assembly name which can't be resolved.</value>
  </data>
  <data name="UnresolvedAssemblyInCreateInstanceMessage" xml:space="preserve">
    <value>The assembly name '{0}' passed to method '{1}' references assembly which is not available.</value>
  </data>
  <data name="MethodParameterCannotBeStaticallyDeterminedTitle" xml:space="preserve">
    <value>The parameter of method has a DynamicallyAccessedMembersAttribute, but the value passed to it can not be statically analyzed.</value>
  </data>
  <data name="MethodParameterCannotBeStaticallyDeterminedMessage" xml:space="preserve">
    <value>Value passed to parameter '{0}' of method '{1}' can not be statically determined and may not meet 'DynamicallyAccessedMembersAttribute' requirements.</value>
  </data>
  <data name="MethodReturnValueCannotBeStaticallyDeterminedTitle" xml:space="preserve">
    <value>The return value of method has a DynamicallyAccessedMembersAttribute, but the value returned from the method can not be statically analyzed.</value>
  </data>
  <data name="MethodReturnValueCannotBeStaticallyDeterminedMessage" xml:space="preserve">
    <value>Value returned from method '{0}' can not be statically determined and may not meet 'DynamicallyAccessedMembersAttribute' requirements.</value>
  </data>
  <data name="FieldValueCannotBeStaticallyDeterminedTitle" xml:space="preserve">
    <value>The field has a DynamicallyAccessedMembersAttribute, but the value assigned to it can not be statically analyzed.</value>
  </data>
  <data name="FieldValueCannotBeStaticallyDeterminedMessage" xml:space="preserve">
    <value>Value assigned to {0} can not be statically determined and may not meet 'DynamicallyAccessedMembersAttribute' requirements.</value>
  </data>
  <data name="ImplicitThisCannotBeStaticallyDeterminedTitle" xml:space="preserve">
    <value>The method has a DynamicallyAccessedMembersAttribute (which applies to the implicit 'this' parameter), but the value used for the 'this' parameter can not be statically analyzed.</value>
  </data>
  <data name="ImplicitThisCannotBeStaticallyDeterminedMessage" xml:space="preserve">
    <value>Value passed to implicit 'this' parameter of method '{0}' can not be statically determined and may not meet 'DynamicallyAccessedMembersAttribute' requirements.</value>
  </data>
  <data name="TypePassedToGenericParameterCannotBeStaticallyDeterminedTitle" xml:space="preserve">
    <value>The generic parameter of type or method has a DynamicallyAccessedMembersAttribute, but the value used for it can not be statically analyzed.</value>
  </data>
  <data name="TypePassedToGenericParameterCannotBeStaticallyDeterminedMessage" xml:space="preserve">
    <value>Type passed to generic parameter '{0}' of '{1}' can not be statically determined and may not meet 'DynamicallyAccessedMembersAttribute' requirements.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchParameterTargetsParameterTitle" xml:space="preserve">
    <value>Target parameter argument does not satisfy 'DynamicallyAccessedMembersAttribute' in call to target method. The parameter of method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchParameterTargetsParameterMessage" xml:space="preserve">
    <value>'{0}' argument does not satisfy {4} in call to '{1}'. The parameter '{2}' of method '{3}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchParameterTargetsMethodReturnTypeTitle" xml:space="preserve">
    <value>Target method return value does not satisfy 'DynamicallyAccessedMembersAttribute' requirements. The parameter of method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchParameterTargetsMethodReturnTypeMessage" xml:space="preserve">
    <value>'{0}' method return value does not satisfy {3} requirements. The parameter '{1}' of method '{2}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchParameterTargetsFieldTitle" xml:space="preserve">
    <value>Value stored in field does not satisfy 'DynamicallyAccessedMembersAttribute' requirements. The parameter of method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchParameterTargetsFieldMessage" xml:space="preserve">
    <value>value stored in field '{0}' does not satisfy {3} requirements. The parameter '{1}' of method '{2}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchParameterTargetsThisParameterTitle" xml:space="preserve">
    <value>'this' argument does not satisfy 'DynamicallyAccessedMembersAttribute' in call to target method. The parameter of method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchParameterTargetsThisParameterMessage" xml:space="preserve">
    <value>'this' argument does not satisfy {3} in call to '{0}'. The parameter '{1}' of method '{2}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchParameterTargetsGenericParameterTitle" xml:space="preserve">
    <value>Generic argument does not satisfy 'DynamicallyAccessedMembersAttribute' in target method or type. The parameter of method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchParameterTargetsGenericParameterMessage" xml:space="preserve">
    <value>'{0}' generic argument does not satisfy {4} in '{1}'. The parameter '{2}' of method '{3}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchMethodReturnTypeTargetsParameterTitle" xml:space="preserve">
    <value>Target parameter argument does not satisfy 'DynamicallyAccessedMembersAttribute' in call to target method. The return value of the source method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchMethodReturnTypeTargetsParameterMessage" xml:space="preserve">
    <value>'{0}' argument does not satisfy {3} in call to '{1}'. The return value of method '{2}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchMethodReturnTypeTargetsMethodReturnTypeTitle" xml:space="preserve">
    <value>Target method return value does not satisfy 'DynamicallyAccessedMembersAttribute' requirements. The return value of the source method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchMethodReturnTypeTargetsMethodReturnTypeMessage" xml:space="preserve">
    <value>'{0}' method return value does not satisfy {2} requirements. The return value of method '{1}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchMethodReturnTypeTargetsFieldTitle" xml:space="preserve">
    <value>Value stored in field does not satisfy 'DynamicallyAccessedMembersAttribute' requirements. The return value of the source method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchMethodReturnTypeTargetsFieldMessage" xml:space="preserve">
    <value>value stored in field '{0}' does not satisfy {2} requirements. The return value of method '{1}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchMethodReturnTypeTargetsThisParameterTitle" xml:space="preserve">
    <value>'this' argument does not satisfy 'DynamicallyAccessedMembersAttribute' in call to target method. The return value of the source method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchMethodReturnTypeTargetsThisParameterMessage" xml:space="preserve">
    <value>'this' argument does not satisfy {2} in call to '{0}'. The return value of method '{1}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchMethodReturnTypeTargetsGenericParameterTitle" xml:space="preserve">
    <value>Target generic argument does not satisfy 'DynamicallyAccessedMembersAttribute' in target method or type. The return value of the source method does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchMethodReturnTypeTargetsGenericParameterMessage" xml:space="preserve">
    <value>'{0}' generic argument does not satisfy {3} in '{1}'. The return value of method '{2}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchFieldTargetsParameterTitle" xml:space="preserve">
    <value>Target parameter argument does not satisfy 'DynamicallyAccessedMembersAttribute' in call to target method. The source field does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchFieldTargetsParameterMessage" xml:space="preserve">
    <value>'{0}' argument does not satisfy {3} in call to '{1}'. The field '{2}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchFieldTargetsMethodReturnTypeTitle" xml:space="preserve">
    <value>Target method return value does not satisfy 'DynamicallyAccessedMembersAttribute' requirements. The source field does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchFieldTargetsMethodReturnTypeMessage" xml:space="preserve">
    <value>'{0}' method return value does not satisfy {2} requirements. The field '{1}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchFieldTargetsFieldTitle" xml:space="preserve">
    <value>Value stored in target field does not satisfy 'DynamicallyAccessedMembersAttribute' requirements. The source field does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchFieldTargetsFieldMessage" xml:space="preserve">
    <value>value stored in field '{0}' does not satisfy {2} requirements. The field '{1}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchFieldTargetsThisParameterTitle" xml:space="preserve">
    <value>'this' argument does not satisfy 'DynamicallyAccessedMembersAttribute' in call to target method. The source field does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchFieldTargetsThisParameterMessage" xml:space="preserve">
    <value>'this' argument does not satisfy {2} in call to '{0}'. The field '{1}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchFieldTargetsGenericParameterTitle" xml:space="preserve">
    <value>Target generic argument does not satisfy 'DynamicallyAccessedMembersAttribute' in target method or type. The source field does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchFieldTargetsGenericParameterMessage" xml:space="preserve">
    <value>'{0}' generic argument does not satisfy {3} in '{1}'. The field '{2}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchThisParameterTargetsParameterTitle" xml:space="preserve">
    <value>Target parameter argument does not satisfy 'DynamicallyAccessedMembersAttribute' in call to target method. The implicit 'this' argument of source method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchThisParameterTargetsParameterMessage" xml:space="preserve">
    <value>'{0}' argument does not satisfy {3} in call to '{1}'. The implicit 'this' argument of method '{2}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchThisParameterTargetsMethodReturnTypeTitle" xml:space="preserve">
    <value>Target method return value does not satisfy 'DynamicallyAccessedMembersAttribute' requirements. The implicit 'this' argument of source method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchThisParameterTargetsMethodReturnTypeMessage" xml:space="preserve">
    <value>'{0}' method return value does not satisfy {2} requirements. The implicit 'this' argument of method '{1}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchThisParameterTargetsFieldTitle" xml:space="preserve">
    <value>Value stored in target field does not satisfy 'DynamicallyAccessedMembersAttribute' requirements. The implicit 'this' argument of source method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchThisParameterTargetsFieldMessage" xml:space="preserve">
    <value>value stored in field '{0}' does not satisfy {2} requirements. The implicit 'this' argument of method '{1}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchThisParameterTargetsThisParameterTitle" xml:space="preserve">
    <value>'this' argument does not satisfy 'DynamicallyAccessedMembersAttribute' in call to target method. The implicit 'this' argument of source method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchThisParameterTargetsThisParameterMessage" xml:space="preserve">
    <value>'this' argument does not satisfy {2} in call to '{0}'. The implicit 'this' argument of method '{1}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchThisParameterTargetsGenericParameterTitle" xml:space="preserve">
    <value>Target generic argument does not satisfy 'DynamicallyAccessedMembersAttribute' in target method or type. The implicit 'this' argument of source method does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchThisParameterTargetsGenericParameterMessage" xml:space="preserve">
    <value>'{0}' generic argument does not satisfy {3} in '{1}'. The implicit 'this' argument of method '{2}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchTypeArgumentTargetsParameterTitle" xml:space="preserve">
    <value>Target parameter argument does not satisfy 'DynamicallyAccessedMembersAttribute' in call to target method. The generic parameter of the source method or type does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchTypeArgumentTargetsParameterMessage" xml:space="preserve">
    <value>'{0}' argument does not satisfy {4} in call to '{1}'. The generic parameter '{2}' of '{3}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchTypeArgumentTargetsMethodReturnTypeTitle" xml:space="preserve">
    <value>Target method return value does not satisfy 'DynamicallyAccessedMembersAttribute' requirements. The generic parameter of the source method or type does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchTypeArgumentTargetsMethodReturnTypeMessage" xml:space="preserve">
    <value>'{0}' method return value does not satisfy {3} requirements. The generic parameter '{1}' of '{2}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchTypeArgumentTargetsFieldTitle" xml:space="preserve">
    <value>Value stored in target field does not satisfy 'DynamicallyAccessedMembersAttribute' requirements. The generic parameter of the source method or type does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchTypeArgumentTargetsFieldMessage" xml:space="preserve">
    <value>value stored in field '{0}' does not satisfy {3} requirements. The generic parameter '{1}' of '{2}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchTypeArgumentTargetsThisParameterTitle" xml:space="preserve">
    <value>'this' argument does not satisfy 'DynamicallyAccessedMembersAttribute' in call to target method. The generic parameter of the source method or type does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchTypeArgumentTargetsThisParameterMessage" xml:space="preserve">
    <value>'this' argument does not satisfy {3} in call to '{0}'. The generic parameter '{1}' of '{2}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchTypeArgumentTargetsGenericParameterTitle" xml:space="preserve">
    <value>Target generic argument does not satisfy 'DynamicallyAccessedMembersAttribute' in target method or type. The generic parameter of the source method or type does not have matching annotations.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchTypeArgumentTargetsGenericParameterMessage" xml:space="preserve">
    <value>'{0}' generic argument does not satisfy {4} in '{1}'. The generic parameter '{2}' of '{3}' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchOnMethodParameterBetweenOverridesTitle" xml:space="preserve">
    <value>'DynamicallyAccessedMemberTypes' on the parameter of method don't match overridden parameter of method. All overridden members must have the same 'DynamicallyAccessedMembersAttribute' usage.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchOnMethodParameterBetweenOverridesMessage" xml:space="preserve">
    <value>'DynamicallyAccessedMemberTypes' in 'DynamicallyAccessedMembersAttribute' on the parameter '{0}' of method '{1}' don't match overridden parameter '{2}' of method '{3}'. All overridden members must have the same 'DynamicallyAccessedMembersAttribute' usage.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchOnMethodReturnValueBetweenOverridesTitle" xml:space="preserve">
    <value>'DynamicallyAccessedMemberTypes' on the return value of method don't match overridden return value of method. All overridden members must have the same 'DynamicallyAccessedMembersAttribute' usage.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchOnMethodReturnValueBetweenOverridesMessage" xml:space="preserve">
    <value>'DynamicallyAccessedMemberTypes' in 'DynamicallyAccessedMembersAttribute' on the return value of method '{0}' don't match overridden return value of method '{1}'. All overridden members must have the same 'DynamicallyAccessedMembersAttribute' usage.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchOnImplicitThisBetweenOverridesTitle" xml:space="preserve">
    <value>'DynamicallyAccessedMemberTypes' on the implicit 'this' parameter of method don't match overridden implicit 'this' parameter of method. All overridden members must have the same 'DynamicallyAccessedMembersAttribute' usage.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchOnImplicitThisBetweenOverridesMessage" xml:space="preserve">
    <value>'DynamicallyAccessedMemberTypes' in 'DynamicallyAccessedMembersAttribute' on the implicit 'this' parameter of method '{0}' don't match overridden implicit 'this' parameter of method '{1}'. All overridden members must have the same 'DynamicallyAccessedMembersAttribute' usage.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchOnGenericParameterBetweenOverridesTitle" xml:space="preserve">
    <value>'DynamicallyAccessedMemberTypes' on the generic parameter of method or type don't match overridden generic parameter method or type. All overridden members must have the same 'DynamicallyAccessedMembersAttribute' usage.</value>
  </data>
  <data name="DynamicallyAccessedMembersMismatchOnGenericParameterBetweenOverridesMessage" xml:space="preserve">
    <value>'DynamicallyAccessedMemberTypes' in 'DynamicallyAccessedMembersAttribute' on the generic parameter '{0}' of '{1}' don't match overridden generic parameter '{2}' of '{3}'. All overridden members must have the same 'DynamicallyAccessedMembersAttribute' usage.</value>
  </data>
  <data name="CaseInsensitiveTypeGetTypeCallIsNotSupportedTitle" xml:space="preserve">
    <value>Call to 'Type.GetType' method can perform case insensitive lookup of the type, currently ILLink can not guarantee presence of all the matching types.</value>
  </data>
  <data name="CaseInsensitiveTypeGetTypeCallIsNotSupportedMessage" xml:space="preserve">
    <value>Call to '{0}' can perform case insensitive lookup of the type, currently ILLink can not guarantee presence of all the matching types.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnFieldCanOnlyApplyToTypesOrStringsTitle" xml:space="preserve">
    <value>Field has 'DynamicallyAccessedMembersAttribute', but that attribute can only be applied to fields of type 'System.Type' or 'System.String'.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnFieldCanOnlyApplyToTypesOrStringsMessage" xml:space="preserve">
    <value>Field '{0}' has 'DynamicallyAccessedMembersAttribute', but that attribute can only be applied to fields of type 'System.Type' or 'System.String'.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnMethodParameterCanOnlyApplyToTypesOrStringsTitle" xml:space="preserve">
    <value>Parameter of method has 'DynamicallyAccessedMembersAttribute', but that attribute can only be applied to parameters of type 'System.Type' or 'System.String'.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnMethodParameterCanOnlyApplyToTypesOrStringsMessage" xml:space="preserve">
    <value>Parameter '{0}' of method '{1}' has 'DynamicallyAccessedMembersAttribute', but that attribute can only be applied to parameters of type 'System.Type' or 'System.String'.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnPropertyCanOnlyApplyToTypesOrStringsTitle" xml:space="preserve">
    <value>Property has 'DynamicallyAccessedMembersAttribute', but that attribute can only be applied to properties of type 'System.Type' or 'System.String'.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnPropertyCanOnlyApplyToTypesOrStringsMessage" xml:space="preserve">
    <value>Property '{0}' has 'DynamicallyAccessedMembersAttribute', but that attribute can only be applied to properties of type 'System.Type' or 'System.String'.</value>
  </data>
  <data name="XmlUnsuportedWildcardTitle" xml:space="preserve">
    <value>XML contains unsupported wildcard for assembly 'fullname' attribute.</value>
  </data>
  <data name="XmlUnsuportedWildcardMessage" xml:space="preserve">
    <value>XML contains unsupported wildcard for assembly 'fullname' attribute.</value>
  </data>
  <data name="AssemblyWithEmbeddedXmlApplyToAnotherAssemblyTitle" xml:space="preserve">
    <value>Embedded XML in assembly contains assembly "fullname" attribute for another assembly</value>
  </data>
  <data name="AssemblyWithEmbeddedXmlApplyToAnotherAssemblyMessage" xml:space="preserve">
    <value>Embedded XML in assembly '{0}' contains assembly "fullname" attribute for another assembly '{1}'</value>
  </data>
  <data name="InvalidIsTrimmableValueTitle" xml:space="preserve">
    <value>Invalid AssemblyMetadata 'IsTrimmable' attribute in assembly. Value must be "True".</value>
  </data>
  <data name="InvalidIsTrimmableValueMessage" xml:space="preserve">
    <value>Invalid AssemblyMetadata("IsTrimmable", "{0}") attribute in assembly '{1}'. Value must be "True".</value>
  </data>
  <data name="PropertyAccessorParameterInLinqExpressionsCannotBeStaticallyDeterminedTitle" xml:space="preserve">
    <value>Value passed to the parameter of method cannot be statically determined as a property accessor.</value>
  </data>
  <data name="PropertyAccessorParameterInLinqExpressionsCannotBeStaticallyDeterminedMessage" xml:space="preserve">
    <value>Value passed to the '{0}' parameter of method '{1}' cannot be statically determined as a property accessor.</value>
  </data>
  <data name="AssemblyProducedTrimWarningsTitle" xml:space="preserve">
    <value>Assembly produced trim warnings.</value>
  </data>
  <data name="AssemblyProducedTrimWarningsMessage" xml:space="preserve">
    <value>Assembly '{0}' produced trim warnings. For more information see https://aka.ms/dotnet-illink/libraries</value>
  </data>
  <data name="TypeWasNotFoundInAssemblyNorBaseLibraryTitle" xml:space="preserve">
    <value>Type was not found in the caller assembly nor in the base library. Type name strings used for dynamically accessing a type should be assembly qualified.</value>
  </data>
  <data name="TypeWasNotFoundInAssemblyNorBaseLibraryMessage" xml:space="preserve">
    <value>Type '{0}' was not found in the caller assembly nor in the base library. Type name strings used for dynamically accessing a type should be assembly qualified.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnMethodReturnValueCanOnlyApplyToTypesOrStringsTitle" xml:space="preserve">
    <value>Return type of method has 'DynamicallyAccessedMembersAttribute', but that attribute can only be applied to properties of type 'System.Type' or 'System.String'.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnMethodReturnValueCanOnlyApplyToTypesOrStringsMessage" xml:space="preserve">
    <value>Return type of method '{0}' has 'DynamicallyAccessedMembersAttribute', but that attribute can only be applied to properties of type 'System.Type' or 'System.String'.</value>
  </data>
  <data name="MethodsAreAssociatedWithStateMachineTitle" xml:space="preserve">
    <value>Trimmer currently can't correctly handle if the same compiler generated state machine type is associated (via the state machine attributes) with two different methods.</value>
  </data>
  <data name="MethodsAreAssociatedWithStateMachineMessage" xml:space="preserve">
    <value>Methods '{0}' and '{1}' are both associated with state machine type '{2}'. This is currently unsupported and may lead to incorrectly reported warnings.</value>
  </data>
  <data name="InvalidScopeInUnconditionalSuppressMessageTitle" xml:space="preserve">
    <value>Invalid scope used in 'UnconditionalSuppressMessageAttribute'. The only scopes supported on global unconditional suppressions are 'module', 'type' and 'member'.</value>
  </data>
  <data name="InvalidScopeInUnconditionalSuppressMessageMessage" xml:space="preserve">
    <value>Invalid scope '{0}' used in 'UnconditionalSuppressMessageAttribute' on module '{1}' with target '{2}'.</value>
  </data>
  <data name="RequiresUnreferencedCodeOnBaseClassTitle" xml:space="preserve">
    <value>Types that derive from a base class with 'RequiresUnreferencedCodeAttribute' need to explicitly use the 'RequiresUnreferencedCodeAttribute' or suppress this warning</value>
  </data>
  <data name="RequiresUnreferencedCodeOnBaseClassMessage" xml:space="preserve">
    <value>Type '{0}' derives from '{1}' which has 'RequiresUnreferencedCodeAttribute'. {2}{3}</value>
  </data>
  <data name="DynamicallyAccessedMembersFieldAccessedViaReflectionTitle" xml:space="preserve">
    <value>Field with 'DynamicallyAccessedMembersAttribute' is accessed via reflection. Trimmer can't guarantee availability of the requirements of the field.</value>
  </data>
  <data name="DynamicallyAccessedMembersFieldAccessedViaReflectionMessage" xml:space="preserve">
    <value>Field '{0}' with 'DynamicallyAccessedMembersAttribute' is accessed via reflection. Trimmer can't guarantee availability of the requirements of the field.</value>
  </data>
  <data name="DynamicallyAccessedMembersMethodAccessedViaReflectionTitle" xml:space="preserve">
    <value>Method with parameters or return value with `DynamicallyAccessedMembersAttribute` is accessed via reflection. Trimmer can't guarantee availability of the requirements of the method.</value>
  </data>
  <data name="DynamicallyAccessedMembersMethodAccessedViaReflectionMessage" xml:space="preserve">
    <value>Method '{0}' with parameters or return value with `DynamicallyAccessedMembersAttribute` is accessed via reflection. Trimmer can't guarantee availability of the requirements of the method.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnTypeReferencesMemberWithRequiresUnreferencedCodeTitle" xml:space="preserve">
    <value>'DynamicallyAccessedMembersAttribute' on a type or one of its base types references a member which requires unreferenced code.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnTypeReferencesMemberWithRequiresUnreferencedCodeMessage" xml:space="preserve">
    <value>'DynamicallyAccessedMembersAttribute' on '{0}' or one of its base types references '{1}' which requires unreferenced code.{2}{3}</value>
  </data>
  <data name="DynamicallyAccessedMembersOnTypeReferencesMemberOnBaseWithRequiresUnreferencedCodeTitle" xml:space="preserve">
    <value>'DynamicallyAccessedMembersAttribute' on a type or one of its base types references a member which requires unreferenced code.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnTypeReferencesMemberOnBaseWithRequiresUnreferencedCodeMessage" xml:space="preserve">
    <value>'DynamicallyAccessedMembersAttribute' on '{0}' or one of its base types references '{1}' which requires unreferenced code.{2}{3}</value>
  </data>
  <data name="DynamicallyAccessedMembersOnTypeReferencesMemberWithDynamicallyAccessedMembersTitle" xml:space="preserve">
    <value>'DynamicallyAccessedMembersAttribute' on a type or one of its base types references a member which has 'DynamicallyAccessedMembersAttribute' requirements.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnTypeReferencesMemberWithDynamicallyAccessedMembersMessage" xml:space="preserve">
    <value>'DynamicallyAccessedMembersAttribute' on '{0}' or one of its base types references '{1}' which has 'DynamicallyAccessedMembersAttribute' requirements.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnTypeReferencesMemberOnBaseWithDynamicallyAccessedMembersTitle" xml:space="preserve">
    <value>'DynamicallyAccessedMembersAttribute' on a type or one of its base types references a member which has 'DynamicallyAccessedMembersAttribute' requirements.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnTypeReferencesMemberOnBaseWithDynamicallyAccessedMembersMessage" xml:space="preserve">
    <value>'DynamicallyAccessedMembersAttribute' on '{0}' or one of its base types references '{1}' which has 'DynamicallyAccessedMembersAttribute' requirements.</value>
  </data>
  <data name="RequiresUnreferencedCodeOnStaticConstructorTitle" xml:space="preserve">
    <value>The use of 'RequiresUnreferencedCodeAttribute' on static constructors is disallowed since is a method not callable by the user, is only called by the runtime. Placing the attribute directly on the static constructor will have no effect, instead use 'RequiresUnreferencedCodeAttribute' on the type which will handle warning and silencing from the static constructor.</value>
  </data>
  <data name="RequiresUnreferencedCodeOnStaticConstructorMessage" xml:space="preserve">
    <value>'RequiresUnreferencedCodeAttribute' cannot be placed directly on static constructor '{0}', consider placing 'RequiresUnreferencedCodeAttribute' on the type declaration instead.</value>
  </data>
  <data name="MethodsAreAssociatedWithUserMethodTitle" xml:space="preserve">
    <value>Trimmer currently can't correctly handle if the same compiler generated lambda or local function is associated with two different methods.</value>
  </data>
  <data name="MethodsAreAssociatedWithUserMethodMessage" xml:space="preserve">
    <value>Methods '{0}' and '{1}' are both associated with lambda or local function '{2}'. This is currently unsupported and may lead to incorrectly reported warnings.</value>
  </data>
  <data name="CompilerGeneratedMemberAccessedViaReflectionTitle" xml:space="preserve">
    <value>Compiler-generated member is accessed via reflection. Trimmer can't guarantee availability of the requirements of the member.</value>
  </data>
  <data name="CompilerGeneratedMemberAccessedViaReflectionMessage" xml:space="preserve">
    <value>Compiler-generated member '{0}' is accessed via reflection. Trimmer can't guarantee availability of the requirements of the member.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnTypeReferencesCompilerGeneratedMemberTitle" xml:space="preserve">
    <value>'DynamicallyAccessedMemberAttribute' on a type or one of its base types references a compiler-generated member.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnTypeReferencesCompilerGeneratedMemberMessage" xml:space="preserve">
    <value>'DynamicallyAccessedMemberAttribute' on '{0}' or one of its base types references compiler-generated member '{1}'.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnTypeReferencesCompilerGeneratedMemberOnBaseTitle" xml:space="preserve">
    <value>'DynamicallyAccessedMemberAttribute' on a type or one of its base types references a compiler-generated member.</value>
  </data>
  <data name="DynamicallyAccessedMembersOnTypeReferencesCompilerGeneratedMemberOnBaseMessage" xml:space="preserve">
    <value>'DynamicallyAccessedMemberAttribute' on '{0}' or one of its base types references compiler-generated member '{1}'.</value>
  </data>
  <data name="AvoidAssemblyLocationInSingleFileTitle" xml:space="preserve">
    <value>Avoid accessing Assembly file path when publishing as a single file</value>
  </data>
  <data name="AvoidAssemblyLocationInSingleFileMessage" xml:space="preserve">
    <value>'{0}' always returns an empty string for assemblies embedded in a single-file app. If the path to the app directory is needed, consider calling 'System.AppContext.BaseDirectory'.</value>
  </data>
  <data name="AvoidAssemblyGetFilesInSingleFileTitle" xml:space="preserve">
    <value>Avoid accessing Assembly file path when publishing as a single file</value>
  </data>
  <data name="AvoidAssemblyGetFilesInSingleFileMessage" xml:space="preserve">
    <value>'{0}' will throw for assemblies embedded in a single-file app</value>
  </data>
  <data name="RequiresAssemblyFilesTitle" xml:space="preserve">
    <value>Avoid calling members marked with 'RequiresAssemblyFilesAttribute' when publishing as a single-file</value>
  </data>
  <data name="RequiresAssemblyFilesMessage" xml:space="preserve">
    <value>Using member '{0}' which has 'RequiresAssemblyFilesAttribute' can break functionality when embedded in a single-file app.{1}{2}</value>
  </data>
  <data name="RequiresAssemblyFilesAttributeMismatchTitle" xml:space="preserve">
    <value>'RequiresAssemblyFilesAttribute' annotations must match across all interface implementations or overrides.</value>
  </data>
  <data name="RequiresAssemblyFilesAttributeMismatchMessage" xml:space="preserve">
    <value>{0}. 'RequiresAssemblyFilesAttribute' annotations must match across all interface implementations or overrides.</value>
  </data>
  <data name="RequiresDynamicCodeTitle" xml:space="preserve">
    <value>Calling members annotated with 'RequiresDynamicCodeAttribute' may break functionality when AOT compiling.</value>
  </data>
  <data name="RequiresDynamicCodeMessage" xml:space="preserve">
    <value>Using member '{0}' which has 'RequiresDynamicCodeAttribute' can break functionality when AOT compiling.{1}{2}</value>
  </data>
  <data name="RequiresDynamicCodeAttributeMismatchTitle" xml:space="preserve">
    <value>'RequiresDynamicCodeAttribute' annotations must match across all interface implementations or overrides.</value>
  </data>
  <data name="RequiresDynamicCodeAttributeMismatchMessage" xml:space="preserve">
    <value>{0}. 'RequiresDynamicCodeAttribute' annotations must match across all interface implementations or overrides.</value>
  </data>
  <data name="COMInteropNotSupportedInFullAOTTitle" xml:space="preserve">
    <value>COM interop is not supported with full ahead of time compilation.</value>
  </data>
  <data name="COMInteropNotSupportedInFullAOTMessage" xml:space="preserve">
    <value>COM interop is not supported with full ahead of time compilation.</value>
  </data>
  <data name="AssemblyProducedAOTWarningsTitle" xml:space="preserve">
    <value>Assembly produced AOT analysis warnings.</value>
  </data>
  <data name="AssemblyProducedAOTWarningsMessage" xml:space="preserve">
    <value>Assembly '{0}' produced AOT analysis warnings.</value>
  </data>
  <data name="GenericRecursionCycleTitle" xml:space="preserve">
    <value>Generic expansion to was aborted due to generic recursion. An exception will be thrown at runtime if this codepath is ever reached.</value>
  </data>
  <data name="GenericRecursionCycleMessage" xml:space="preserve">
    <value>Generic expansion to '{0}' was aborted due to generic recursion. An exception will be thrown at runtime if this codepath is ever reached. Generic recursion also negatively affects compilation speed and the size of the compilation output. It is advisable to remove the source of the generic recursion by restructuring the program around the source of recursion. The source of generic recursion might include: {1}</value>
  </data>
  <data name="CorrectnessOfAbstractDelegatesCannotBeGuaranteedTitle" xml:space="preserve">
    <value>P/invoke method declares a parameter with an abstract delegate. Correctness of interop for abstract delegates cannot be guaranteed after native compilation.</value>
  </data>
  <data name="CorrectnessOfAbstractDelegatesCannotBeGuaranteedMessage" xml:space="preserve">
    <value>P/invoke method '{0}' declares a parameter with an abstract delegate. Correctness of interop for abstract delegates cannot be guaranteed after native compilation: the marshalling code for the delegate might not be available. Use a non-abstract delegate type or ensure any delegate instance passed as parameter is marked with `UnmanagedFunctionPointerAttribute`.</value>
  </data>
  <data name="BaseRequiresMismatchMessage" xml:space="preserve">
    <value>Base member '{2}' with '{0}' has a derived member '{1}' without '{0}'</value>
  </data>
  <data name="DerivedRequiresMismatchMessage" xml:space="preserve">
    <value>Member '{1}' with '{0}' overrides base member '{2}' without '{0}'</value>
  </data>
  <data name="ImplementationRequiresMismatchMessage" xml:space="preserve">
    <value>Member '{1}' with '{0}' implements interface member '{2}' without '{0}'</value>
  </data>
  <data name="InterfaceRequiresMismatchMessage" xml:space="preserve">
    <value>Interface member '{2}' with '{0}' has an implementation member '{1}' without '{0}'</value>
  </data>
  <data name="RequiresOnBaseClassMessage" xml:space="preserve">
    <value>Type '{0}' derives from '{1}' which has 'RequiresUnreferencedCodeAttribute'. {2}{3}</value>
  </data>
  <data name="RequiresOnBaseClassTitle" xml:space="preserve">
    <value>Types that derive from a base class with 'RequiresUnreferencedCodeAttribute' need to explicitly use the 'RequiresUnreferencedCodeAttribute' or suppress this warning</value>
  </data>
  <data name="RequiresDynamicCodeOnStaticConstructorMessage" xml:space="preserve">
    <value>'RequiresDynamicCodeAttribute' cannot be placed directly on static constructor '{0}'.</value>
  </data>
  <data name="RequiresDynamicCodeOnStaticConstructorTitle" xml:space="preserve">
    <value>The use of 'RequiresDynamicCodeAttribute' on static constructors is disallowed since is a method not callable by the user, is only called by the runtime. Placing the attribute directly on the static constructor will have no effect, instead use 'RequiresUnreferencedCodeAttribute' on the type which will handle warning and silencing from the static constructor.</value>
  </data>
  <data name="RequiresAssemblyFilesOnStaticConstructorMessage" xml:space="preserve">
    <value>'RequiresAssemblyFilesAttribute' cannot be placed directly on static constructor '{0}'.</value>
  </data>
  <data name="RequiresAssemblyFilesOnStaticConstructorTitle" xml:space="preserve">
    <value>The use of 'RequiresAssemblyFilesAttribute' on static constructors is disallowed since is a method not callable by the user, is only called by the runtime. Placing the attribute directly on the static constructor will have no effect, instead use 'RequiresUnreferencedCodeAttribute' on the type which will handle warning and silencing from the static constructor.</value>
  </data>
  <data name="UnrecognizedInternalAttributeMessage" xml:space="preserve">
    <value>The internal attribute name '{0}' being used in the xml is not supported by the linker, check the spelling and the supported internal attributes.</value>
  </data>
  <data name="UnrecognizedInternalAttributeTitle" xml:space="preserve">
    <value>Unrecognized internal attribute '{0}'</value>
  </data>
  <data name="InvalidDependenciesFileFormatMessage" xml:space="preserve">
    <value>The only allowed file types are Xml or Dgml.</value>
  </data>
  <data name="InvalidDependenciesFileFormatTitle" xml:space="preserve">
    <value>Unrecognized dependencies file type.</value>
  </data>
  <data name="RedundantSuppressionMessage" xml:space="preserve">
    <value>Unused 'UnconditionalSuppressMessageAttribute' for warning '{0}'. Consider removing the unused warning suppression.</value>
  </data>
  <data name="RedundantSuppressionTitle" xml:space="preserve">
    <value>Unused 'UnconditionalSuppressMessageAttribute' found. Consider removing the unused warning suppression.</value>
  </data>
</root>