-
Notifications
You must be signed in to change notification settings - Fork 4
/
UpgradeLog.XML
1810 lines (1810 loc) · 1.32 MB
/
UpgradeLog.XML
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
<?xml version="1.0" encoding="UTF-16"?><?xml-stylesheet type='text/xsl' href='_UpgradeReport_Files/UpgradeReport.xslt'?><UpgradeReport>
<Properties><Property Name="Solution" Value="Freefalcon">
</Property><Property Name="Solution File" Value="C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Freefalcon.sln">
</Property><Property Name="User Options File" Value="C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Freefalcon.v11.suo">
</Property><Property Name="Date" Value="Thursday, February 14, 2013">
</Property><Property Name="Time" Value="14:58 PM">
</Property></Properties><Event ErrorLevel="3" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Comms" Source="Comms\Comms.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Freefalcon" Source="Falcon4.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Movie" Source="Movie\Movie.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="SimInput" Source="Sim\SimInput\SimInput.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="SimLib" Source="Sim\SimLib\SimLib.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="SimLoop" Source="Sim\SimLoop\SimLoop.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Terrain" Source="Graphics\Terrain\Terrain.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Texture" Source="Graphics\Texture\Texture.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Tools" Source="Tools\Tools.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="UI" Source="UI\UI.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="UI95_ext" Source="UI95_ext\UI95_ext.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="UICampaign" Source="UI\Src\Campaign\Campaign.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="UICommon" Source="UI\Src\Common\Common.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="UIDogfight" Source="UI\src\Dogfight\UIDogfight.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="UIGeneral" Source="UI\Src\General\UIGeneral.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="UIInstant" Source="UI\Src\Instant\UIInstant.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="UILogbook" Source="UI\Src\Logbook\UILogbook.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="UISetup" Source="UI\Src\Setup\UISetup.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="UITaceng" Source="UI\Src\Taceng\UITaceng.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="UITacref" Source="UI\Src\Tacref\UITacref.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Utils" Source="Graphics\Utils\Utils.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Visual" Source="Sim\Visual\Visual.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Vu2" Source="Vu2\Vu2.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Weather" Source="Graphics\Weather\Weather.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="crashhandler" Source="crashhandler\crashhandler.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="ui95" Source="ui95\ui95.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="UIComms" Source="UI\SRC\comms\UIComms.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="F4Compress" Source="F4Compress\F4Compress.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="nvdxt" Source="Graphics\nvdxt\nvdxt.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="3DLib" Source="Graphics\3Dlib\3DLib.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Acmi" Source="ACMI\Acmi.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Aircraft" Source="SIM\Aircraft\Aircraft.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="Airframe" Source="SIM\Airframe\Airframe.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="DXEngine" Source="Graphics\DXEngine\DXEngine.vcproj" Description="OneWayUpgrade">
</Event><Event ErrorLevel="3" Project="" Source="Freefalcon.sln" Description="SafeUpgrade">
</Event><Event ErrorLevel="1" Project="" Source="Freefalcon.sln" Description="Visual Studio needs to make non-functional changes to this project in order to enable the project to open in this version and Visual Studio 2010 SP1 without impacting project behavior.">
</Event><Event ErrorLevel="0" Project="" Source="Freefalcon.sln" Description="File successfully backed up as C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Backup\Freefalcon.sln">
</Event><Event ErrorLevel="0" Project="" Source="Freefalcon.v11.suo" Description="File successfully backed up as C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Backup\Freefalcon.v11.suo">
</Event><Event ErrorLevel="0" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\BSPLib\BSPLib.vcproj'.">
</Event><Event ErrorLevel="0" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 3 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\BSPlib\.\..\..\build/debug_win32\Graphics\BSPLib\BSPLib.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Graphics\BSPLib\BSPLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Graphics\BSPLib\BSPLib.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\BSPlib\.\..\..\build/debug_win32\Graphics\BSPLib\BSPLib.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Graphics\BSPLib\BSPLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Graphics\BSPLib\BSPLib.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\BSPlib\.\..\..\build\release_win32\Graphics\BSPLib\BSPLib.lib') does not match the Librarian's OutputFile property value '.\..\..\build\release_win32\Graphics\BSPLib\BSPLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Graphics\BSPLib\BSPLib.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\BSPlib\.\..\..\build\release_win32\Graphics\BSPLib\BSPLib.lib') does not match the Linker's OutputFile property value '.\..\..\build\release_win32\Graphics\BSPLib\BSPLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Graphics\BSPLib\BSPLib.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\BSPlib\Remote\BSPLib.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Graphics\BSPLib\BSPLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Graphics\BSPLib\BSPLib.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\BSPlib\Remote\BSPLib.lib') does not match the Linker's OutputFile property value 'Remote\BSPLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\BSPLib.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\BSPLib\BSPLib.vcxproj'.">
</Event><Event ErrorLevel="3" Project="BSPLib" Source="Graphics\BSPLib\BSPLib.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Bomb\Bomb.vcproj'.">
</Event><Event ErrorLevel="0" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 3 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\BOMB\.\..\..\build/debug_win32\Sim\Bomb\Bomb.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Bomb\Bomb.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Bomb\Bomb.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\BOMB\.\..\..\build/debug_win32\Sim\Bomb\Bomb.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Bomb\Bomb.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Bomb\Bomb.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\BOMB\.\..\..\build\release_win32\Sim\Bomb\Bomb.lib') does not match the Librarian's OutputFile property value '.\..\..\build\release_win32\Sim\Bomb\Bomb.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Sim\Bomb\Bomb.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\BOMB\.\..\..\build\release_win32\Sim\Bomb\Bomb.lib') does not match the Linker's OutputFile property value '.\..\..\build\release_win32\Sim\Bomb\Bomb.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Sim\Bomb\Bomb.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\BOMB\Remote\Bomb.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Bomb\Bomb.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Bomb\Bomb.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\BOMB\Remote\Bomb.lib') does not match the Linker's OutputFile property value 'Remote\Bomb.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Bomb.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Bomb\Bomb.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Bomb" Source="Sim\Bomb\Bomb.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Campaign\CampLib\CampLib.vcproj'.">
</Event><Event ErrorLevel="0" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 3 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPLIB\.\..\..\build\release_win32\Campaign\CampLib\CampLib.lib') does not match the Librarian's OutputFile property value '.\..\..\build\release_win32\Campaign\CampLib\CampLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Campaign\CampLib\CampLib.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPLIB\.\..\..\build\release_win32\Campaign\CampLib\CampLib.lib') does not match the Linker's OutputFile property value '.\..\..\build\release_win32\Campaign\CampLib\CampLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Campaign\CampLib\CampLib.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPLIB\.\..\..\build/debug_win32\Campaign\CampLib\CampLib.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Campaign\CampLib\CampLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Campaign\CampLib\CampLib.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPLIB\.\..\..\build/debug_win32\Campaign\CampLib\CampLib.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Campaign\CampLib\CampLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Campaign\CampLib\CampLib.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPLIB\Remote\CampLib.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Campaign\CampLib\CampLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Campaign\CampLib\CampLib.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPLIB\Remote\CampLib.lib') does not match the Linker's OutputFile property value 'Remote\CampLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\CampLib.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Campaign\CampLib\CampLib.vcxproj'.">
</Event><Event ErrorLevel="3" Project="CampLib" Source="Campaign\CampLib\CampLib.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Campaign\CampTask\CampTask.vcproj'.">
</Event><Event ErrorLevel="0" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 3 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPTASK\.\..\..\build\release_win32\Campaign\CampTask\CampTask.lib') does not match the Librarian's OutputFile property value '.\..\..\build\release_win32\Campaign\CampTask\CampTask.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Campaign\CampTask\CampTask.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPTASK\.\..\..\build\release_win32\Campaign\CampTask\CampTask.lib') does not match the Linker's OutputFile property value '.\..\..\build\release_win32\Campaign\CampTask\CampTask.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Campaign\CampTask\CampTask.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPTASK\.\..\..\build/debug_win32\Campaign\CampTask\CampTask.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Campaign\CampTask\CampTask.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Campaign\CampTask\CampTask.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPTASK\.\..\..\build/debug_win32\Campaign\CampTask\CampTask.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Campaign\CampTask\CampTask.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Campaign\CampTask\CampTask.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPTASK\Remote\CampTask.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Campaign\CampTask\CampTask.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Campaign\CampTask\CampTask.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPTASK\Remote\CampTask.lib') does not match the Linker's OutputFile property value 'Remote\CampTask.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\CampTask.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Campaign\CampTask\CampTask.vcxproj'.">
</Event><Event ErrorLevel="3" Project="CampTask" Source="Campaign\CampTask\CampTask.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Campaign\CampTool\CampTool.vcproj'.">
</Event><Event ErrorLevel="0" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 3 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPTOOL\.\..\..\build\release_win32\Campaign\CampTool\CampTool.lib') does not match the Librarian's OutputFile property value '.\..\..\build\release_win32\Campaign\CampTool\CampTool.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Campaign\CampTool\CampTool.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPTOOL\.\..\..\build\release_win32\Campaign\CampTool\CampTool.lib') does not match the Linker's OutputFile property value '.\..\..\build\release_win32\Campaign\CampTool\CampTool.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Campaign\CampTool\CampTool.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPTOOL\.\..\..\build/debug_win32\Campaign\CampTool\CampTool.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Campaign\CampTool\CampTool.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Campaign\CampTool\CampTool.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPTOOL\.\..\..\build/debug_win32\Campaign\CampTool\CampTool.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Campaign\CampTool\CampTool.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Campaign\CampTool\CampTool.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPTOOL\Remote\CampTool.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Campaign\CampTool\CampTool.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Campaign\CampTool\CampTool.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPTOOL\Remote\CampTool.lib') does not match the Linker's OutputFile property value 'Remote\CampTool.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\CampTool.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Campaign\CampTool\CampTool.vcxproj'.">
</Event><Event ErrorLevel="3" Project="CampTool" Source="Campaign\CampTool\CampTool.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Campaign\CampUI\CampUI.vcproj'.">
</Event><Event ErrorLevel="0" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 3 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPUI\.\..\..\build/debug_win32\Campaign\CampUI\CampUI.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Campaign\CampUI\CampUI.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Campaign\CampUI\CampUI.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPUI\.\..\..\build/debug_win32\Campaign\CampUI\CampUI.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Campaign\CampUI\CampUI.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Campaign\CampUI\CampUI.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPUI\.\..\..\build\release_win32\Campaign\CampUI\CampUI.lib') does not match the Librarian's OutputFile property value '.\..\..\build\release_win32\Campaign\CampUI\CampUI.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Campaign\CampUI\CampUI.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPUI\.\..\..\build\release_win32\Campaign\CampUI\CampUI.lib') does not match the Linker's OutputFile property value '.\..\..\build\release_win32\Campaign\CampUI\CampUI.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Campaign\CampUI\CampUI.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPUI\Remote\CampUI.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Campaign\CampUI\CampUI.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Campaign\CampUI\CampUI.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPUI\Remote\CampUI.lib') does not match the Linker's OutputFile property value 'Remote\CampUI.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\CampUI.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Campaign\CampUI\CampUI.vcxproj'.">
</Event><Event ErrorLevel="3" Project="CampUI" Source="Campaign\CampUI\CampUI.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Campaign\CampUpd\CampUpd.vcproj'.">
</Event><Event ErrorLevel="0" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 3 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPUPD\.\..\..\build\release_win32\Campaign\CampUpd\CampUpd.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Campaign\CampUpd\CampUpd.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Campaign\CampUpd\CampUpd.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPUPD\.\..\..\build\release_win32\Campaign\CampUpd\CampUpd.lib') does not match the Linker's OutputFile property value '.\..\..\build\release_win32\Campaign\CampUpd\CampUpd.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build\release_win32\Campaign\CampUpd\CampUpd.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPUPD\.\..\..\build/debug_win32\Campaign\CampUpd\CampUpd.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Campaign\CampUpd\CampUpd.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Campaign\CampUpd\CampUpd.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPUPD\.\..\..\build/debug_win32\Campaign\CampUpd\CampUpd.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Campaign\CampUpd\CampUpd.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Campaign\CampUpd\CampUpd.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPUPD\Remote\CampUpd.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Campaign\CampUpd\CampUpd.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Campaign\CampUpd\CampUpd.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\CAMPAIGN\CAMPUPD\Remote\CampUpd.lib') does not match the Linker's OutputFile property value 'Remote\CampUpd.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\CampUpd.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Campaign\CampUpd\CampUpd.vcxproj'.">
</Event><Event ErrorLevel="3" Project="CampUpd" Source="Campaign\CampUpd\CampUpd.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Cockpit\Cockpit.vcproj'.">
</Event><Event ErrorLevel="0" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Cockpit\.\..\..\build/debug_win32\Sim\Cockpit\Cockpit.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Cockpit\Cockpit.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Cockpit\Cockpit.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Cockpit\.\..\..\build/debug_win32\Sim\Cockpit\Cockpit.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Cockpit\Cockpit.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Cockpit\Cockpit.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Cockpit\.\..\..\build/release_win32\Sim\Cockpit\Cockpit.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Cockpit\Cockpit.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Cockpit\Cockpit.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Cockpit\.\..\..\build/release_win32\Sim\Cockpit\Cockpit.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Cockpit\Cockpit.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Cockpit\Cockpit.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Cockpit\Remote\Cockpit.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Cockpit\Cockpit.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Cockpit\Cockpit.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Cockpit\Remote\Cockpit.lib') does not match the Linker's OutputFile property value 'Remote\Cockpit.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Cockpit.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Cockpit\Cockpit.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Cockpit" Source="Sim\Cockpit\Cockpit.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Comms" Source="Comms\Comms.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Comms\Comms.vcproj'.">
</Event><Event ErrorLevel="0" Project="Comms" Source="Comms\Comms.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Comms" Source="Comms\Comms.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Comms" Source="Comms\Comms.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\comms\.\..\build/release_win32\Comms\Comms.lib') does not match the Librarian's OutputFile property value '.\..\build/release_win32\Comms\Comms.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/release_win32\Comms\Comms.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\comms\.\..\build/release_win32\Comms\Comms.lib') does not match the Linker's OutputFile property value '.\..\build/release_win32\Comms\Comms.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/release_win32\Comms\Comms.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\comms\.\..\build/debug_win32\Comms\Comms.lib') does not match the Librarian's OutputFile property value '.\..\build/debug_win32\Comms\Comms.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/debug_win32\Comms\Comms.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\comms\.\..\build/debug_win32\Comms\Comms.lib') does not match the Linker's OutputFile property value '.\..\build/debug_win32\Comms\Comms.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/debug_win32\Comms\Comms.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\comms\Remote\Comms.lib') does not match the Librarian's OutputFile property value '.\..\build/release_win32\Comms\Comms.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/release_win32\Comms\Comms.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Comms" Source="Comms\Comms.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\comms\Remote\Comms.lib') does not match the Linker's OutputFile property value 'Remote\Comms.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Comms.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Comms" Source="Comms\Comms.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Comms\Comms.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Comms" Source="Comms\Comms.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\DDStuff\DDStuff.vcproj'.">
</Event><Event ErrorLevel="0" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\DDstuff\.\..\..\build/release_win32\Graphics\DDStuff\DDStuff.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Graphics\DDStuff\DDStuff.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Graphics\DDStuff\DDStuff.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\DDstuff\.\..\..\build/release_win32\Graphics\DDStuff\DDStuff.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Graphics\DDStuff\DDStuff.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Graphics\DDStuff\DDStuff.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\DDstuff\.\..\..\build/debug_win32\Graphics\DDStuff\DDStuff.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Graphics\DDStuff\DDStuff.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Graphics\DDStuff\DDStuff.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\DDstuff\.\..\..\build/debug_win32\Graphics\DDStuff\DDStuff.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Graphics\DDStuff\DDStuff.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Graphics\DDStuff\DDStuff.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\DDstuff\Remote\DDStuff.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Graphics\DDStuff\DDStuff.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Graphics\DDStuff\DDStuff.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\DDstuff\Remote\DDStuff.lib') does not match the Linker's OutputFile property value 'Remote\DDStuff.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\DDStuff.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\DDStuff\DDStuff.vcxproj'.">
</Event><Event ErrorLevel="3" Project="DDStuff" Source="Graphics\DDStuff\DDStuff.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Digi\Digi.vcproj'.">
</Event><Event ErrorLevel="0" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\DIGI\.\..\..\build/debug_win32\Sim\Digi\Digi.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Digi\Digi.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Digi\Digi.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\DIGI\.\..\..\build/debug_win32\Sim\Digi\Digi.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Digi\Digi.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Digi\Digi.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\DIGI\.\..\..\build/release_win32\Sim\Digi\Digi.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Digi\Digi.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Digi\Digi.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\DIGI\.\..\..\build/release_win32\Sim\Digi\Digi.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Digi\Digi.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Digi\Digi.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\DIGI\Remote\Digi.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Digi\Digi.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Digi\Digi.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\DIGI\Remote\Digi.lib') does not match the Linker's OutputFile property value 'Remote\Digi.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Digi.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Digi\Digi.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Digi" Source="Sim\Digi\Digi.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Displays\Displays.vcproj'.">
</Event><Event ErrorLevel="0" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\DISPLAYS\.\..\..\build/debug_win32\Sim\Displays\Displays.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Displays\Displays.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Displays\Displays.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\DISPLAYS\.\..\..\build/debug_win32\Sim\Displays\Displays.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Displays\Displays.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Displays\Displays.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\DISPLAYS\.\..\..\build/release_win32\Sim\Displays\Displays.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Displays\Displays.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Displays\Displays.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\DISPLAYS\.\..\..\build/release_win32\Sim\Displays\Displays.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Displays\Displays.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Displays\Displays.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\DISPLAYS\Remote\Displays.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Displays\Displays.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Displays\Displays.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\DISPLAYS\Remote\Displays.lib') does not match the Linker's OutputFile property value 'Remote\Displays.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Displays.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Displays\Displays.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Displays" Source="Sim\Displays\Displays.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Eject\Eject.vcproj'.">
</Event><Event ErrorLevel="0" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\eject\.\..\..\build/debug_win32\Sim\Eject\Eject.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Eject\Eject.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Eject\Eject.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\eject\.\..\..\build/debug_win32\Sim\Eject\Eject.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Eject\Eject.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Eject\Eject.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\eject\.\..\..\build/release_win32\Sim\Eject\Eject.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Eject\Eject.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Eject\Eject.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\eject\.\..\..\build/release_win32\Sim\Eject\Eject.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Eject\Eject.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Eject\Eject.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\eject\Remote\Eject.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Eject\Eject.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Eject\Eject.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\eject\Remote\Eject.lib') does not match the Linker's OutputFile property value 'Remote\Eject.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Eject.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Eject\Eject.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Eject" Source="Sim\Eject\Eject.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\FCC\FCC.vcproj'.">
</Event><Event ErrorLevel="0" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FCC\.\..\..\build/release_win32\Sim\FCC\FCC.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\FCC\FCC.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\FCC\FCC.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FCC\.\..\..\build/release_win32\Sim\FCC\FCC.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\FCC\FCC.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\FCC\FCC.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FCC\.\..\..\build/debug_win32\Sim\FCC\FCC.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\FCC\FCC.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\FCC\FCC.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FCC\.\..\..\build/debug_win32\Sim\FCC\FCC.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\FCC\FCC.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\FCC\FCC.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FCC\Remote\FCC.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\FCC\FCC.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\FCC\FCC.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FCC\Remote\FCC.lib') does not match the Linker's OutputFile property value 'Remote\FCC.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\FCC.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\FCC\FCC.vcxproj'.">
</Event><Event ErrorLevel="3" Project="FCC" Source="Sim\FCC\FCC.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FalcLib\FalcLib.vcproj'.">
</Event><Event ErrorLevel="0" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FALCLIB\.\..\build/debug_win32\Falclib\FalcLib.lib') does not match the Librarian's OutputFile property value '.\..\build/debug_win32\Falclib\FalcLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/debug_win32\Falclib\FalcLib.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FALCLIB\.\..\build/debug_win32\Falclib\FalcLib.lib') does not match the Linker's OutputFile property value '.\..\build/debug_win32\Falclib\FalcLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/debug_win32\Falclib\FalcLib.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FALCLIB\.\..\build/release_win32\Falclib\FalcLib.lib') does not match the Librarian's OutputFile property value '.\..\build/release_win32\Falclib\FalcLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/release_win32\Falclib\FalcLib.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FALCLIB\.\..\build/release_win32\Falclib\FalcLib.lib') does not match the Linker's OutputFile property value '.\..\build/release_win32\Falclib\FalcLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/release_win32\Falclib\FalcLib.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FALCLIB\Remote\FalcLib.lib') does not match the Librarian's OutputFile property value '.\..\build/release_win32\Falclib\FalcLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/release_win32\Falclib\FalcLib.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FALCLIB\Remote\FalcLib.lib') does not match the Linker's OutputFile property value 'Remote\FalcLib.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\FalcLib.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FalcLib\FalcLib.vcxproj'.">
</Event><Event ErrorLevel="3" Project="FalcLib" Source="FalcLib\FalcLib.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FalcSnd\FalcSnd.vcproj'.">
</Event><Event ErrorLevel="0" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FalcSnd\.\..\build/debug_win32\FalcSnd\FalcSnd.lib') does not match the Librarian's OutputFile property value '.\..\build/debug_win32\FalcSnd\FalcSnd.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/debug_win32\FalcSnd\FalcSnd.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FalcSnd\.\..\build/debug_win32\FalcSnd\FalcSnd.lib') does not match the Linker's OutputFile property value '.\..\build/debug_win32\FalcSnd\FalcSnd.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/debug_win32\FalcSnd\FalcSnd.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FalcSnd\.\..\build/release_win32\FalcSnd\FalcSnd.lib') does not match the Librarian's OutputFile property value '.\..\build/release_win32\FalcSnd\FalcSnd.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/release_win32\FalcSnd\FalcSnd.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FalcSnd\.\..\build/release_win32\FalcSnd\FalcSnd.lib') does not match the Linker's OutputFile property value '.\..\build/release_win32\FalcSnd\FalcSnd.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/release_win32\FalcSnd\FalcSnd.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FalcSnd\Remote\FalcSnd.lib') does not match the Librarian's OutputFile property value '.\..\build/release_win32\FalcSnd\FalcSnd.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/release_win32\FalcSnd\FalcSnd.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FalcSnd\Remote\FalcSnd.lib') does not match the Linker's OutputFile property value 'Remote\FalcSnd.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\FalcSnd.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\FalcSnd\FalcSnd.vcxproj'.">
</Event><Event ErrorLevel="3" Project="FalcSnd" Source="FalcSnd\FalcSnd.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Falcon4" Source="Falcon4.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Falcon4.vcproj'.">
</Event><Event ErrorLevel="0" Project="Falcon4" Source="Falcon4.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Falcon4" Source="Falcon4.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 3 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="Attribute 'OptimizeForWindows98' of 'VCLinkerTool' is not supported in this version and has been removed during conversion.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="0" Project="Falcon4" Source="Falcon4.vcproj" Description="Web deployment to the local IIS server is no longer supported. The Web Deployment build tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 3 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Falcon4" Source="Falcon4.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="All user macros reported below for configuration 'Release|Win32' are used before their definition, which can cause undesirable build results; this is not supported in this release. You can resolve this by changing the inclusion order of the consuming property sheets and making sure they come after the property sheets defining the user macros.">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="MSB4211: C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets (34,5); The property "TargetPath" is being set to a value for the first time, but it was already consumed at "C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Falcon4.vcxproj".">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\.\build/debug_win32\Freefalcon.exe') does not match the Linker's OutputFile property value './build/debug_win32/Freefalcon.exe' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\./build/debug_win32/Freefalcon.exe') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="MSB8012: $(TargetName) ('Freefalcon') does not match the Linker's OutputFile property value 'Remote\RedViper.exe' ('RedViper') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetName) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Falcon4" Source="Falcon4.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Freefalcon.exe') does not match the Linker's OutputFile property value 'Remote\RedViper.exe' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\RedViper.exe') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Falcon4" Source="Falcon4.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Falcon4.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Falcon4" Source="Falcon4.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Faults\Faults.vcproj'.">
</Event><Event ErrorLevel="0" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FAULTS\.\..\..\build/release_win32\Sim\Faults\Faults.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Faults\Faults.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Faults\Faults.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FAULTS\.\..\..\build/release_win32\Sim\Faults\Faults.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Faults\Faults.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Faults\Faults.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FAULTS\.\..\..\build/debug_win32\Sim\Faults\Faults.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Faults\Faults.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Faults\Faults.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FAULTS\.\..\..\build/debug_win32\Sim\Faults\Faults.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Faults\Faults.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Faults\Faults.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FAULTS\Remote\Faults.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Faults\Faults.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Faults\Faults.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FAULTS\Remote\Faults.lib') does not match the Linker's OutputFile property value 'Remote\Faults.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Faults.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Faults\Faults.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Faults" Source="Sim\Faults\Faults.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Feature\Feature.vcproj'.">
</Event><Event ErrorLevel="0" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FEATURE\.\..\..\build/debug_win32\Sim\Feature\Feature.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Feature\Feature.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Feature\Feature.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FEATURE\.\..\..\build/debug_win32\Sim\Feature\Feature.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Feature\Feature.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Feature\Feature.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FEATURE\.\..\..\build/release_win32\Sim\Feature\Feature.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Feature\Feature.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Feature\Feature.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FEATURE\.\..\..\build/release_win32\Sim\Feature\Feature.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Feature\Feature.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Feature\Feature.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FEATURE\Remote\Feature.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Feature\Feature.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Feature\Feature.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\FEATURE\Remote\Feature.lib') does not match the Linker's OutputFile property value 'Remote\Feature.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Feature.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Feature\Feature.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Feature" Source="Sim\Feature\Feature.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Ground\Ground.vcproj'.">
</Event><Event ErrorLevel="0" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\GROUND\.\..\..\build/release_win32\Sim\Ground\Ground.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Ground\Ground.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Ground\Ground.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\GROUND\.\..\..\build/release_win32\Sim\Ground\Ground.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Ground\Ground.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Ground\Ground.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\GROUND\.\..\..\build/debug_win32\Sim\Ground\Ground.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Ground\Ground.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Ground\Ground.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\GROUND\.\..\..\build/debug_win32\Sim\Ground\Ground.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Ground\Ground.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Ground\Ground.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\GROUND\Remote\Ground.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Ground\Ground.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Ground\Ground.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\GROUND\Remote\Ground.lib') does not match the Linker's OutputFile property value 'Remote\Ground.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Ground.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Ground\Ground.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Ground" Source="Sim\Ground\Ground.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Guns\Guns.vcproj'.">
</Event><Event ErrorLevel="0" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\GUNS\.\..\..\build/debug_win32\Sim\Guns\Guns.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Guns\Guns.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Guns\Guns.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\GUNS\.\..\..\build/debug_win32\Sim\Guns\Guns.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Guns\Guns.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Guns\Guns.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\GUNS\.\..\..\build/release_win32\Sim\Guns\Guns.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Guns\Guns.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Guns\Guns.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\GUNS\.\..\..\build/release_win32\Sim\Guns\Guns.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Guns\Guns.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Guns\Guns.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\GUNS\Remote\Guns.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Guns\Guns.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Guns\Guns.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\GUNS\Remote\Guns.lib') does not match the Linker's OutputFile property value 'Remote\Guns.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Guns.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Guns\Guns.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Guns" Source="Sim\Guns\Guns.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\HDigi\HDigi.vcproj'.">
</Event><Event ErrorLevel="0" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\hdigi\.\..\..\build/debug_win32\Sim\HDigi\HDigi.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\HDigi\HDigi.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\HDigi\HDigi.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\hdigi\.\..\..\build/debug_win32\Sim\HDigi\HDigi.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\HDigi\HDigi.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\HDigi\HDigi.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\hdigi\.\..\..\build/release_win32\Sim\HDigi\HDigi.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\HDigi\HDigi.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\HDigi\HDigi.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\hdigi\.\..\..\build/release_win32\Sim\HDigi\HDigi.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\HDigi\HDigi.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\HDigi\HDigi.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\hdigi\Remote\HDigi.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\HDigi\HDigi.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\HDigi\HDigi.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\hdigi\Remote\HDigi.lib') does not match the Linker's OutputFile property value 'Remote\HDigi.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\HDigi.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\HDigi\HDigi.vcxproj'.">
</Event><Event ErrorLevel="3" Project="HDigi" Source="Sim\HDigi\HDigi.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Helo\Helo.vcproj'.">
</Event><Event ErrorLevel="0" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Helo\.\..\..\build/debug_win32\Sim\Helo\Helo.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Helo\Helo.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Helo\Helo.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Helo\.\..\..\build/debug_win32\Sim\Helo\Helo.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Helo\Helo.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Helo\Helo.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Helo\.\..\..\build/release_win32\Sim\Helo\Helo.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Helo\Helo.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Helo\Helo.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Helo\.\..\..\build/release_win32\Sim\Helo\Helo.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Helo\Helo.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Helo\Helo.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Helo\Remote\Helo.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Helo\Helo.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Helo\Helo.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Helo\Remote\Helo.lib') does not match the Linker's OutputFile property value 'Remote\Helo.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Helo.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Helo\Helo.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Helo" Source="Sim\Helo\Helo.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\ICP\ICP.vcproj'.">
</Event><Event ErrorLevel="0" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\ICP\.\..\..\build/debug_win32\Sim\Icp\ICP.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Icp\ICP.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Icp\ICP.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\ICP\.\..\..\build/debug_win32\Sim\Icp\ICP.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Icp\ICP.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Icp\ICP.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\ICP\.\..\..\build/release_win32\Sim\ICP\ICP.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\ICP\ICP.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\ICP\ICP.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\ICP\.\..\..\build/release_win32\Sim\ICP\ICP.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\ICP\ICP.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\ICP\ICP.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\ICP\Remote\ICP.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\ICP\ICP.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\ICP\ICP.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\ICP\Remote\ICP.lib') does not match the Linker's OutputFile property value 'Remote\ICP.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\ICP.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\ICP\ICP.vcxproj'.">
</Event><Event ErrorLevel="3" Project="ICP" Source="Sim\ICP\ICP.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Irst\Irst.vcproj'.">
</Event><Event ErrorLevel="0" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\IRST\.\..\..\build/debug_win32\Sim\Irst\Irst.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Irst\Irst.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Irst\Irst.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\IRST\.\..\..\build/debug_win32\Sim\Irst\Irst.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Irst\Irst.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Irst\Irst.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\IRST\.\..\..\build/release_win32\Sim\Irst\Irst.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Irst\Irst.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Irst\Irst.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\IRST\.\..\..\build/release_win32\Sim\Irst\Irst.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Irst\Irst.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Irst\Irst.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\IRST\Remote\Irst.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Irst\Irst.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Irst\Irst.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\IRST\Remote\Irst.lib') does not match the Linker's OutputFile property value 'Remote\Irst.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Irst.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Irst\Irst.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Irst" Source="Sim\Irst\Irst.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\tools\lists\Lists.vcproj'.">
</Event><Event ErrorLevel="0" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\tools\lists\.\..\..\..\build/debug_win32\Lists\Lists.lib') does not match the Librarian's OutputFile property value '.\..\..\..\build/debug_win32\Lists\Lists.lib' ('C:\Users\Zhitao Li\Documents\build/debug_win32\Lists\Lists.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\tools\lists\.\..\..\..\build/debug_win32\Lists\Lists.lib') does not match the Linker's OutputFile property value '.\..\..\..\build/debug_win32\Lists\Lists.lib' ('C:\Users\Zhitao Li\Documents\build/debug_win32\Lists\Lists.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\tools\lists\.\..\..\..\build/release_win32\Lists\Lists.lib') does not match the Librarian's OutputFile property value '.\..\..\..\build/release_win32\Lists\Lists.lib' ('C:\Users\Zhitao Li\Documents\build/release_win32\Lists\Lists.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\tools\lists\.\..\..\..\build/release_win32\Lists\Lists.lib') does not match the Linker's OutputFile property value '.\..\..\..\build/release_win32\Lists\Lists.lib' ('C:\Users\Zhitao Li\Documents\build/release_win32\Lists\Lists.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\tools\lists\Remote\Lists.lib') does not match the Librarian's OutputFile property value '.\..\..\..\build/release_win32\Lists\Lists.lib' ('C:\Users\Zhitao Li\Documents\build/release_win32\Lists\Lists.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\tools\lists\Remote\Lists.lib') does not match the Linker's OutputFile property value 'Remote\Lists.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Lists.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\tools\lists\Lists.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Lists" Source="codelib\tools\lists\Lists.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Missile\Missile.vcproj'.">
</Event><Event ErrorLevel="0" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\MISSILE\.\..\..\build/debug_win32\Sim\Missile\Missile.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Missile\Missile.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Missile\Missile.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\MISSILE\.\..\..\build/debug_win32\Sim\Missile\Missile.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Missile\Missile.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Missile\Missile.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\MISSILE\.\..\..\build/release_win32\Sim\Missile\Missile.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Missile\Missile.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Missile\Missile.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\MISSILE\.\..\..\build/release_win32\Sim\Missile\Missile.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Missile\Missile.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Missile\Missile.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\MISSILE\Remote\Missile.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Missile\Missile.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Missile\Missile.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\MISSILE\Remote\Missile.lib') does not match the Linker's OutputFile property value 'Remote\Missile.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Missile.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Missile\Missile.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Missile" Source="Sim\Missile\Missile.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Movie" Source="Movie\Movie.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Movie\Movie.vcproj'.">
</Event><Event ErrorLevel="0" Project="Movie" Source="Movie\Movie.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Movie" Source="Movie\Movie.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Movie" Source="Movie\Movie.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\movie\.\..\build/release_win32\Movie\Movie.lib') does not match the Librarian's OutputFile property value '.\..\build/release_win32\Movie\Movie.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/release_win32\Movie\Movie.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\movie\.\..\build/release_win32\Movie\Movie.lib') does not match the Linker's OutputFile property value '.\..\build/release_win32\Movie\Movie.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/release_win32\Movie\Movie.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\movie\.\..\build/debug_win32\Movie\Movie.lib') does not match the Librarian's OutputFile property value '.\..\build/debug_win32\Movie\Movie.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/debug_win32\Movie\Movie.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\movie\.\..\build/debug_win32\Movie\Movie.lib') does not match the Linker's OutputFile property value '.\..\build/debug_win32\Movie\Movie.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/debug_win32\Movie\Movie.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\movie\Remote\Movie.lib') does not match the Librarian's OutputFile property value '.\..\build/release_win32\Movie\Movie.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\build/release_win32\Movie\Movie.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Movie" Source="Movie\Movie.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\movie\Remote\Movie.lib') does not match the Linker's OutputFile property value 'Remote\Movie.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Movie.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Movie" Source="Movie\Movie.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Movie\Movie.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Movie" Source="Movie\Movie.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Navaids\Navaids.vcproj'.">
</Event><Event ErrorLevel="0" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Navaids\.\..\..\build/debug_win32\Sim\Navaids\Navaids.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Navaids\Navaids.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Navaids\Navaids.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Navaids\.\..\..\build/debug_win32\Sim\Navaids\Navaids.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Navaids\Navaids.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Navaids\Navaids.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Navaids\.\..\..\build/release_win32\Navaids\Navaids.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Navaids\Navaids.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Navaids\Navaids.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Navaids\.\..\..\build/release_win32\Navaids\Navaids.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Navaids\Navaids.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Navaids\Navaids.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Navaids\Remote\Navaids.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Navaids\Navaids.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Navaids\Navaids.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\Navaids\Remote\Navaids.lib') does not match the Linker's OutputFile property value 'Remote\Navaids.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Navaids.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Navaids\Navaids.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Navaids" Source="Sim\Navaids\Navaids.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\OTWDrive\OTWDrive.vcproj'.">
</Event><Event ErrorLevel="0" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\OTWDRIVE\.\..\..\build/debug_win32\Sim\OTWDrive\OTWDrive.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\OTWDrive\OTWDrive.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\OTWDrive\OTWDrive.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\OTWDRIVE\.\..\..\build/debug_win32\Sim\OTWDrive\OTWDrive.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\OTWDrive\OTWDrive.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\OTWDrive\OTWDrive.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\OTWDRIVE\.\..\..\build/release_win32\Sim\OTWDrive\OTWDrive.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\OTWDrive\OTWDrive.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\OTWDrive\OTWDrive.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\OTWDRIVE\.\..\..\build/release_win32\Sim\OTWDrive\OTWDrive.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\OTWDrive\OTWDrive.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\OTWDrive\OTWDrive.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\OTWDRIVE\Remote\OTWDrive.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\OTWDrive\OTWDrive.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\OTWDrive\OTWDrive.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\OTWDRIVE\Remote\OTWDrive.lib') does not match the Linker's OutputFile property value 'Remote\OTWDrive.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\OTWDrive.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\OTWDrive\OTWDrive.vcxproj'.">
</Event><Event ErrorLevel="3" Project="OTWDrive" Source="Sim\OTWDrive\OTWDrive.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Objects\Objects.vcproj'.">
</Event><Event ErrorLevel="0" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Objects\.\..\..\build/release_win32\Graphics\Objects\Objects.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Graphics\Objects\Objects.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Graphics\Objects\Objects.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Objects\.\..\..\build/release_win32\Graphics\Objects\Objects.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Graphics\Objects\Objects.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Graphics\Objects\Objects.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Objects\.\..\..\build/debug_win32\Graphics\Objects\Objects.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Graphics\Objects\Objects.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Graphics\Objects\Objects.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Objects\.\..\..\build/debug_win32\Graphics\Objects\Objects.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Graphics\Objects\Objects.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Graphics\Objects\Objects.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Objects\Remote\Objects.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Graphics\Objects\Objects.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Graphics\Objects\Objects.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Objects\Remote\Objects.lib') does not match the Linker's OutputFile property value 'Remote\Objects.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Objects.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Objects\Objects.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Objects" Source="Graphics\Objects\Objects.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Radar\Radar.vcproj'.">
</Event><Event ErrorLevel="0" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\RADAR\.\..\..\build/release_win32\Sim\Radar\Radar.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Radar\Radar.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Radar\Radar.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\RADAR\.\..\..\build/release_win32\Sim\Radar\Radar.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Radar\Radar.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Radar\Radar.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\RADAR\.\..\..\build/debug_win32\Sim\Radar\Radar.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Radar\Radar.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Radar\Radar.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\RADAR\.\..\..\build/debug_win32\Sim\Radar\Radar.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Radar\Radar.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Radar\Radar.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\RADAR\Remote\Radar.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Radar\Radar.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Radar\Radar.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\RADAR\Remote\Radar.lib') does not match the Linker's OutputFile property value 'Remote\Radar.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Radar.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Radar\Radar.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Radar" Source="Sim\Radar\Radar.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Renderer\Renderer.vcproj'.">
</Event><Event ErrorLevel="0" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Renderer\.\..\..\build/debug_win32\Graphics\Renderer\Renderer.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Graphics\Renderer\Renderer.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Graphics\Renderer\Renderer.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Renderer\.\..\..\build/debug_win32\Graphics\Renderer\Renderer.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Graphics\Renderer\Renderer.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Graphics\Renderer\Renderer.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Renderer\.\..\..\build/release_win32\Graphics\Renderer\Renderer.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Graphics\Renderer\Renderer.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Graphics\Renderer\Renderer.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Renderer\.\..\..\build/release_win32\Graphics\Renderer\Renderer.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Graphics\Renderer\Renderer.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Graphics\Renderer\Renderer.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Renderer\Remote\Renderer.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Graphics\Renderer\Renderer.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Graphics\Renderer\Renderer.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Renderer\Remote\Renderer.lib') does not match the Linker's OutputFile property value 'Remote\Renderer.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Renderer.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Graphics\Renderer\Renderer.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Renderer" Source="Graphics\Renderer\Renderer.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\resources\reslib\ResMgr.vcproj'.">
</Event><Event ErrorLevel="0" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\resources\reslib\.\..\..\..\build/debug_win32\ResMgr\ResMgr.lib') does not match the Librarian's OutputFile property value '.\..\..\..\build/debug_win32\ResMgr\ResMgr.lib' ('C:\Users\Zhitao Li\Documents\build/debug_win32\ResMgr\ResMgr.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\resources\reslib\.\..\..\..\build/debug_win32\ResMgr\ResMgr.lib') does not match the Linker's OutputFile property value '.\..\..\..\build/debug_win32\ResMgr\ResMgr.lib' ('C:\Users\Zhitao Li\Documents\build/debug_win32\ResMgr\ResMgr.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\resources\reslib\.\..\..\..\build/release_win32\ResMgr\ResMgr.lib') does not match the Librarian's OutputFile property value '.\..\..\..\build/release_win32\ResMgr\ResMgr.lib' ('C:\Users\Zhitao Li\Documents\build/release_win32\ResMgr\ResMgr.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\resources\reslib\.\..\..\..\build/release_win32\ResMgr\ResMgr.lib') does not match the Linker's OutputFile property value '.\..\..\..\build/release_win32\ResMgr\ResMgr.lib' ('C:\Users\Zhitao Li\Documents\build/release_win32\ResMgr\ResMgr.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\resources\reslib\Remote\ResMgr.lib') does not match the Librarian's OutputFile property value '.\..\..\..\build/release_win32\ResMgr\ResMgr.lib' ('C:\Users\Zhitao Li\Documents\build/release_win32\ResMgr\ResMgr.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\resources\reslib\Remote\ResMgr.lib') does not match the Linker's OutputFile property value 'Remote\ResMgr.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\ResMgr.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\codelib\resources\reslib\ResMgr.vcxproj'.">
</Event><Event ErrorLevel="3" Project="ResMgr" Source="codelib\resources\reslib\ResMgr.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Rwr\Rwr.vcproj'.">
</Event><Event ErrorLevel="0" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\RWR\.\..\..\build/release_win32\Sim\Rwr\Rwr.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Rwr\Rwr.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Rwr\Rwr.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\RWR\.\..\..\build/release_win32\Sim\Rwr\Rwr.lib') does not match the Linker's OutputFile property value '.\..\..\build/release_win32\Sim\Rwr\Rwr.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Rwr\Rwr.lib') in project configuration 'Release|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\RWR\.\..\..\build/debug_win32\Sim\Rwr\Rwr.lib') does not match the Librarian's OutputFile property value '.\..\..\build/debug_win32\Sim\Rwr\Rwr.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Rwr\Rwr.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\RWR\.\..\..\build/debug_win32\Sim\Rwr\Rwr.lib') does not match the Linker's OutputFile property value '.\..\..\build/debug_win32\Sim\Rwr\Rwr.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/debug_win32\Sim\Rwr\Rwr.lib') in project configuration 'Debug|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\RWR\Remote\Rwr.lib') does not match the Librarian's OutputFile property value '.\..\..\build/release_win32\Sim\Rwr\Rwr.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\build/release_win32\Sim\Rwr\Rwr.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Lib.OutputFile).">
</Event><Event ErrorLevel="1" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="MSB8012: $(TargetPath) ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\SIM\RWR\Remote\Rwr.lib') does not match the Linker's OutputFile property value 'Remote\Rwr.lib' ('C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Remote\Rwr.lib') in project configuration 'Remote|Win32'. This may cause your project to build incorrectly. To correct this, please make sure that $(TargetPath) property value matches the value specified in %(Link.OutputFile).">
</Event><Event ErrorLevel="0" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="Done converting to new project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\Rwr\Rwr.vcxproj'.">
</Event><Event ErrorLevel="3" Project="Rwr" Source="Sim\Rwr\Rwr.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="Converting project file 'C:\Users\Zhitao Li\Documents\Visual Studio 2012\Projects\Freefalcon\Sim\SimDrive\SimDrive.vcproj'.">
</Event><Event ErrorLevel="0" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to "#pragma comment(linker,"<insert dependency here>")" in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="1" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Release|Win32.">
</Event><Event ErrorLevel="1" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="1" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="VCConvertEngine could not convert attribute GlobalOptimizations = TRUE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="VCConvertEngine could not convert attribute ImproveFloatingPointConsistency = FALSE under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="1" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="VCConvertEngine could not convert attribute OptimizeForProcessor = 2 under Tool VCCLCompilerTool.">
</Event><Event ErrorLevel="0" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="Due to a change in the exception handling switches for the C/C++ Compiler, /EHsc has been automatically converted to /EHa in this project.">
</Event><Event ErrorLevel="1" Project="SimDrive" Source="Sim\SimDrive\SimDrive.vcproj" Description="VCConvertEngine could not convert attribute WholeProgramOptimization = FALSE under Configuration Remote|Win32.">