forked from X-Sharp/XSharpPublic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Runtime.xiproj
2086 lines (2057 loc) · 58 KB
/
Runtime.xiproj
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
[General]
PROJECT = Runtime
IDEVersion = 1.15a
OutputFolder = %ProjectPath%\Bin\
Description =
GUID = 3A2B95E7-CF54-4E77-B22D-FDA94582BA81
StartUpApp = 5A6F39F8-DB5F-4C1E-AC32-0AD778E7653F
PrgEncoding = Default
SupportCF = 0
NoAppFileCreate = 0
CopyAssembliesToFolder =
DebugExecutable =
[ProjectExportOptions]
ExportResources = 0
ExportConfig = 0
ExportImages = 0
[ProjectAutoExportOptions]
AutoExportFolder = %ProjectPath%\Export
AutoExportType = 0
AutoExportInclude = 0
AutoExportOn = 0
AutoExportInterval = 0
[Config Files]
FileStatusGuid = BA2AB4E7-DACA-442E-80D4-D22500A06B7C
CustomControlsGuid = 2E6221E6-9470-415B-B277-57892CA28BDA
DefaultPropertiesGuid = E02D3177-9FE5-4634-BC3D-B9108BC76452
[Application Groups]
[Applications]
; ************** APPLICATION XSharp.Core *************
Application = XSharp.Core
IDEVersion = 1.15a
GalleryName =
GalleryPage =
GalleryDefaultName =
Target = 2
Platform = AnyCPU
Language = XSharp
Runtime = CLR4
Dialect = Core
Folder = %ProjectPath%\Runtime\XSharp.Core\
PrgSubFolder =
ResourcesSubFolder =
Description =
NameSpace =
Assembly =
Extension =
ApplicationIcon =
OutputFolder =
Frameworks = 1
GUID = 354515DF-76E6-4CF9-B203-F8F632ACC2DC
IncludeInProjectBuild = 1
IncludeInProjectSearch = 1
IncludeInProjectExport = 1
IncludePath = %ProjectPath%\Common
SignAssembly = 1
KeyFile = %Projectpath%\Common\XSharp.snk
[ExportOptions]
ExportResources = 0
ExportImages = 0
[XSharp.Core FileGroups]
FileGroup = Types
FileGroupGUID = EFAF6477-C5E6-44EA-B161-0FEA5E8915C6
FileGroup = Properties
FileGroupGUID = C71B5EFD-03CF-47E3-9554-EFBA946242A2
FileGroup = Functions
FileGroupGUID = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileGroup = RDD
FileGroupGUID = D79F4103-5B82-4C94-86C4-A7543E998712
FileGroup = State
FileGroupGUID = 254874FE-A644-4991-960B-CB734F219E12
[XSharp.Core Files]
File = %AppPath%\Functions\Convert.prg
FileGUID = 5965051D-65AF-4AB4-8F39-D32A576FF259
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Functions\Debug.prg
FileGUID = 67AD46BE-A737-4231-B534-5EC5DF08A823
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Functions\DT.prg
FileGUID = F9E64BD5-F8BF-4FAB-A75D-FA0D55E92C73
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Functions\Error.prg
FileGUID = 66AE0ABC-50A2-4FBF-BEE9-020227F74B18
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Functions\File.prg
FileGUID = E6F31DEE-EACD-4794-A5FD-28DCF3B1AB50
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Functions\FileIO.prg
FileGUID = 1BEFFECE-A199-474A-8FA2-D0F94FA83918
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Functions\FileSearch.prg
FileGUID = 80AE249A-E49D-4CCB-A0C5-F9759DA73211
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Functions\Memo.prg
FileGUID = 25486A13-DB9F-4D1D-B4AF-7B4E649E0213
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Functions\Numeric.prg
FileGUID = 118F8FBD-B93B-4705-A69C-B5A97EC0381B
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Functions\OS.prg
FileGUID = E54101E4-8621-4B9E-BCDA-EDBB9A8E7ECF
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Functions\String.prg
FileGUID = 22206A74-06C9-4E43-903A-70211F012CE6
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Types\Attributes.prg
FileGUID = 1FC1FB12-3724-4CE7-9CDB-D9F4544B707E
FileFileGroup = EFAF6477-C5E6-44EA-B161-0FEA5E8915C6
FileType = Code
File = %AppPath%\Types\Error.prg
FileGUID = D399DE71-D451-49CC-95A8-DB64474BD389
FileFileGroup = EFAF6477-C5E6-44EA-B161-0FEA5E8915C6
FileType = Code
File = %AppPath%\Types\ErrorEnums.prg
FileGUID = E6E312C7-1D10-457A-A069-D35891A42E10
FileFileGroup = EFAF6477-C5E6-44EA-B161-0FEA5E8915C6
FileType = Code
File = %AppPath%\Types\Interfaces.prg
FileGUID = A0658A6D-C9EB-4ADF-A900-FA96EE0942A5
FileFileGroup = EFAF6477-C5E6-44EA-B161-0FEA5E8915C6
FileType = Code
File = %AppPath%\Types\Win32FileStream.prg
FileGUID = 6143365C-3013-4197-9C1D-9ED91E44BD99
FileFileGroup = EFAF6477-C5E6-44EA-B161-0FEA5E8915C6
FileType = Code
File = %AppPath%\Types\WrappedException.prg
FileGUID = EDBDC58C-1B4D-48BC-A7F7-7FCD581AE11A
FileFileGroup = EFAF6477-C5E6-44EA-B161-0FEA5E8915C6
FileType = Code
File = %AppPath%\RDD\BaseIndex.prg
FileGUID = 11863033-1F14-4277-A52E-AAAD2A7ACFF0
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\RDD\BaseMemo.prg
FileGUID = CAFAF353-E14B-4F21-A1C9-39B18D9D0775
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\RDD\DbFloat.prg
FileGUID = 164A6318-E760-4867-9757-6AFAB7D24EB7
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\RDD\IMemo.prg
FileGUID = 2C89DB3B-0CD4-4E71-B53C-A2453CB50EE4
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\RDD\IOrder.prg
FileGUID = CA174681-D43A-431C-9DCB-03B372CF22CD
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\RDD\IRDD.prg
FileGUID = 1784750E-F646-40E1-890C-1E405C3B7E09
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\RDD\RDDDefines.prg
FileGUID = 3E55F0F1-B255-432F-9735-45BD6ABB8023
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\RDD\RddEnums.prg
FileGUID = 85E941D0-FEC1-462C-95DD-72F628203543
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\RDD\RddError.prg
FileGUID = CD7E580F-443E-4191-BF70-81E125DA9592
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\RDD\RddHelpers.prg
FileGUID = 4EB05A61-680D-48A6-9793-B1CEDD69CD17
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\RDD\RDDSupport.prg
FileGUID = 3567AE51-6A22-453C-9E3C-5F0FE7C9295E
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\RDD\Workarea.prg
FileGUID = B3204438-8758-46A3-AE6E-A81D7AF6E199
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\RDD\Workareas.prg
FileGUID = 2C44F9FC-F8B3-4C3D-93B5-F3A0C47A4E5B
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\State\EnumSet.prg
FileGUID = D4387935-753C-416E-9C06-E157A8D56413
FileFileGroup = 254874FE-A644-4991-960B-CB734F219E12
FileType = Code
File = %AppPath%\State\Get.prg
FileGUID = B6F48875-6B0A-4B15-9D39-B093AD1510E1
FileFileGroup = 254874FE-A644-4991-960B-CB734F219E12
FileType = Code
File = %AppPath%\State\Set.prg
FileGUID = 5643C562-9E80-422D-A8CF-256C498F4F46
FileFileGroup = 254874FE-A644-4991-960B-CB734F219E12
FileType = Code
File = %AppPath%\State\State.prg
FileGUID = 128B0202-94EA-40EB-9F76-DBBC67994656
FileFileGroup = 254874FE-A644-4991-960B-CB734F219E12
FileType = Code
File = %AppPath%\Collations.Designer.prg
FileGUID = D77559E7-395D-4B5E-82A2-FE759E3DBA85
FileType = Code
File = %AppPath%\Defines.prg
FileGUID = 9D404D7F-E6F5-4DCA-8420-1AFD396C3C20
FileType = Code
File = %AppPath%\ErrorEnum.prg
FileGUID = BF35B311-7BCF-464C-AA6B-15EC1B523707
FileType = Code
File = %AppPath%\Messages.prg
FileGUID = 52C2B402-4AC8-424A-8283-7751CEBD27FA
FileType = Code
File = %AppPath%\Properties\AssemblyInfo.prg
FileGUID = 298E3E12-3F58-4DDE-BFD2-EC6822552BB8
FileFileGroup = C71B5EFD-03CF-47E3-9554-EFBA946242A2
FileType = Code
File = %AppPath%\Functions\Win32.prg
FileGUID = DFFB3952-CA23-4128-AF4E-9010707E57C8
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Functions\StringCompare.prg
FileGUID = 3EABFA78-9850-4348-AB1F-2C4065DA50C5
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %ProjectPath%\Common\commonAssemblyInfo.prg
FileGUID = AF722419-95C4-4E18-96A3-E44158ACC0C6
FileFileGroup = C71B5EFD-03CF-47E3-9554-EFBA946242A2
FileType = Code
File = %ProjectPath%\Common\constants.prg
FileGUID = DA6CC8B3-8463-4DD7-AB24-61782F63007C
FileFileGroup = C71B5EFD-03CF-47E3-9554-EFBA946242A2
FileType = Code
File = %AppPath%\Functions\AssemblyLoader.prg
FileGUID = 8D1A7800-7368-4DA4-AD62-F4AAEFD19257
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\Functions\Macro.prg
FileGUID = 6E67B3A7-1177-41C8-A15E-4316113ABE3B
FileFileGroup = 14DD76ED-032C-4917-A08D-350567EFBCF4
FileType = Code
File = %AppPath%\RDD\CoreDb.prg
FileGUID = 6BD4B854-95EB-4F2E-93EC-D59C7CB530CC
FileFileGroup = D79F4103-5B82-4C94-86C4-A7543E998712
FileType = Code
File = %AppPath%\State\DateCountryEnum.prg
FileGUID = 9FF5EEDE-37A6-4D78-B12D-518361A408A5
FileFileGroup = 254874FE-A644-4991-960B-CB734F219E12
FileType = Code
File = %AppPath%\Types\MacroSupport.prg
FileGUID = 66EA32F3-9A56-4E50-843B-AF492FECB826
FileFileGroup = EFAF6477-C5E6-44EA-B161-0FEA5E8915C6
FileType = Code
[XSharp.Core References]
ReferenceGAC = CLR4,System,1,0,4.0.0.0
ReferenceGAC = CLR4,System.Core,1,0,4.0.0.0
ReferenceGAC = CLR4,System.Windows.Forms,1,0,4.0.0.0
[XSharp.Core Resources]
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Collations.resources
ResourceFileGuid = D0E4D7C0-F40B-4043-8C2F-05570E74DEC5
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Croatia.resources
ResourceFileGuid = B23ABB1D-6A9F-4E7A-BA64-6DBC3D36A60D
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Czech852.resources
ResourceFileGuid = C50B1EAB-F43A-45EF-AEE7-F7DB5B21DDD3
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Danish.resources
ResourceFileGuid = EBCA0F4F-C10F-4ACB-A44F-D5E53C016E19
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Dutch.resources
ResourceFileGuid = CDF7AF63-8452-4710-B314-DBEBB3C5296F
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Finnish.resources
ResourceFileGuid = C378D0D1-49F1-4B77-A164-822F19C57013
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.French.resources
ResourceFileGuid = 46883BCA-88D2-4707-A4FE-374F525619C6
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Generic.resources
ResourceFileGuid = 7395EDC4-C691-4213-A50F-F44CF7C867F6
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.German.resources
ResourceFileGuid = AD1B3A9B-36D5-45C5-AF1B-517DD678DE97
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Hung852.resources
ResourceFileGuid = B13F62FD-5BA4-4763-8A5D-E2D5E9A25393
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Italian.resources
ResourceFileGuid = 02EE1FB1-3B2B-43A7-8AB9-3F6329BF58C5
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Norwegn.resources
ResourceFileGuid = 60F746B1-520D-4544-BE06-10289F740863
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Pol852.resources
ResourceFileGuid = 35A3392C-3F07-4C8E-AFF1-20363AA0D40B
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Port850.resources
ResourceFileGuid = 40448B15-D4AD-4C47-9785-D3ED3B39FE7C
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Romania.resources
ResourceFileGuid = E913A83F-2285-4DF4-809E-5E6B63DB47FE
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Russian.resources
ResourceFileGuid = E6A534BD-68C4-4B45-8CD4-684ED58BB55A
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Serbia.resources
ResourceFileGuid = E462B391-7CAC-4EEF-80D8-A053F5A19E34
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Slov852.resources
ResourceFileGuid = FA96DA47-8BB7-437C-B7F8-0163EC48B37C
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.SL-W-EE.resources
ResourceFileGuid = DF281420-CFD2-4F86-94F9-0ACFE935FFA8
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Spanish.resources
ResourceFileGuid = C9873979-1F14-4AC0-9A02-A36DE940E257
Linked = 1
Modified = 0
ResourceFile = External , %ProjectPath%\Binaries\Obj\Debug\XSharp.Core\XSharp.Language.Swedish.resources
ResourceFileGuid = 33200956-EC39-4CDD-952A-F7004AFDB1E5
Linked = 1
Modified = 0
[XSharp.Core Native Resources]
[XSharp.Core License files]
[XSharp.Core General Options]
Switches=/nowarn:162
ZeroArrays=1
CaseSensitive=0
ImplicitNamespace=0
VO1=0
VO2=0
VO3=0
VO4=0
VO5=0
VO6=0
VO7=0
VO8=0
VO9=0
VO10=0
VO11=0
VO12=0
VO13=0
VO14=0
VO16=0
LateBound=0
Unsafe=1
IgnoreStdDefs=0
Ovf=0
FOvf=0
ResponseOnly=0
[XSharp.Core Configurations]
AppConfig = Debug,11111111-1111-1111-1111-111111111111
Switches=
SwitchesCF=
CommandLine=
CommandLineCF=
Debug=1
DebugInit=1
DefineDebug=1
DefineTrace=0
SyntaxOnly=0
WarningsErrors=0
ForceConsole=0
ForceX86=0
AppConfig = Release,22222222-2222-2222-2222-222222222222
Switches=
SwitchesCF=
CommandLine=
CommandLineCF=
Debug=0
DebugInit=0
DefineDebug=0
DefineTrace=0
SyntaxOnly=0
WarningsErrors=0
ForceConsole=0
ForceX86=0
ENDApplication = XSharp.Core
; ************** APPLICATION XSharp.VO *************
Application = XSharp.VO
IDEVersion = 1.15a
GalleryName =
GalleryPage =
GalleryDefaultName =
Target = 2
Platform = AnyCPU
Language = XSharp
Runtime = CLR4
Dialect = Vulcan
Folder = %ProjectPath%\Runtime\XSharp.VO\
PrgSubFolder =
ResourcesSubFolder =
Description =
NameSpace = XSharp.VO
Assembly =
Extension =
ApplicationIcon =
OutputFolder =
Frameworks = 1
GUID = 9586F09D-06AC-4E3A-AFE2-5F91602645A3
IncludeInProjectBuild = 1
IncludeInProjectSearch = 1
IncludeInProjectExport = 1
IncludePath = %ProjectPath%\Common
SignAssembly = 1
KeyFile = %Projectpath%\Common\XSharp.snk
[ExportOptions]
ExportResources = 0
ExportImages = 0
[XSharp.VO FileGroups]
FileGroup = Properties
FileGroupGUID = 251196D7-ADC5-4A76-B959-4BB57DDF54C5
FileGroup = Functions
FileGroupGUID = 12DB2134-A8BB-4C2B-8F9D-1697D7532259
FileGroup = Types
FileGroupGUID = D0235414-16D1-4591-9665-0F6BA604F180
[XSharp.VO Files]
File = %AppPath%\Functions\International.prg
FileGUID = CFB62933-52C0-411B-B722-1FBA00E94C8D
FileFileGroup = 12DB2134-A8BB-4C2B-8F9D-1697D7532259
FileType = Code
File = %AppPath%\Functions\Obsolete.prg
FileGUID = 593C8B65-85EC-4678-B5B6-8BC5177FB517
FileFileGroup = 12DB2134-A8BB-4C2B-8F9D-1697D7532259
FileType = Code
File = %AppPath%\Properties\AssemblyInfo.prg
FileGUID = F6621F15-A01F-4A0B-B864-D368D862FA08
FileFileGroup = 251196D7-ADC5-4A76-B959-4BB57DDF54C5
FileType = Code
File = %ProjectPath%\Common\commonAssemblyInfo.prg
FileGUID = 9305B2E9-6469-4852-8C9B-A428D1C2D069
FileType = Code
File = %ProjectPath%\Common\constants.prg
FileGUID = DF6551D7-B1F7-4C2D-AA1F-45CE22833EA8
FileType = Code
File = %AppPath%\Functions\International2.prg
FileGUID = 290E1E1C-AB2B-4B88-833E-C676A1D4BC6E
FileFileGroup = 12DB2134-A8BB-4C2B-8F9D-1697D7532259
FileType = Code
File = %AppPath%\Functions\Registry.prg
FileGUID = 2431FFBC-A2A1-4A77-AECE-3AE17FCEC15D
FileFileGroup = 12DB2134-A8BB-4C2B-8F9D-1697D7532259
FileType = Code
File = %AppPath%\Functions\unsafe.prg
FileGUID = E37D46CC-922B-4AF8-9412-89FC2DB2F9D7
FileFileGroup = 12DB2134-A8BB-4C2B-8F9D-1697D7532259
FileType = Code
File = %AppPath%\Types\ErrorDialog.prg
FileGUID = 0A9593D2-024C-4456-8D69-2C1A868382A4
FileFileGroup = D0235414-16D1-4591-9665-0F6BA604F180
FileType = Code
File = %AppPath%\Types\NamedArg.prg
FileGUID = 9C57B2A9-8CB0-4D98-9132-DBE484FB60CF
FileFileGroup = D0235414-16D1-4591-9665-0F6BA604F180
FileType = Code
File = %AppPath%\Types\OleAutoObject.prg
FileGUID = FB852334-1F9B-4140-B059-586FA689C948
FileFileGroup = D0235414-16D1-4591-9665-0F6BA604F180
FileType = Code
File = %AppPath%\Types\OleAutoObjectFromFile.prg
FileGUID = A28FCA52-FFCC-460F-B917-702F69744722
FileFileGroup = D0235414-16D1-4591-9665-0F6BA604F180
FileType = Code
File = %AppPath%\Types\OleDateTime.prg
FileGUID = 729C635E-329D-47B5-872E-4BFD21F15B26
FileFileGroup = D0235414-16D1-4591-9665-0F6BA604F180
FileType = Code
File = %AppPath%\Types\VObject.prg
FileGUID = AEFA3A87-F0F8-4CEF-A0D8-E966BC299A9A
FileFileGroup = D0235414-16D1-4591-9665-0F6BA604F180
FileType = Code
File = %AppPath%\Functions\String.prg
FileGUID = 8B6BB1A1-D248-456E-A3FA-9AF099015569
FileFileGroup = 12DB2134-A8BB-4C2B-8F9D-1697D7532259
FileType = Code
[XSharp.VO References]
ReferenceGAC = CLR4,System,1,0,4.0.0.0
ReferenceGAC = CLR4,System.Core,1,0,4.0.0.0
ReferenceGAC = CLR4,System.Windows.Forms,1,0,4.0.0.0
ReferenceProject = 354515DF-76E6-4CF9-B203-F8F632ACC2DC,1,0,XSharp.Core
ReferenceProject = F345BAB5-72C2-4BCF-8685-78C901E0382B,1,0,XSharp.RT
ReferenceGAC = CLR4,System.Drawing,1,0,4.0.0.0
[XSharp.VO Resources]
[XSharp.VO Native Resources]
[XSharp.VO License files]
[XSharp.VO General Options]
Switches=/nowarn:162
ZeroArrays=0
CaseSensitive=0
ImplicitNamespace=1
VO1=0
VO2=0
VO3=0
VO4=0
VO5=0
VO6=0
VO7=0
VO8=0
VO9=0
VO10=0
VO11=0
VO12=0
VO13=0
VO14=0
VO16=0
LateBound=0
Unsafe=1
IgnoreStdDefs=0
Ovf=0
FOvf=0
ResponseOnly=0
[XSharp.VO Configurations]
AppConfig = Debug,11111111-1111-1111-1111-111111111111
Switches=
SwitchesCF=
CommandLine=
CommandLineCF=
Debug=1
DebugInit=1
DefineDebug=1
DefineTrace=0
SyntaxOnly=0
WarningsErrors=0
ForceConsole=0
ForceX86=0
AppConfig = Release,22222222-2222-2222-2222-222222222222
Switches=
SwitchesCF=
CommandLine=
CommandLineCF=
Debug=0
DebugInit=0
DefineDebug=0
DefineTrace=0
SyntaxOnly=0
WarningsErrors=0
ForceConsole=0
ForceX86=0
ENDApplication = XSharp.VO
; ************** APPLICATION Xide.Tests *************
Application = Xide.Tests
IDEVersion = 1.15a
GalleryName =
GalleryPage =
GalleryDefaultName =
Target = 0
Platform = x86
Language = XSharp
Runtime = CLR4
Dialect = Vulcan
Folder = %ProjectPath%\Runtime\XideTests\Xide.Tests\
PrgSubFolder =
ResourcesSubFolder =
Description =
NameSpace =
Assembly = Xide.Tests
Extension =
ApplicationIcon =
OutputFolder =
Frameworks = 1
GUID = 5A6F39F8-DB5F-4C1E-AC32-0AD778E7653F
IncludeInProjectBuild = 1
IncludeInProjectSearch = 1
IncludeInProjectExport = 1
IncludePath =
SignAssembly = 0
KeyFile =
[ExportOptions]
ExportResources = 0
ExportImages = 0
[Xide.Tests FileGroups]
[Xide.Tests Files]
File = %AppPath%\XideTetsts.prg
FileGUID = 8F3182AD-B932-4C35-9E70-92EB57D0875F
FileType = Code
[Xide.Tests References]
ReferenceGAC = CLR4,System,1,0,4.0.0.0
ReferenceGAC = CLR4,System.Core,1,0,4.0.0.0
ReferenceGAC = CLR4,System.Windows.Forms,1,0,4.0.0.0
ReferenceProject = 354515DF-76E6-4CF9-B203-F8F632ACC2DC,1,0,XSharp.Core
ReferenceProject = 9586F09D-06AC-4E3A-AFE2-5F91602645A3,1,0,XSharp.VO
ReferenceProject = B2E60778-A070-4166-944F-90D03AD16052,1,0,XSharp.Core.Tests
ReferenceProject = C6945D33-33B3-4BA2-A6C3-2FE79B22BEEE,1,0,XSharp.VO.Tests
ReferenceProject = 0D5205A3-6D8B-4632-BC88-DA84484B1FFA,1,0,Xide.Unit
ReferenceProject = D166E99E-9E2E-49E5-BEFD-63D3E25D3315,1,0,XSharp.VO.Latebound.Tests
ReferenceProject = 700DB486-219A-4174-A352-E1BC55BBD074,1,0,XSharp.Rdd.Tests
ReferenceProject = F345BAB5-72C2-4BCF-8685-78C901E0382B,1,0,XSharp.RT
[Xide.Tests Resources]
[Xide.Tests Native Resources]
[Xide.Tests License files]
[Xide.Tests General Options]
Switches=/nowarn:165,9023
ZeroArrays=0
CaseSensitive=0
ImplicitNamespace=0
VO1=0
VO2=1
VO3=0
VO4=1
VO5=0
VO6=0
VO7=1
VO8=0
VO9=0
VO10=0
VO11=0
VO12=1
VO13=0
VO14=0
VO16=0
LateBound=1
Unsafe=1
IgnoreStdDefs=0
Ovf=0
FOvf=0
ResponseOnly=0
[Xide.Tests Configurations]
AppConfig = Debug,11111111-1111-1111-1111-111111111111
Switches=
SwitchesCF=
CommandLine=
CommandLineCF=
Debug=1
DebugInit=1
DefineDebug=1
DefineTrace=0
SyntaxOnly=0
WarningsErrors=0
ForceConsole=0
ForceX86=0
AppConfig = Release,22222222-2222-2222-2222-222222222222
Switches=
SwitchesCF=
CommandLine=
CommandLineCF=
Debug=0
DebugInit=0
DefineDebug=0
DefineTrace=0
SyntaxOnly=0
WarningsErrors=0
ForceConsole=0
ForceX86=0
ENDApplication = Xide.Tests
; ************** APPLICATION Xide.Unit *************
Application = Xide.Unit
IDEVersion = 1.15a
GalleryName =
GalleryPage =
GalleryDefaultName =
Target = 2
Platform = AnyCPU
Language = XSharp
Runtime = CLR4
Dialect = Vulcan
Folder = %ProjectPath%\Runtime\XideTests\Xide.Unit\
PrgSubFolder =
ResourcesSubFolder =
Description =
NameSpace =
Assembly = Xide.Unit
Extension =
ApplicationIcon =
OutputFolder =
Frameworks = 1
GUID = 0D5205A3-6D8B-4632-BC88-DA84484B1FFA
IncludeInProjectBuild = 1
IncludeInProjectSearch = 1
IncludeInProjectExport = 1
IncludePath =
SignAssembly = 0
KeyFile =
[ExportOptions]
ExportResources = 0
ExportImages = 0
[Xide.Unit FileGroups]
[Xide.Unit Files]
File = %AppPath%\XideUnitTest.prg
FileGUID = 8349A106-7A79-4C87-BE64-F5D31DE80A51
FileType = Code
File = %AppPath%\XideUnitForm.prg
FileGUID = 5DB81A4D-E99D-498E-AC60-8B7B3AD833F2
FileType = Code
DesignerFileGUID = 5A03CE1F-13B1-4EAB-A958-E9298A32BD4E
[Xide.Unit References]
ReferenceProject = 354515DF-76E6-4CF9-B203-F8F632ACC2DC,1,0,XSharp.Core
ReferenceGAC = CLR4,System,1,0,4.0.0.0
ReferenceGAC = CLR4,System.Drawing,1,0,4.0.0.0
ReferenceGAC = CLR4,System.Windows.Forms,1,0,4.0.0.0
ReferenceGAC = CLR4,System.Core,1,0,4.0.0.0
ReferenceProject = F345BAB5-72C2-4BCF-8685-78C901E0382B,1,0,XSharp.RT
ReferenceProject = 9586F09D-06AC-4E3A-AFE2-5F91602645A3,1,0,XSharp.VO
[Xide.Unit Resources]
[Xide.Unit Native Resources]
[Xide.Unit License files]
[Xide.Unit General Options]
Switches=
ZeroArrays=0
CaseSensitive=0
ImplicitNamespace=0
VO1=0
VO2=0
VO3=0
VO4=0
VO5=0
VO6=0
VO7=0
VO8=0
VO9=0
VO10=0
VO11=0
VO12=0
VO13=0
VO14=0
VO16=0
LateBound=0
Unsafe=0
IgnoreStdDefs=0
Ovf=0
FOvf=0
ResponseOnly=0
[Xide.Unit Configurations]
AppConfig = Debug,11111111-1111-1111-1111-111111111111
Switches=
SwitchesCF=
CommandLine=
CommandLineCF=
Debug=1
DebugInit=1
DefineDebug=1
DefineTrace=0
SyntaxOnly=0
WarningsErrors=0
ForceConsole=0
ForceX86=0
AppConfig = Release,22222222-2222-2222-2222-222222222222
Switches=
SwitchesCF=
CommandLine=
CommandLineCF=
Debug=0
DebugInit=0
DefineDebug=0
DefineTrace=0
SyntaxOnly=0
WarningsErrors=0
ForceConsole=0
ForceX86=0
ENDApplication = Xide.Unit
; ************** APPLICATION XSharp.Core.Tests *************
Application = XSharp.Core.Tests
IDEVersion = 1.15a
GalleryName =
GalleryPage =
GalleryDefaultName =
Target = 2
Platform = AnyCPU
Language = XSharp
Runtime = CLR4
Dialect = Core
Folder = %ProjectPath%\Runtime\XSharp.Core.Tests\
PrgSubFolder =
ResourcesSubFolder =
Description =
NameSpace =
Assembly =
Extension =
ApplicationIcon =
OutputFolder =
Frameworks = 1
GUID = B2E60778-A070-4166-944F-90D03AD16052
IncludeInProjectBuild = 1
IncludeInProjectSearch = 1
IncludeInProjectExport = 1
IncludePath =
SignAssembly = 0
KeyFile =
[ExportOptions]
ExportResources = 0
ExportImages = 0
[XSharp.Core.Tests FileGroups]
[XSharp.Core.Tests Files]
File = %AppPath%\ByteTests.prg
FileGUID = B396E21E-1B84-4DBE-9FF4-439C0EEA97BE
FileType = Code
File = %AppPath%\ConversionTests.prg
FileGUID = 0709B44A-2794-4367-AC1C-1CCB917873D3
FileType = Code
File = %AppPath%\DynamicTest.prg
FileGUID = 996BDC73-F707-46EC-AE49-5E4F3ED0367D
FileType = Code
File = %AppPath%\FileIOTestsprg.prg
FileGUID = 75E61873-3365-4C23-9BBB-8CBEEAADE5F1
FileType = Code
File = %AppPath%\FileSearchTest.prg
FileGUID = 4A7C23C6-BFDB-4F31-8F19-039BF232B097
FileType = Code
File = %AppPath%\IOTests.prg
FileGUID = 13D0E744-4CBF-4971-9005-49A865EBACF4
FileType = Code
File = %AppPath%\MiscTests.prg
FileGUID = F410432D-ED12-4A6C-9107-13D7AD7647E0
FileType = Code
File = %AppPath%\NumericTest.prg
FileGUID = 20F09A38-44C3-400B-A8CE-DB84188A721C
FileType = Code
File = %AppPath%\OSTests.prg
FileGUID = F82F892F-724F-4A2C-AF3E-6C3BC32447FB
FileType = Code
File = %AppPath%\StringTests.prg
FileGUID = 8E89D59F-BF0C-4769-ADF0-1405ACEB3D32
FileType = Code
File = %AppPath%\TimeTest.prg
FileGUID = D07F56C7-0B1F-4D96-A112-FED4302C0D80
FileType = Code
[XSharp.Core.Tests References]
ReferenceGAC = CLR4,System,1,0,4.0.0.0
ReferenceGAC = CLR4,System.Core,1,0,4.0.0.0
ReferenceProject = 354515DF-76E6-4CF9-B203-F8F632ACC2DC,1,0,XSharp.Core
ReferenceProject = 9586F09D-06AC-4E3A-AFE2-5F91602645A3,1,0,XSharp.VO
ReferenceProject = 0D5205A3-6D8B-4632-BC88-DA84484B1FFA,1,0,Xide.Unit
ReferenceProject = F345BAB5-72C2-4BCF-8685-78C901E0382B,1,0,XSharp.RT
[XSharp.Core.Tests Resources]
[XSharp.Core.Tests Native Resources]
[XSharp.Core.Tests License files]
[XSharp.Core.Tests General Options]
Switches=/nowarn:165
ZeroArrays=0
CaseSensitive=0
ImplicitNamespace=0
VO1=0
VO2=0
VO3=0
VO4=0
VO5=0
VO6=0
VO7=0
VO8=0
VO9=0
VO10=0
VO11=0
VO12=0
VO13=0
VO14=0
VO16=0
LateBound=0
Unsafe=1
IgnoreStdDefs=0
Ovf=0
FOvf=0
ResponseOnly=0
[XSharp.Core.Tests Configurations]
AppConfig = Debug,11111111-1111-1111-1111-111111111111
Switches=
SwitchesCF=
CommandLine=
CommandLineCF=
Debug=1
DebugInit=1
DefineDebug=1
DefineTrace=0
SyntaxOnly=0
WarningsErrors=0
ForceConsole=0
ForceX86=0
AppConfig = Release,22222222-2222-2222-2222-222222222222
Switches=
SwitchesCF=
CommandLine=
CommandLineCF=
Debug=0
DebugInit=0
DefineDebug=0
DefineTrace=0
SyntaxOnly=0
WarningsErrors=0
ForceConsole=0
ForceX86=0
ENDApplication = XSharp.Core.Tests
; ************** APPLICATION XSharp.VO.Tests *************
Application = XSharp.VO.Tests
IDEVersion = 1.15a
GalleryName =
GalleryPage =
GalleryDefaultName =
Target = 2
Platform = AnyCPU
Language = XSharp
Runtime = CLR4
Dialect = Vulcan
Folder = %ProjectPath%\Runtime\XSharp.VO.Tests\
PrgSubFolder =
ResourcesSubFolder =
Description =
NameSpace =
Assembly =
Extension =
ApplicationIcon =
OutputFolder =
Frameworks = 1
GUID = C6945D33-33B3-4BA2-A6C3-2FE79B22BEEE
IncludeInProjectBuild = 1
IncludeInProjectSearch = 1
IncludeInProjectExport = 1
IncludePath =
SignAssembly = 0
KeyFile =
[ExportOptions]
ExportResources = 0
ExportImages = 0
[XSharp.VO.Tests FileGroups]
[XSharp.VO.Tests Files]
File = %AppPath%\ArrayTests.prg
FileGUID = 2CDEE4EA-EB63-48F3-AE3F-D970FC8E2708
FileType = Code
File = %AppPath%\ClipperCallingTests.prg
FileGUID = FA2BD51A-37B4-4122-A2E7-CCA3660BA1A0
FileType = Code
File = %AppPath%\CodeBlockTest.prg
FileGUID = 4A2A7BD8-70D8-4AAE-8E1A-6306E8710BC4
FileType = Code
File = %AppPath%\ConversionTests.prg
FileGUID = 06670752-5420-461D-A125-EE4CE31261D9
FileType = Code
File = %AppPath%\DateTests.prg
FileGUID = C653029F-71CD-4D3A-A4DA-7A5B69DF72A0
FileType = Code
File = %AppPath%\ErrorTests.prg
FileGUID = 2DB190BB-4952-4D22-9B1C-0B68B425127A
FileType = Code
File = %AppPath%\FloatTests.prg
FileGUID = A10103F8-A3E5-4BAE-BA95-C9060B36C6A3
FileType = Code
File = %AppPath%\MemoryTests.prg
FileGUID = 3385006B-71EA-4837-A201-B14CFA34A526
FileType = Code
File = %AppPath%\OemTests.prg
FileGUID = 670A0AED-3B8A-4794-98C5-83A01B0907F8
FileType = Code
File = %AppPath%\PszTests.prg
FileGUID = 6C05850E-EE00-4D42-9818-770A9B2D6825
FileType = Code
File = %AppPath%\SymbolTests.prg
FileGUID = 04C89BDC-6A43-44C3-B702-0FFFF855221D
FileType = Code
File = %AppPath%\TransformTests.prg
FileGUID = 8C3C674F-5CA1-40C2-AA39-0186293584A9
FileType = Code
File = %AppPath%\UsualTests.prg
FileGUID = 197DBD0D-7FD6-497A-8752-80F4379C5A73
FileType = Code
File = %AppPath%\WinBoolTest.prg
FileGUID = D1466CBE-C746-40D5-8327-3DAA6B0EA60D
FileType = Code
File = %AppPath%\RegistryChecks.prg
FileGUID = A4D5018D-E76C-48DB-887B-50D7FDAF1500
FileType = Code