IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Visual Studio Discussion :

Temp de compilation énorme pour un petit projet


Sujet :

Visual Studio

  1. #1
    Futur Membre du Club
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    14
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 14
    Points : 8
    Points
    8
    Par défaut Temp de compilation énorme pour un petit projet
    Plop,
    Voilà comme le titre l'indique j'ai un souci avec VS c# 2010 Express, en effet mon application qui est un tout petit projet est passé du jour au lendemain à mettre plusieurs longue seconde à compiler alors que avant c'était quasiment instantané.
    Auriez-vous une explication ou bien encore mieux une solution.

    Merci.

  2. #2
    Membre expérimenté Avatar de ctxnop
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2007
    Messages
    858
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Morbihan (Bretagne)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juillet 2007
    Messages : 858
    Points : 1 732
    Points
    1 732
    Par défaut
    Ca va être difficile de t'aider sans le code, ou mieux, la solution complète (solution au sens .sln de Visual Studio, pas au sens "solution à ton problème" )
    Tu ne donne même pas un message d'erreur ou un log d'une compilation.
    Bref, tu as juste dit "j'ai un problème : c'est long".

  3. #3
    Futur Membre du Club
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    14
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 14
    Points : 8
    Points
    8
    Par défaut Complément d'information
    merci pour t'as réponse.
    Voilà le log de compilation, Si c'est bien celà
    C'est un peu énorme...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    1015
    1016
    1017
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
    1029
    1030
    1031
    1032
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
    1041
    1042
    1043
    1044
    1045
    1046
    1047
    1048
    1049
    1050
    1051
    1052
     
    <?xml version="1.0" encoding="UTF-8"?>
    <XPD:PROJECT xmlns:XPD="http://www.staruml.com" version="1">
    <XPD:HEADER>
    <XPD:SUBUNITS>
    </XPD:SUBUNITS>
    <XPD:PROFILES>
    <XPD:PROFILE>UMLStandard</XPD:PROFILE>
    </XPD:PROFILES>
    </XPD:HEADER>
    <XPD:BODY>
    <XPD:OBJ name="DocumentElement" type="UMLProject" guid="UgiQe9wG+0KzU1LD9y5nwAAA">
    <XPD:ATTR name="Title" type="string">Untitled</XPD:ATTR>
    <XPD:ATTR name="#OwnedElements" type="integer">5</XPD:ATTR>
    <XPD:OBJ name="OwnedElements[0]" type="UMLModel" guid="NzANGghC9kuzBZTCNiKLSwAA">
    <XPD:ATTR name="Name" type="string">Use Case Model</XPD:ATTR>
    <XPD:ATTR name="StereotypeProfile" type="string">UMLStandard</XPD:ATTR>
    <XPD:ATTR name="StereotypeName" type="string">useCaseModel</XPD:ATTR>
    <XPD:REF name="Namespace">UgiQe9wG+0KzU1LD9y5nwAAA</XPD:REF>
    <XPD:ATTR name="#OwnedDiagrams" type="integer">1</XPD:ATTR>
    <XPD:OBJ name="OwnedDiagrams[0]" type="UMLUseCaseDiagram" guid="Q2tO6BI4hU6ZfWk/5gjeVgAA">
    <XPD:ATTR name="Name" type="string">Main</XPD:ATTR>
    <XPD:REF name="DiagramOwner">NzANGghC9kuzBZTCNiKLSwAA</XPD:REF>
    <XPD:OBJ name="DiagramView" type="UMLUseCaseDiagramView" guid="vgRMWWLZ2UyAA6EPF5/PVgAA">
    <XPD:REF name="Diagram">Q2tO6BI4hU6ZfWk/5gjeVgAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[1]" type="UMLModel" guid="knphqdaieUi5b0nM5+KUHAAA">
    <XPD:ATTR name="Name" type="string">Analysis Model</XPD:ATTR>
    <XPD:ATTR name="StereotypeProfile" type="string">UMLStandard</XPD:ATTR>
    <XPD:ATTR name="StereotypeName" type="string">analysisModel</XPD:ATTR>
    <XPD:REF name="Namespace">UgiQe9wG+0KzU1LD9y5nwAAA</XPD:REF>
    <XPD:ATTR name="#OwnedDiagrams" type="integer">1</XPD:ATTR>
    <XPD:OBJ name="OwnedDiagrams[0]" type="UMLClassDiagram" guid="hLzdbzVlikedqHS4iw6t9wAA">
    <XPD:ATTR name="Name" type="string">Main</XPD:ATTR>
    <XPD:ATTR name="DefaultDiagram" type="boolean">True</XPD:ATTR>
    <XPD:ATTR name="DiagramType" type="string">RobustnessDiagram</XPD:ATTR>
    <XPD:REF name="DiagramOwner">knphqdaieUi5b0nM5+KUHAAA</XPD:REF>
    <XPD:OBJ name="DiagramView" type="UMLClassDiagramView" guid="1KYUDTnUY0uitzJB/wqrRgAA">
    <XPD:REF name="Diagram">hLzdbzVlikedqHS4iw6t9wAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[2]" type="UMLModel" guid="JZ0h0lNjPkKxYkgU9h2W7wAA">
    <XPD:ATTR name="Name" type="string">Design Model</XPD:ATTR>
    <XPD:ATTR name="StereotypeProfile" type="string">UMLStandard</XPD:ATTR>
    <XPD:ATTR name="StereotypeName" type="string">designModel</XPD:ATTR>
    <XPD:REF name="Namespace">UgiQe9wG+0KzU1LD9y5nwAAA</XPD:REF>
    <XPD:ATTR name="#OwnedDiagrams" type="integer">1</XPD:ATTR>
    <XPD:OBJ name="OwnedDiagrams[0]" type="UMLClassDiagram" guid="p5yDHZnmZ0OU2nTZeJ6lMQAA">
    <XPD:ATTR name="Name" type="string">Main</XPD:ATTR>
    <XPD:ATTR name="DefaultDiagram" type="boolean">True</XPD:ATTR>
    <XPD:REF name="DiagramOwner">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:OBJ name="DiagramView" type="UMLClassDiagramView" guid="zZP0EMhzcU2bz/pScsD5ogAA">
    <XPD:REF name="Diagram">p5yDHZnmZ0OU2nTZeJ6lMQAA</XPD:REF>
    <XPD:ATTR name="#OwnedViews" type="integer">12</XPD:ATTR>
    <XPD:OBJ name="OwnedViews[0]" type="UMLClassView" guid="++eL9q6ktkqEx//JnueQlQAA">
    <XPD:ATTR name="LineColor" type="string">clMaroon</XPD:ATTR>
    <XPD:ATTR name="FillColor" type="string">$00B9FFFF</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">876</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">96</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">143</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">95</XPD:ATTR>
    <XPD:REF name="Model">uStqSIFXDkq06lBw+KejqAAA</XPD:REF>
    <XPD:OBJ name="NameCompartment" type="UMLNameCompartmentView" guid="rNG6vqXXRE6OEIrRoOeZFQAA">
    <XPD:OBJ name="NameLabel" type="LabelView" guid="s/II9+ZaRE2xK/7kYUY+tQAA">
    <XPD:ATTR name="FontStyle" type="integer">1</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">fichier</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="StereotypeLabel" type="LabelView" guid="CrX3Dew3hkOiqs4Qx7ZhEwAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="PropertyLabel" type="LabelView" guid="kAkNDqJZaUWy4mWhgMKZFAAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="AttributeCompartment" type="UMLAttributeCompartmentView" guid="rVuL3TvFM0SpNtrATRJSNQAA">
    <XPD:REF name="Model">uStqSIFXDkq06lBw+KejqAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OperationCompartment" type="UMLOperationCompartmentView" guid="ijJTOzetC0eLtjE7cg5aaAAA">
    <XPD:REF name="Model">uStqSIFXDkq06lBw+KejqAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TemplateParameterCompartment" type="UMLTemplateParameterCompartmentView" guid="icaVj60+9kqxslsPIV084QAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:REF name="Model">uStqSIFXDkq06lBw+KejqAAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedViews[1]" type="UMLClassView" guid="Mma3oHT09EuiDkUfc7froAAA">
    <XPD:ATTR name="LineColor" type="string">clMaroon</XPD:ATTR>
    <XPD:ATTR name="FillColor" type="string">$00B9FFFF</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">304</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">56</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">135</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">108</XPD:ATTR>
    <XPD:REF name="Model">k+Bwu4ywLUS4aCg/EW4YLwAA</XPD:REF>
    <XPD:OBJ name="NameCompartment" type="UMLNameCompartmentView" guid="CZfJpDFNqk6SbCAhbe0h7AAA">
    <XPD:OBJ name="NameLabel" type="LabelView" guid="Zhl9qUVOc0ShtSzzE210VgAA">
    <XPD:ATTR name="FontStyle" type="integer">1</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">compte</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="StereotypeLabel" type="LabelView" guid="k/3s6/qn906J5zgov4F8gQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="PropertyLabel" type="LabelView" guid="rwUXVZoXzkWpqZk1TvK21gAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="AttributeCompartment" type="UMLAttributeCompartmentView" guid="3BDQPlntP0ud+mNWSCsBLAAA">
    <XPD:REF name="Model">k+Bwu4ywLUS4aCg/EW4YLwAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OperationCompartment" type="UMLOperationCompartmentView" guid="XOLIEq04hkyXuD3RcGEIUwAA">
    <XPD:REF name="Model">k+Bwu4ywLUS4aCg/EW4YLwAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TemplateParameterCompartment" type="UMLTemplateParameterCompartmentView" guid="zLoV/nyet0yJAI4KZQI+FgAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:REF name="Model">k+Bwu4ywLUS4aCg/EW4YLwAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedViews[2]" type="UMLClassView" guid="0KtRXhdFlUeqhOeS66W3VQAA">
    <XPD:ATTR name="LineColor" type="string">clMaroon</XPD:ATTR>
    <XPD:ATTR name="FillColor" type="string">$00B9FFFF</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">308</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">224</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">87</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">108</XPD:ATTR>
    <XPD:REF name="Model">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    <XPD:OBJ name="NameCompartment" type="UMLNameCompartmentView" guid="7cUbv8+xU02rAGxeME4stwAA">
    <XPD:OBJ name="NameLabel" type="LabelView" guid="y0vIW7bAakqsWmsfNXNYcgAA">
    <XPD:ATTR name="FontStyle" type="integer">1</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">operation</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="StereotypeLabel" type="LabelView" guid="icpNB9PHXEmvRgjl2PkXdwAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="PropertyLabel" type="LabelView" guid="WXsaZ8bkkU+UIuRbPXInbAAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="AttributeCompartment" type="UMLAttributeCompartmentView" guid="FxkIZKfYCkOL/ykWMPvcXQAA">
    <XPD:REF name="Model">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OperationCompartment" type="UMLOperationCompartmentView" guid="uY2kCO52gE2m+kx8b6zOngAA">
    <XPD:REF name="Model">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TemplateParameterCompartment" type="UMLTemplateParameterCompartmentView" guid="HzxowMkrnkeUPWliCiBf/wAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:REF name="Model">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedViews[3]" type="UMLAssociationView" guid="Nd8KPE1CuEefMOMSaE5HnwAA">
    <XPD:ATTR name="LineColor" type="string">clMaroon</XPD:ATTR>
    <XPD:ATTR name="FillColor" type="string">$00B9FFFF</XPD:ATTR>
    <XPD:ATTR name="Points" type="Points">365,163;358,224</XPD:ATTR>
    <XPD:REF name="Model">0G2yiBhVaUKQeDx7AM4wjAAA</XPD:REF>
    <XPD:REF name="Head">0KtRXhdFlUeqhOeS66W3VQAA</XPD:REF>
    <XPD:REF name="Tail">Mma3oHT09EuiDkUfc7froAAA</XPD:REF>
    <XPD:OBJ name="NameLabel" type="EdgeLabelView" guid="aEDGaC3UI06xh96y007llwAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">1,5707963267949</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">15</XPD:ATTR>
    <XPD:REF name="Model">0G2yiBhVaUKQeDx7AM4wjAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="StereotypeLabel" type="EdgeLabelView" guid="IOQ1h7jQu0SpavJ7Y5NrlgAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">1,5707963267949</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">30</XPD:ATTR>
    <XPD:REF name="Model">0G2yiBhVaUKQeDx7AM4wjAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="PropertyLabel" type="EdgeLabelView" guid="LbODrGI+p0SIAZgTUCsEkQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-1,5707963267949</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">15</XPD:ATTR>
    <XPD:REF name="Model">0G2yiBhVaUKQeDx7AM4wjAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadRoleNameLabel" type="EdgeLabelView" guid="XapLI/JD+0G5Jk60YAFClQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">30</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epHead</XPD:ATTR>
    <XPD:REF name="Model">Uzt0xz51tUixCe3kf13pJQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailRoleNameLabel" type="EdgeLabelView" guid="SsQc3gqQ/kCJrXzht95QCgAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">30</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epTail</XPD:ATTR>
    <XPD:REF name="Model">bL53lF8L9ESE5crbtHsm8wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadMultiplicityLabel" type="EdgeLabelView" guid="omqR4/L7lUa44XxxthPPQgAA">
    <XPD:ATTR name="Alpha" type="real">0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">25</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epHead</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">0..*</XPD:ATTR>
    <XPD:REF name="Model">Uzt0xz51tUixCe3kf13pJQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailMultiplicityLabel" type="EdgeLabelView" guid="9Wn298J5GUyyvk71RHmHOQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">25</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epTail</XPD:ATTR>
    <XPD:REF name="Model">bL53lF8L9ESE5crbtHsm8wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadPropertyLabel" type="EdgeLabelView" guid="zWt9DTdeeUGWIxUk7qDypQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-0,785398163397448</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">40</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epHead</XPD:ATTR>
    <XPD:REF name="Model">Uzt0xz51tUixCe3kf13pJQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailPropertyLabel" type="EdgeLabelView" guid="2OC5aP0HQkKOhptp0MGGjgAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">0,785398163397448</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">40</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epTail</XPD:ATTR>
    <XPD:REF name="Model">bL53lF8L9ESE5crbtHsm8wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadQualifierCompartment" type="UMLQualifierCompartmentView" guid="fJiXweY930Gj7cEQ9ZXx8AAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">50</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">8</XPD:ATTR>
    <XPD:REF name="Model">Uzt0xz51tUixCe3kf13pJQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailQualifierCompartment" type="UMLQualifierCompartmentView" guid="ZWmTu5iWdk2NWI6Wh21LegAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">50</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">8</XPD:ATTR>
    <XPD:REF name="Model">bL53lF8L9ESE5crbtHsm8wAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedViews[4]" type="UMLClassView" guid="D/qV1G69uE6JpMBx0hQaKgAA">
    <XPD:ATTR name="LineColor" type="string">clMaroon</XPD:ATTR>
    <XPD:ATTR name="FillColor" type="string">$00B9FFFF</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">868</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">240</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">123</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">82</XPD:ATTR>
    <XPD:REF name="Model">qD5mm7pDA06s4KvdfFESWgAA</XPD:REF>
    <XPD:OBJ name="NameCompartment" type="UMLNameCompartmentView" guid="ffaVIud0+0S+YDem6EBytgAA">
    <XPD:OBJ name="NameLabel" type="LabelView" guid="ku+9qaIOTk+kJOioPXxW6wAA">
    <XPD:ATTR name="FontStyle" type="integer">1</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">garphique</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="StereotypeLabel" type="LabelView" guid="kzrweZPkDkKpqMS/jAXf5AAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="PropertyLabel" type="LabelView" guid="Om3j5QvdAUmZ/u/CrBZcxAAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="AttributeCompartment" type="UMLAttributeCompartmentView" guid="5VtjFZMe2UacPqREta4ZlAAA">
    <XPD:REF name="Model">qD5mm7pDA06s4KvdfFESWgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OperationCompartment" type="UMLOperationCompartmentView" guid="zFBBJTfcaEuX0BpyxWJjhgAA">
    <XPD:REF name="Model">qD5mm7pDA06s4KvdfFESWgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TemplateParameterCompartment" type="UMLTemplateParameterCompartmentView" guid="q+VUy72/wki7zz++baphYgAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:REF name="Model">qD5mm7pDA06s4KvdfFESWgAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedViews[5]" type="UMLClassView" guid="RpQTmKgmwkG+LizugabdtAAA">
    <XPD:ATTR name="LineColor" type="string">clMaroon</XPD:ATTR>
    <XPD:ATTR name="FillColor" type="string">$00B9FFFF</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">56</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">236</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">86</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">82</XPD:ATTR>
    <XPD:REF name="Model">fb3+GDqZoUeW5n49yE+BjwAA</XPD:REF>
    <XPD:OBJ name="NameCompartment" type="UMLNameCompartmentView" guid="ZaiIqEp5NkODXMXFl0h9iQAA">
    <XPD:OBJ name="NameLabel" type="LabelView" guid="wsU53swXXk+jX3ndI4Pz7wAA">
    <XPD:ATTR name="FontStyle" type="integer">1</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">type</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="StereotypeLabel" type="LabelView" guid="11L5Rr+b20+c1HP9WTx7RQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="PropertyLabel" type="LabelView" guid="U4yNYmjc802XeRCYiXML7gAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="AttributeCompartment" type="UMLAttributeCompartmentView" guid="eiesNt/KbUKnE0D/bbMvFAAA">
    <XPD:REF name="Model">fb3+GDqZoUeW5n49yE+BjwAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OperationCompartment" type="UMLOperationCompartmentView" guid="d01dMX2OmEC3Wt4lXGul6wAA">
    <XPD:REF name="Model">fb3+GDqZoUeW5n49yE+BjwAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TemplateParameterCompartment" type="UMLTemplateParameterCompartmentView" guid="2PlXNLO6nE6+L2Od7AFazwAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:REF name="Model">fb3+GDqZoUeW5n49yE+BjwAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedViews[6]" type="UMLAssociationView" guid="G28phyZ0zkWSV+SjlbgsuwAA">
    <XPD:ATTR name="LineColor" type="string">clMaroon</XPD:ATTR>
    <XPD:ATTR name="FillColor" type="string">$00B9FFFF</XPD:ATTR>
    <XPD:ATTR name="Points" type="Points">141,276;308,277</XPD:ATTR>
    <XPD:REF name="Model">/87XgZaNaUKOL2p6A/I2NgAA</XPD:REF>
    <XPD:REF name="Head">0KtRXhdFlUeqhOeS66W3VQAA</XPD:REF>
    <XPD:REF name="Tail">RpQTmKgmwkG+LizugabdtAAA</XPD:REF>
    <XPD:OBJ name="NameLabel" type="EdgeLabelView" guid="/CsuT4aETUyAZPexehURiQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">1,5707963267949</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">15</XPD:ATTR>
    <XPD:REF name="Model">/87XgZaNaUKOL2p6A/I2NgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="StereotypeLabel" type="EdgeLabelView" guid="iHmZjwUrnEuGj+w3Cj1s3AAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">1,5707963267949</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">30</XPD:ATTR>
    <XPD:REF name="Model">/87XgZaNaUKOL2p6A/I2NgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="PropertyLabel" type="EdgeLabelView" guid="A3NGJukiLUyONh0NPJrKqQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-1,5707963267949</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">15</XPD:ATTR>
    <XPD:REF name="Model">/87XgZaNaUKOL2p6A/I2NgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadRoleNameLabel" type="EdgeLabelView" guid="Vb7wY9YweUqFek2ZewVzRQAA">
    <XPD:ATTR name="Alpha" type="real">-0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">30</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epHead</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">+etre typée</XPD:ATTR>
    <XPD:REF name="Model">3oOtHvPr+U6cLDHmG/lA7gAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailRoleNameLabel" type="EdgeLabelView" guid="udGHkb+TYkyHITunX1cXrAAA">
    <XPD:ATTR name="Alpha" type="real">0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">30</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epTail</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">+type</XPD:ATTR>
    <XPD:REF name="Model">typNP+4MuEqCCK4LNKzYMgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadMultiplicityLabel" type="EdgeLabelView" guid="HdTOy7YKlEi9ahp4fPpLHgAA">
    <XPD:ATTR name="Alpha" type="real">0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">25</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epHead</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">0..*</XPD:ATTR>
    <XPD:REF name="Model">3oOtHvPr+U6cLDHmG/lA7gAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailMultiplicityLabel" type="EdgeLabelView" guid="qb8oZAtZrESihFPcJG343wAA">
    <XPD:ATTR name="Alpha" type="real">-0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">25</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epTail</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">0..1</XPD:ATTR>
    <XPD:REF name="Model">typNP+4MuEqCCK4LNKzYMgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadPropertyLabel" type="EdgeLabelView" guid="IfQT1yGLZk6TLNqYCkzz0QAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-0,785398163397448</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">40</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epHead</XPD:ATTR>
    <XPD:REF name="Model">3oOtHvPr+U6cLDHmG/lA7gAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailPropertyLabel" type="EdgeLabelView" guid="4ULXOnbrvUal/LhpS6n4VQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">0,785398163397448</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">40</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epTail</XPD:ATTR>
    <XPD:REF name="Model">typNP+4MuEqCCK4LNKzYMgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadQualifierCompartment" type="UMLQualifierCompartmentView" guid="ogK7hE4b8EWjgoFiQpod3AAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">50</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">8</XPD:ATTR>
    <XPD:REF name="Model">3oOtHvPr+U6cLDHmG/lA7gAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailQualifierCompartment" type="UMLQualifierCompartmentView" guid="iGFRnaWvrEiRKXb0PtyVrQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">50</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">8</XPD:ATTR>
    <XPD:REF name="Model">typNP+4MuEqCCK4LNKzYMgAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedViews[7]" type="UMLClassView" guid="EaP0VE0XoECRJXrThuE4ewAA">
    <XPD:ATTR name="LineColor" type="string">clMaroon</XPD:ATTR>
    <XPD:ATTR name="FillColor" type="string">$00B9FFFF</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">824</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">380</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">266</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">43</XPD:ATTR>
    <XPD:REF name="Model">4sY0UIdxKUm/dNUlms5FbgAA</XPD:REF>
    <XPD:OBJ name="NameCompartment" type="UMLNameCompartmentView" guid="ELnTQnQOSkucYXrVFKVpHQAA">
    <XPD:OBJ name="NameLabel" type="LabelView" guid="F7qWWuPd7UylB5zfIAHhcgAA">
    <XPD:ATTR name="FontStyle" type="integer">1</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">listViewRcap : System.Winsows.Form.ListView</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="StereotypeLabel" type="LabelView" guid="mIRhIHBco0WRPZZGmF72zgAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="PropertyLabel" type="LabelView" guid="yH5IbTrZlEOoPiSipi0ZYwAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="AttributeCompartment" type="UMLAttributeCompartmentView" guid="GwaqgBGgOUiakWkoqnFgHAAA">
    <XPD:REF name="Model">4sY0UIdxKUm/dNUlms5FbgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OperationCompartment" type="UMLOperationCompartmentView" guid="PpUiIszr/kKLo4o69UX89AAA">
    <XPD:REF name="Model">4sY0UIdxKUm/dNUlms5FbgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TemplateParameterCompartment" type="UMLTemplateParameterCompartmentView" guid="6BILpaYQe0GksgnsbMPQswAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:REF name="Model">4sY0UIdxKUm/dNUlms5FbgAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedViews[8]" type="UMLClassView" guid="cWSKHKabvEaS/TN08Rf5IgAA">
    <XPD:ATTR name="LineColor" type="string">clMaroon</XPD:ATTR>
    <XPD:ATTR name="FillColor" type="string">$00B9FFFF</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">544</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">232</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">111</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">121</XPD:ATTR>
    <XPD:REF name="Model">8zYjWRCg202Xu8tyH9gL0wAA</XPD:REF>
    <XPD:OBJ name="NameCompartment" type="UMLNameCompartmentView" guid="XN8utGpzckKBOy3XrvCihAAA">
    <XPD:OBJ name="NameLabel" type="LabelView" guid="fJMOPgoS/0ivAiKXt2gCLwAA">
    <XPD:ATTR name="FontStyle" type="integer">1</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">DepenseCourante</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="StereotypeLabel" type="LabelView" guid="oE9mz5JYP0i3oAYN8l5rMgAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="PropertyLabel" type="LabelView" guid="Tuh0MC+T9Emq03SgCBisQgAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="AttributeCompartment" type="UMLAttributeCompartmentView" guid="2PW6jZ3mUU+SP82GYF8ziAAA">
    <XPD:REF name="Model">8zYjWRCg202Xu8tyH9gL0wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OperationCompartment" type="UMLOperationCompartmentView" guid="4U71axqLyE+pWQClZzKFQgAA">
    <XPD:REF name="Model">8zYjWRCg202Xu8tyH9gL0wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TemplateParameterCompartment" type="UMLTemplateParameterCompartmentView" guid="7EptZkL9GUCr6EymTqJ+lQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:REF name="Model">8zYjWRCg202Xu8tyH9gL0wAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedViews[9]" type="UMLClassView" guid="M+8vcmWgAU23DQjq2BRMyQAA">
    <XPD:ATTR name="LineColor" type="string">clMaroon</XPD:ATTR>
    <XPD:ATTR name="FillColor" type="string">$00B9FFFF</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">556</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">432</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">101</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">69</XPD:ATTR>
    <XPD:REF name="Model">fcMSd4jZyUeosuk8oBW6LQAA</XPD:REF>
    <XPD:OBJ name="NameCompartment" type="UMLNameCompartmentView" guid="AEXPps5NNEKivjKsrT96/wAA">
    <XPD:OBJ name="NameLabel" type="LabelView" guid="EMYk8DP10E2v2N/pRQnMCgAA">
    <XPD:ATTR name="FontStyle" type="integer">1</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">Date</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="StereotypeLabel" type="LabelView" guid="X974KKY6H0KfnBHM3wwArAAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    <XPD:OBJ name="PropertyLabel" type="LabelView" guid="pb7GlWB+PESPUBpM/pUlHwAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="AttributeCompartment" type="UMLAttributeCompartmentView" guid="9/pCKDLjVEyOYPAzKxGSzgAA">
    <XPD:REF name="Model">fcMSd4jZyUeosuk8oBW6LQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OperationCompartment" type="UMLOperationCompartmentView" guid="sDWeVmlEo0q6S+WOUo3eRAAA">
    <XPD:REF name="Model">fcMSd4jZyUeosuk8oBW6LQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TemplateParameterCompartment" type="UMLTemplateParameterCompartmentView" guid="BEFzkLq3lkyMe0NnVhjcQgAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:REF name="Model">fcMSd4jZyUeosuk8oBW6LQAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedViews[10]" type="UMLAssociationView" guid="HvN/pt1txU68ZV5/AMIKAwAA">
    <XPD:ATTR name="LineColor" type="string">clMaroon</XPD:ATTR>
    <XPD:ATTR name="FillColor" type="string">$00B9FFFF</XPD:ATTR>
    <XPD:ATTR name="Points" type="Points">601,352;605,432</XPD:ATTR>
    <XPD:REF name="Model">f8BARRyz8ESRuvlzS1UqoAAA</XPD:REF>
    <XPD:REF name="Head">M+8vcmWgAU23DQjq2BRMyQAA</XPD:REF>
    <XPD:REF name="Tail">cWSKHKabvEaS/TN08Rf5IgAA</XPD:REF>
    <XPD:OBJ name="NameLabel" type="EdgeLabelView" guid="bK7qZIn1AUSyRDUbgEsrFwAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">1,5707963267949</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">15</XPD:ATTR>
    <XPD:REF name="Model">f8BARRyz8ESRuvlzS1UqoAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="StereotypeLabel" type="EdgeLabelView" guid="HAgsUGz+zU67GbrtIBmkHAAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">1,5707963267949</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">30</XPD:ATTR>
    <XPD:REF name="Model">f8BARRyz8ESRuvlzS1UqoAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="PropertyLabel" type="EdgeLabelView" guid="uyjFcTFApk20k0NA1eTrxwAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-1,5707963267949</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">15</XPD:ATTR>
    <XPD:REF name="Model">f8BARRyz8ESRuvlzS1UqoAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadRoleNameLabel" type="EdgeLabelView" guid="dogR6yQntUqYQ4QkdBoYQQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">30</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epHead</XPD:ATTR>
    <XPD:REF name="Model">B84zfnEUVkiwRJwXmONf9wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailRoleNameLabel" type="EdgeLabelView" guid="vhpCDAAgtU+05J28tOP8nAAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">30</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epTail</XPD:ATTR>
    <XPD:REF name="Model">1RCkORg4AUGd5HVD3Ov61QAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadMultiplicityLabel" type="EdgeLabelView" guid="DV53UMXy9UCeNA62S7itRgAA">
    <XPD:ATTR name="Alpha" type="real">0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">25</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epHead</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">0..1</XPD:ATTR>
    <XPD:REF name="Model">B84zfnEUVkiwRJwXmONf9wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailMultiplicityLabel" type="EdgeLabelView" guid="hRmI4Sq/W06uDEhhm8WitgAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">25</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epTail</XPD:ATTR>
    <XPD:REF name="Model">1RCkORg4AUGd5HVD3Ov61QAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadPropertyLabel" type="EdgeLabelView" guid="BA9kGG1moEC8DW5ufTc8LgAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-0,785398163397448</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">40</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epHead</XPD:ATTR>
    <XPD:REF name="Model">B84zfnEUVkiwRJwXmONf9wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailPropertyLabel" type="EdgeLabelView" guid="KK7tJrkm+UCz7Di6s9gJTQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">0,785398163397448</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">40</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epTail</XPD:ATTR>
    <XPD:REF name="Model">1RCkORg4AUGd5HVD3Ov61QAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadQualifierCompartment" type="UMLQualifierCompartmentView" guid="jvynGTeV0EykBSOxnRULnAAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">50</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">8</XPD:ATTR>
    <XPD:REF name="Model">B84zfnEUVkiwRJwXmONf9wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailQualifierCompartment" type="UMLQualifierCompartmentView" guid="TZfYSNPVNkyrOSsbVs70awAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">50</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">8</XPD:ATTR>
    <XPD:REF name="Model">1RCkORg4AUGd5HVD3Ov61QAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedViews[11]" type="UMLAssociationView" guid="f8aT3ZoxSUalsLC+3mj5ywAA">
    <XPD:ATTR name="LineColor" type="string">clMaroon</XPD:ATTR>
    <XPD:ATTR name="FillColor" type="string">$00B9FFFF</XPD:ATTR>
    <XPD:ATTR name="Points" type="Points">438,163;544,248</XPD:ATTR>
    <XPD:REF name="Model">hrkTsTELL0ePbbPnLVYzPQAA</XPD:REF>
    <XPD:REF name="Head">cWSKHKabvEaS/TN08Rf5IgAA</XPD:REF>
    <XPD:REF name="Tail">Mma3oHT09EuiDkUfc7froAAA</XPD:REF>
    <XPD:OBJ name="NameLabel" type="EdgeLabelView" guid="/uZvtnixm061i1rHNa2jCwAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">1,5707963267949</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">15</XPD:ATTR>
    <XPD:REF name="Model">hrkTsTELL0ePbbPnLVYzPQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="StereotypeLabel" type="EdgeLabelView" guid="Flx23dxVqkyaDxyziDbC6wAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">1,5707963267949</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">30</XPD:ATTR>
    <XPD:REF name="Model">hrkTsTELL0ePbbPnLVYzPQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="PropertyLabel" type="EdgeLabelView" guid="xI3Jk8LJCUaAIZzoY60BWAAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-1,5707963267949</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">15</XPD:ATTR>
    <XPD:REF name="Model">hrkTsTELL0ePbbPnLVYzPQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadRoleNameLabel" type="EdgeLabelView" guid="wY0L28DUXEOjaSjRRriPkQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">30</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epHead</XPD:ATTR>
    <XPD:REF name="Model">nlbdKFuElkW2x3UKiPbhMAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailRoleNameLabel" type="EdgeLabelView" guid="ORGLpD0qjkmadgbHxVyZrQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">30</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epTail</XPD:ATTR>
    <XPD:REF name="Model">/K/yY7KtokOD+Gw4rfOGFAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadMultiplicityLabel" type="EdgeLabelView" guid="PfyvZFd80kaV0PFawFdB3wAA">
    <XPD:ATTR name="Alpha" type="real">0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">25</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epHead</XPD:ATTR>
    <XPD:ATTR name="Text" type="string">0..*</XPD:ATTR>
    <XPD:REF name="Model">nlbdKFuElkW2x3UKiPbhMAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailMultiplicityLabel" type="EdgeLabelView" guid="3RltJT5Z3k2DSvjuFGndKAAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-0,523598775598299</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">25</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epTail</XPD:ATTR>
    <XPD:REF name="Model">/K/yY7KtokOD+Gw4rfOGFAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadPropertyLabel" type="EdgeLabelView" guid="eIDkNvk2j0myZM2EJDjPhAAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">-0,785398163397448</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">40</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epHead</XPD:ATTR>
    <XPD:REF name="Model">nlbdKFuElkW2x3UKiPbhMAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailPropertyLabel" type="EdgeLabelView" guid="mn5b2gRLi0qaaafjM6OuUwAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Alpha" type="real">0,785398163397448</XPD:ATTR>
    <XPD:ATTR name="Distance" type="real">40</XPD:ATTR>
    <XPD:ATTR name="EdgePosition" type="EdgePositionKind">epTail</XPD:ATTR>
    <XPD:REF name="Model">/K/yY7KtokOD+Gw4rfOGFAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="HeadQualifierCompartment" type="UMLQualifierCompartmentView" guid="uNyNAbB19UShYRwVhrf+6gAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">50</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">8</XPD:ATTR>
    <XPD:REF name="Model">nlbdKFuElkW2x3UKiPbhMAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="TailQualifierCompartment" type="UMLQualifierCompartmentView" guid="e97C05pSOkmxMWK9ZWxehQAA">
    <XPD:ATTR name="Visible" type="boolean">False</XPD:ATTR>
    <XPD:ATTR name="Left" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Top" type="integer">-1000</XPD:ATTR>
    <XPD:ATTR name="Width" type="integer">50</XPD:ATTR>
    <XPD:ATTR name="Height" type="integer">8</XPD:ATTR>
    <XPD:REF name="Model">/K/yY7KtokOD+Gw4rfOGFAAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:ATTR name="#OwnedElements" type="integer">17</XPD:ATTR>
    <XPD:OBJ name="OwnedElements[0]" type="UMLClass" guid="uStqSIFXDkq06lBw+KejqAAA">
    <XPD:ATTR name="Name" type="string">fichier</XPD:ATTR>
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">++eL9q6ktkqEx//JnueQlQAA</XPD:REF>
    <XPD:REF name="Views[1]">rVuL3TvFM0SpNtrATRJSNQAA</XPD:REF>
    <XPD:REF name="Views[2]">ijJTOzetC0eLtjE7cg5aaAAA</XPD:REF>
    <XPD:REF name="Views[3]">icaVj60+9kqxslsPIV084QAA</XPD:REF>
    <XPD:ATTR name="#Operations" type="integer">3</XPD:ATTR>
    <XPD:OBJ name="Operations[0]" type="UMLOperation" guid="HtdWCqeuLkumiBToeMnUmAAA">
    <XPD:ATTR name="Name" type="string">lire</XPD:ATTR>
    <XPD:REF name="Owner">uStqSIFXDkq06lBw+KejqAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Operations[1]" type="UMLOperation" guid="1Iqj8GhLV0exjYTR2hRalwAA">
    <XPD:ATTR name="Name" type="string">ecrir</XPD:ATTR>
    <XPD:REF name="Owner">uStqSIFXDkq06lBw+KejqAAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Operations[2]" type="UMLOperation" guid="W/ydYb9IeEm00LJXY0TIWQAA">
    <XPD:ATTR name="Name" type="string">rechercher</XPD:ATTR>
    <XPD:REF name="Owner">uStqSIFXDkq06lBw+KejqAAA</XPD:REF>
    <XPD:ATTR name="#Parameters" type="integer">1</XPD:ATTR>
    <XPD:OBJ name="Parameters[0]" type="UMLParameter" guid="mMI9UNJitEWd1EYDdgj31gAA">
    <XPD:ATTR name="Name" type="string">chaine</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">string</XPD:ATTR>
    <XPD:REF name="BehavioralFeature">W/ydYb9IeEm00LJXY0TIWQAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:ATTR name="#Attributes" type="integer">1</XPD:ATTR>
    <XPD:OBJ name="Attributes[0]" type="UMLAttribute" guid="BpBYPvl8PkavLrSt6m73UAAA">
    <XPD:ATTR name="Name" type="string">chemin</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">string</XPD:ATTR>
    <XPD:REF name="Owner">uStqSIFXDkq06lBw+KejqAAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[1]" type="UMLClass" guid="k+Bwu4ywLUS4aCg/EW4YLwAA">
    <XPD:ATTR name="Name" type="string">compte</XPD:ATTR>
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">Mma3oHT09EuiDkUfc7froAAA</XPD:REF>
    <XPD:REF name="Views[1]">3BDQPlntP0ud+mNWSCsBLAAA</XPD:REF>
    <XPD:REF name="Views[2]">XOLIEq04hkyXuD3RcGEIUwAA</XPD:REF>
    <XPD:REF name="Views[3]">zLoV/nyet0yJAI4KZQI+FgAA</XPD:REF>
    <XPD:ATTR name="#Operations" type="integer">3</XPD:ATTR>
    <XPD:OBJ name="Operations[0]" type="UMLOperation" guid="5XK4FxAmI06IDqj165MobwAA">
    <XPD:ATTR name="Name" type="string">update</XPD:ATTR>
    <XPD:REF name="Owner">k+Bwu4ywLUS4aCg/EW4YLwAA</XPD:REF>
    <XPD:ATTR name="#Parameters" type="integer">1</XPD:ATTR>
    <XPD:OBJ name="Parameters[0]" type="UMLParameter" guid="hQmbgt6WrU2u9rgd4Uu0lQAA">
    <XPD:ATTR name="Name" type="string">donnees  String</XPD:ATTR>
    <XPD:REF name="BehavioralFeature">5XK4FxAmI06IDqj165MobwAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="Operations[1]" type="UMLOperation" guid="5o40gXn59EKDJJhJMwma2QAA">
    <XPD:ATTR name="Name" type="string">save</XPD:ATTR>
    <XPD:REF name="Owner">k+Bwu4ywLUS4aCg/EW4YLwAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Operations[2]" type="UMLOperation" guid="fDxL9sR7kEufPAxcR/D+qQAA">
    <XPD:ATTR name="Name" type="string">init</XPD:ATTR>
    <XPD:REF name="Owner">k+Bwu4ywLUS4aCg/EW4YLwAA</XPD:REF>
    </XPD:OBJ>
    <XPD:ATTR name="#Associations" type="integer">2</XPD:ATTR>
    <XPD:REF name="Associations[0]">bL53lF8L9ESE5crbtHsm8wAA</XPD:REF>
    <XPD:REF name="Associations[1]">/K/yY7KtokOD+Gw4rfOGFAAA</XPD:REF>
    <XPD:ATTR name="#Attributes" type="integer">2</XPD:ATTR>
    <XPD:OBJ name="Attributes[0]" type="UMLAttribute" guid="VGL6qLyg3EKpRrknCpDimAAA">
    <XPD:ATTR name="Name" type="string">numero</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">string</XPD:ATTR>
    <XPD:REF name="Owner">k+Bwu4ywLUS4aCg/EW4YLwAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Attributes[1]" type="UMLAttribute" guid="O+poMXQ8FUaSKN8BPSXzZwAA">
    <XPD:ATTR name="Name" type="string">pass</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">string</XPD:ATTR>
    <XPD:REF name="Owner">k+Bwu4ywLUS4aCg/EW4YLwAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[2]" type="UMLClass" guid="i2ijl3LOuEiBCGcz48w6pgAA">
    <XPD:ATTR name="Name" type="string">operation</XPD:ATTR>
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">0KtRXhdFlUeqhOeS66W3VQAA</XPD:REF>
    <XPD:REF name="Views[1]">FxkIZKfYCkOL/ykWMPvcXQAA</XPD:REF>
    <XPD:REF name="Views[2]">uY2kCO52gE2m+kx8b6zOngAA</XPD:REF>
    <XPD:REF name="Views[3]">HzxowMkrnkeUPWliCiBf/wAA</XPD:REF>
    <XPD:ATTR name="#Generalizations" type="integer">2</XPD:ATTR>
    <XPD:REF name="Generalizations[0]">Tz8KxVc9FUm7GohcwpLmcwAA</XPD:REF>
    <XPD:REF name="Generalizations[1]">zwWGVuthZEmLDniMzLxtkQAA</XPD:REF>
    <XPD:ATTR name="#Associations" type="integer">2</XPD:ATTR>
    <XPD:REF name="Associations[0]">Uzt0xz51tUixCe3kf13pJQAA</XPD:REF>
    <XPD:REF name="Associations[1]">3oOtHvPr+U6cLDHmG/lA7gAA</XPD:REF>
    <XPD:ATTR name="#Attributes" type="integer">5</XPD:ATTR>
    <XPD:OBJ name="Attributes[0]" type="UMLAttribute" guid="wrlQZQxSqkG6xjezgCvQ2gAA">
    <XPD:ATTR name="Name" type="string">libellé</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">string</XPD:ATTR>
    <XPD:REF name="Owner">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Attributes[1]" type="UMLAttribute" guid="Y1oR6rPsB0+hiBrWdo/zyAAA">
    <XPD:ATTR name="Name" type="string">code</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">string</XPD:ATTR>
    <XPD:REF name="Owner">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Attributes[2]" type="UMLAttribute" guid="Xtl0ecRHKESZ9jK16TjqlgAA">
    <XPD:ATTR name="Name" type="string">montant</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">int</XPD:ATTR>
    <XPD:REF name="Owner">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Attributes[3]" type="UMLAttribute" guid="ezXOqluySUy+K0+nOiVqawAA">
    <XPD:ATTR name="Name" type="string">dtAff</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">Date</XPD:ATTR>
    <XPD:REF name="Owner">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Attributes[4]" type="UMLAttribute" guid="3DporroqZk2GklloaxUoNQAA">
    <XPD:ATTR name="Name" type="string">dtOp</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">Date</XPD:ATTR>
    <XPD:REF name="Owner">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[3]" type="UMLAssociation" guid="0G2yiBhVaUKQeDx7AM4wjAAA">
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">Nd8KPE1CuEefMOMSaE5HnwAA</XPD:REF>
    <XPD:REF name="Views[1]">aEDGaC3UI06xh96y007llwAA</XPD:REF>
    <XPD:REF name="Views[2]">IOQ1h7jQu0SpavJ7Y5NrlgAA</XPD:REF>
    <XPD:REF name="Views[3]">LbODrGI+p0SIAZgTUCsEkQAA</XPD:REF>
    <XPD:ATTR name="#Connections" type="integer">2</XPD:ATTR>
    <XPD:OBJ name="Connections[0]" type="UMLAssociationEnd" guid="bL53lF8L9ESE5crbtHsm8wAA">
    <XPD:ATTR name="IsNavigable" type="boolean">False</XPD:ATTR>
    <XPD:REF name="Association">0G2yiBhVaUKQeDx7AM4wjAAA</XPD:REF>
    <XPD:REF name="Participant">k+Bwu4ywLUS4aCg/EW4YLwAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">SsQc3gqQ/kCJrXzht95QCgAA</XPD:REF>
    <XPD:REF name="Views[1]">9Wn298J5GUyyvk71RHmHOQAA</XPD:REF>
    <XPD:REF name="Views[2]">2OC5aP0HQkKOhptp0MGGjgAA</XPD:REF>
    <XPD:REF name="Views[3]">ZWmTu5iWdk2NWI6Wh21LegAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Connections[1]" type="UMLAssociationEnd" guid="Uzt0xz51tUixCe3kf13pJQAA">
    <XPD:ATTR name="Multiplicity" type="string">0..*</XPD:ATTR>
    <XPD:REF name="Association">0G2yiBhVaUKQeDx7AM4wjAAA</XPD:REF>
    <XPD:REF name="Participant">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">XapLI/JD+0G5Jk60YAFClQAA</XPD:REF>
    <XPD:REF name="Views[1]">omqR4/L7lUa44XxxthPPQgAA</XPD:REF>
    <XPD:REF name="Views[2]">zWt9DTdeeUGWIxUk7qDypQAA</XPD:REF>
    <XPD:REF name="Views[3]">fJiXweY930Gj7cEQ9ZXx8AAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[4]" type="UMLClass" guid="6QpETH7gvUWuSnzT7S/qKgAA">
    <XPD:ATTR name="Name" type="string">credit</XPD:ATTR>
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Specializations" type="integer">1</XPD:ATTR>
    <XPD:REF name="Specializations[0]">Tz8KxVc9FUm7GohcwpLmcwAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[5]" type="UMLClass" guid="zW6F7XjKQEeXMfAr1Odk8AAA">
    <XPD:ATTR name="Name" type="string">debit</XPD:ATTR>
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Specializations" type="integer">1</XPD:ATTR>
    <XPD:REF name="Specializations[0]">zwWGVuthZEmLDniMzLxtkQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[6]" type="UMLGeneralization" guid="Tz8KxVc9FUm7GohcwpLmcwAA">
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:REF name="Child">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    <XPD:REF name="Parent">6QpETH7gvUWuSnzT7S/qKgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[7]" type="UMLGeneralization" guid="zwWGVuthZEmLDniMzLxtkQAA">
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:REF name="Child">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    <XPD:REF name="Parent">zW6F7XjKQEeXMfAr1Odk8AAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[8]" type="UMLClass" guid="qD5mm7pDA06s4KvdfFESWgAA">
    <XPD:ATTR name="Name" type="string">garphique</XPD:ATTR>
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">D/qV1G69uE6JpMBx0hQaKgAA</XPD:REF>
    <XPD:REF name="Views[1]">5VtjFZMe2UacPqREta4ZlAAA</XPD:REF>
    <XPD:REF name="Views[2]">zFBBJTfcaEuX0BpyxWJjhgAA</XPD:REF>
    <XPD:REF name="Views[3]">q+VUy72/wki7zz++baphYgAA</XPD:REF>
    <XPD:ATTR name="#Attributes" type="integer">3</XPD:ATTR>
    <XPD:OBJ name="Attributes[0]" type="UMLAttribute" guid="3Z1SgpY2PkGCCqTDZ3n0RAAA">
    <XPD:ATTR name="Name" type="string">titleWorkSheet</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">string</XPD:ATTR>
    <XPD:REF name="Owner">qD5mm7pDA06s4KvdfFESWgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Attributes[1]" type="UMLAttribute" guid="j4mZ9NKQDk2NvqVoCvlQMwAA">
    <XPD:ATTR name="Name" type="string">titleX</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">String</XPD:ATTR>
    <XPD:REF name="Owner">qD5mm7pDA06s4KvdfFESWgAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Attributes[2]" type="UMLAttribute" guid="wLCEPwxN80eTDvOeR6iKPAAA">
    <XPD:ATTR name="Name" type="string">titleY</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">String</XPD:ATTR>
    <XPD:REF name="Owner">qD5mm7pDA06s4KvdfFESWgAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[9]" type="UMLClass" guid="fb3+GDqZoUeW5n49yE+BjwAA">
    <XPD:ATTR name="Name" type="string">type</XPD:ATTR>
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">RpQTmKgmwkG+LizugabdtAAA</XPD:REF>
    <XPD:REF name="Views[1]">eiesNt/KbUKnE0D/bbMvFAAA</XPD:REF>
    <XPD:REF name="Views[2]">d01dMX2OmEC3Wt4lXGul6wAA</XPD:REF>
    <XPD:REF name="Views[3]">2PlXNLO6nE6+L2Od7AFazwAA</XPD:REF>
    <XPD:ATTR name="#Associations" type="integer">1</XPD:ATTR>
    <XPD:REF name="Associations[0]">typNP+4MuEqCCK4LNKzYMgAA</XPD:REF>
    <XPD:ATTR name="#Attributes" type="integer">3</XPD:ATTR>
    <XPD:OBJ name="Attributes[0]" type="UMLAttribute" guid="GeXraUQU+E2lxUGv+oqR/wAA">
    <XPD:ATTR name="Name" type="string">code</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">string</XPD:ATTR>
    <XPD:REF name="Owner">fb3+GDqZoUeW5n49yE+BjwAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Attributes[1]" type="UMLAttribute" guid="MvDQ3SF+E0mwgNPPEwP5lQAA">
    <XPD:ATTR name="Name" type="string">nom</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">String</XPD:ATTR>
    <XPD:REF name="Owner">fb3+GDqZoUeW5n49yE+BjwAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Attributes[2]" type="UMLAttribute" guid="bp8HPdfZoE2+WBOUImGofQAA">
    <XPD:ATTR name="Name" type="string">icone</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">String</XPD:ATTR>
    <XPD:REF name="Owner">fb3+GDqZoUeW5n49yE+BjwAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[10]" type="UMLAssociation" guid="/87XgZaNaUKOL2p6A/I2NgAA">
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">G28phyZ0zkWSV+SjlbgsuwAA</XPD:REF>
    <XPD:REF name="Views[1]">/CsuT4aETUyAZPexehURiQAA</XPD:REF>
    <XPD:REF name="Views[2]">iHmZjwUrnEuGj+w3Cj1s3AAA</XPD:REF>
    <XPD:REF name="Views[3]">A3NGJukiLUyONh0NPJrKqQAA</XPD:REF>
    <XPD:ATTR name="#Connections" type="integer">2</XPD:ATTR>
    <XPD:OBJ name="Connections[0]" type="UMLAssociationEnd" guid="typNP+4MuEqCCK4LNKzYMgAA">
    <XPD:ATTR name="Name" type="string">type</XPD:ATTR>
    <XPD:ATTR name="Multiplicity" type="string">0..1</XPD:ATTR>
    <XPD:REF name="Association">/87XgZaNaUKOL2p6A/I2NgAA</XPD:REF>
    <XPD:REF name="Participant">fb3+GDqZoUeW5n49yE+BjwAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">udGHkb+TYkyHITunX1cXrAAA</XPD:REF>
    <XPD:REF name="Views[1]">qb8oZAtZrESihFPcJG343wAA</XPD:REF>
    <XPD:REF name="Views[2]">4ULXOnbrvUal/LhpS6n4VQAA</XPD:REF>
    <XPD:REF name="Views[3]">iGFRnaWvrEiRKXb0PtyVrQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Connections[1]" type="UMLAssociationEnd" guid="3oOtHvPr+U6cLDHmG/lA7gAA">
    <XPD:ATTR name="Name" type="string">etre typée</XPD:ATTR>
    <XPD:ATTR name="Multiplicity" type="string">0..*</XPD:ATTR>
    <XPD:REF name="Association">/87XgZaNaUKOL2p6A/I2NgAA</XPD:REF>
    <XPD:REF name="Participant">i2ijl3LOuEiBCGcz48w6pgAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">Vb7wY9YweUqFek2ZewVzRQAA</XPD:REF>
    <XPD:REF name="Views[1]">HdTOy7YKlEi9ahp4fPpLHgAA</XPD:REF>
    <XPD:REF name="Views[2]">IfQT1yGLZk6TLNqYCkzz0QAA</XPD:REF>
    <XPD:REF name="Views[3]">ogK7hE4b8EWjgoFiQpod3AAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[11]" type="UMLClass" guid="4sY0UIdxKUm/dNUlms5FbgAA">
    <XPD:ATTR name="Name" type="string">listViewRcap : System.Winsows.Form.ListView</XPD:ATTR>
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">EaP0VE0XoECRJXrThuE4ewAA</XPD:REF>
    <XPD:REF name="Views[1]">GwaqgBGgOUiakWkoqnFgHAAA</XPD:REF>
    <XPD:REF name="Views[2]">PpUiIszr/kKLo4o69UX89AAA</XPD:REF>
    <XPD:REF name="Views[3]">6BILpaYQe0GksgnsbMPQswAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[12]" type="UMLClass" guid="8zYjWRCg202Xu8tyH9gL0wAA">
    <XPD:ATTR name="Name" type="string">DepenseCourante</XPD:ATTR>
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">cWSKHKabvEaS/TN08Rf5IgAA</XPD:REF>
    <XPD:REF name="Views[1]">2PW6jZ3mUU+SP82GYF8ziAAA</XPD:REF>
    <XPD:REF name="Views[2]">4U71axqLyE+pWQClZzKFQgAA</XPD:REF>
    <XPD:REF name="Views[3]">7EptZkL9GUCr6EymTqJ+lQAA</XPD:REF>
    <XPD:ATTR name="#Operations" type="integer">3</XPD:ATTR>
    <XPD:OBJ name="Operations[0]" type="UMLOperation" guid="9zyUCk9x9E6xMrqPzYLLyQAA">
    <XPD:ATTR name="Name" type="string">Ajouter</XPD:ATTR>
    <XPD:REF name="Owner">8zYjWRCg202Xu8tyH9gL0wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Operations[1]" type="UMLOperation" guid="9xUGNgfJYEyA+d2/29fsNAAA">
    <XPD:ATTR name="Name" type="string">Supprimer</XPD:ATTR>
    <XPD:REF name="Owner">8zYjWRCg202Xu8tyH9gL0wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Operations[2]" type="UMLOperation" guid="v6/oKLTG2EC6Qp/b05zhtQAA">
    <XPD:ATTR name="Name" type="string">Modifier</XPD:ATTR>
    <XPD:REF name="Owner">8zYjWRCg202Xu8tyH9gL0wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:ATTR name="#Associations" type="integer">3</XPD:ATTR>
    <XPD:REF name="Associations[0]">QHddDLMulEWfXThhmU/wigAA</XPD:REF>
    <XPD:REF name="Associations[1]">1RCkORg4AUGd5HVD3Ov61QAA</XPD:REF>
    <XPD:REF name="Associations[2]">nlbdKFuElkW2x3UKiPbhMAAA</XPD:REF>
    <XPD:ATTR name="#Attributes" type="integer">2</XPD:ATTR>
    <XPD:OBJ name="Attributes[0]" type="UMLAttribute" guid="FySIDq+WdEyBn5B8mwnu0AAA">
    <XPD:ATTR name="Name" type="string">code</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">String</XPD:ATTR>
    <XPD:REF name="Owner">8zYjWRCg202Xu8tyH9gL0wAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Attributes[1]" type="UMLAttribute" guid="A+17hcoFck+UrsrDmfaiMgAA">
    <XPD:ATTR name="Name" type="string">Libelle</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">String</XPD:ATTR>
    <XPD:REF name="Owner">8zYjWRCg202Xu8tyH9gL0wAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[13]" type="UMLClass" guid="fcMSd4jZyUeosuk8oBW6LQAA">
    <XPD:ATTR name="Name" type="string">Date</XPD:ATTR>
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">M+8vcmWgAU23DQjq2BRMyQAA</XPD:REF>
    <XPD:REF name="Views[1]">9/pCKDLjVEyOYPAzKxGSzgAA</XPD:REF>
    <XPD:REF name="Views[2]">sDWeVmlEo0q6S+WOUo3eRAAA</XPD:REF>
    <XPD:REF name="Views[3]">BEFzkLq3lkyMe0NnVhjcQgAA</XPD:REF>
    <XPD:ATTR name="#Associations" type="integer">2</XPD:ATTR>
    <XPD:REF name="Associations[0]">fu7tqVMWjE2uUXeW1LQVqQAA</XPD:REF>
    <XPD:REF name="Associations[1]">B84zfnEUVkiwRJwXmONf9wAA</XPD:REF>
    <XPD:ATTR name="#Attributes" type="integer">2</XPD:ATTR>
    <XPD:OBJ name="Attributes[0]" type="UMLAttribute" guid="MdPRzVZUQUaFxcPs4cdR3gAA">
    <XPD:ATTR name="Name" type="string">dtDeb  DateTime</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:REF name="Owner">fcMSd4jZyUeosuk8oBW6LQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Attributes[1]" type="UMLAttribute" guid="gjwgnsHDhUedj8ziKkjFBgAA">
    <XPD:ATTR name="Name" type="string">dtFin</XPD:ATTR>
    <XPD:ATTR name="Visibility" type="UMLVisibilityKind">vkPrivate</XPD:ATTR>
    <XPD:ATTR name="TypeExpression" type="string">DateTime</XPD:ATTR>
    <XPD:REF name="Owner">fcMSd4jZyUeosuk8oBW6LQAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[14]" type="UMLAssociation" guid="ygY20QkS4Uy6PCGkOR+H8AAA">
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Connections" type="integer">2</XPD:ATTR>
    <XPD:OBJ name="Connections[0]" type="UMLAssociationEnd" guid="fu7tqVMWjE2uUXeW1LQVqQAA">
    <XPD:ATTR name="IsNavigable" type="boolean">False</XPD:ATTR>
    <XPD:REF name="Association">ygY20QkS4Uy6PCGkOR+H8AAA</XPD:REF>
    <XPD:REF name="Participant">fcMSd4jZyUeosuk8oBW6LQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Connections[1]" type="UMLAssociationEnd" guid="QHddDLMulEWfXThhmU/wigAA">
    <XPD:REF name="Association">ygY20QkS4Uy6PCGkOR+H8AAA</XPD:REF>
    <XPD:REF name="Participant">8zYjWRCg202Xu8tyH9gL0wAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[15]" type="UMLAssociation" guid="f8BARRyz8ESRuvlzS1UqoAAA">
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">HvN/pt1txU68ZV5/AMIKAwAA</XPD:REF>
    <XPD:REF name="Views[1]">bK7qZIn1AUSyRDUbgEsrFwAA</XPD:REF>
    <XPD:REF name="Views[2]">HAgsUGz+zU67GbrtIBmkHAAA</XPD:REF>
    <XPD:REF name="Views[3]">uyjFcTFApk20k0NA1eTrxwAA</XPD:REF>
    <XPD:ATTR name="#Connections" type="integer">2</XPD:ATTR>
    <XPD:OBJ name="Connections[0]" type="UMLAssociationEnd" guid="1RCkORg4AUGd5HVD3Ov61QAA">
    <XPD:ATTR name="IsNavigable" type="boolean">False</XPD:ATTR>
    <XPD:REF name="Association">f8BARRyz8ESRuvlzS1UqoAAA</XPD:REF>
    <XPD:REF name="Participant">8zYjWRCg202Xu8tyH9gL0wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">vhpCDAAgtU+05J28tOP8nAAA</XPD:REF>
    <XPD:REF name="Views[1]">KK7tJrkm+UCz7Di6s9gJTQAA</XPD:REF>
    <XPD:REF name="Views[2]">hRmI4Sq/W06uDEhhm8WitgAA</XPD:REF>
    <XPD:REF name="Views[3]">TZfYSNPVNkyrOSsbVs70awAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Connections[1]" type="UMLAssociationEnd" guid="B84zfnEUVkiwRJwXmONf9wAA">
    <XPD:ATTR name="Multiplicity" type="string">0..1</XPD:ATTR>
    <XPD:REF name="Association">f8BARRyz8ESRuvlzS1UqoAAA</XPD:REF>
    <XPD:REF name="Participant">fcMSd4jZyUeosuk8oBW6LQAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">dogR6yQntUqYQ4QkdBoYQQAA</XPD:REF>
    <XPD:REF name="Views[1]">BA9kGG1moEC8DW5ufTc8LgAA</XPD:REF>
    <XPD:REF name="Views[2]">DV53UMXy9UCeNA62S7itRgAA</XPD:REF>
    <XPD:REF name="Views[3]">jvynGTeV0EykBSOxnRULnAAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    <XPD:OBJ name="OwnedElements[16]" type="UMLAssociation" guid="hrkTsTELL0ePbbPnLVYzPQAA">
    <XPD:REF name="Namespace">JZ0h0lNjPkKxYkgU9h2W7wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">f8aT3ZoxSUalsLC+3mj5ywAA</XPD:REF>
    <XPD:REF name="Views[1]">/uZvtnixm061i1rHNa2jCwAA</XPD:REF>
    <XPD:REF name="Views[2]">Flx23dxVqkyaDxyziDbC6wAA</XPD:REF>
    <XPD:REF name="Views[3]">xI3Jk8LJCUaAIZzoY60BWAAA</XPD:REF>
    <XPD:ATTR name="#Connections" type="integer">2</XPD:ATTR>
    <XPD:OBJ name="Connections[0]" type="UMLAssociationEnd" guid="/K/yY7KtokOD+Gw4rfOGFAAA">
    <XPD:ATTR name="IsNavigable" type="boolean">False</XPD:ATTR>
    <XPD:REF name="Association">hrkTsTELL0ePbbPnLVYzPQAA</XPD:REF>
    <XPD:REF name="Participant">k+Bwu4ywLUS4aCg/EW4YLwAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">ORGLpD0qjkmadgbHxVyZrQAA</XPD:REF>
    <XPD:REF name="Views[1]">mn5b2gRLi0qaaafjM6OuUwAA</XPD:REF>
    <XPD:REF name="Views[2]">3RltJT5Z3k2DSvjuFGndKAAA</XPD:REF>
    <XPD:REF name="Views[3]">e97C05pSOkmxMWK9ZWxehQAA</XPD:REF>
    </XPD:OBJ>
    <XPD:OBJ name="Connections[1]" type="UMLAssociationEnd" guid="nlbdKFuElkW2x3UKiPbhMAAA">
    <XPD:ATTR name="Multiplicity" type="string">0..*</XPD:ATTR>
    <XPD:REF name="Association">hrkTsTELL0ePbbPnLVYzPQAA</XPD:REF>
    <XPD:REF name="Participant">8zYjWRCg202Xu8tyH9gL0wAA</XPD:REF>
    <XPD:ATTR name="#Views" type="integer">4</XPD:ATTR>
    <XPD:REF name="Views[0]">wY0L28DUXEOjaSjRRriPkQAA</XPD:REF>
    <XPD:REF name="Views[1]">eIDkNvk2j0myZM2EJDjPhAAA</XPD:REF>
    <XPD:REF name="Views[2]">PfyvZFd80kaV0PFawFdB3wAA</XPD:REF>
    <XPD:REF name="Views[3]">uNyNAbB19UShYRwVhrf+6gAA</XPD:REF>
    </XPD:OBJ>
    </XPD:OBJ>
    </XPD:OBJ>

  4. #4
    Membre expérimenté Avatar de ctxnop
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2007
    Messages
    858
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Morbihan (Bretagne)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juillet 2007
    Messages : 858
    Points : 1 732
    Points
    1 732
    Par défaut
    euuuhhh non, ce n'est pas un log de compilation ...
    un log de compilation c'est ce qui apparait dans la fenêtre "sortie" de Visual Studio (il faut souvent l'afficher en allant dans "Affichage" -> "Sortie").
    Et ca ressemble à ca :
    ------ Début de la régénération globale : Projet : Shared, Configuration : Debug Any CPU ------
    C:\Windows\Microsoft.NET\Framework\v3.5\Csc.exe /noconfig /nowarn:1701,1702 /platform86 /errorreport:prompt /warn:4 /defineEBUG;TRACE /reference:"C:\Program Files (x86)\Common Files\Actipro Software\WindowsForms\Shared\v1.0.0094\ActiproSoftware.Shared.Net20.dll" /reference:"C:\Program Files (x86)\Actipro Software\WindowsForms\SyntaxEditor\v4.0.0270\ActiproSoftware.SyntaxEditor.Addons.DotNet.Net20.dll" /reference:"C:\Program Files (x86)\Actipro Software\WindowsForms\SyntaxEditor\v4.0.0270\ActiproSoftware.SyntaxEditor.Net20.dll" /reference:"C:\Program Files (x86)\Common Files\Actipro Software\WindowsForms\WinUICore\v1.0.0094\ActiproSoftware.WinUICore.Net20.dll" /reference:"C:\Program Files (x86)\DevExpress 2009.3\Components\Sources\DevExpress.DLL\DevExpress.Data.v9.3.dll" /reference:"C:\Program Files (x86)\DevExpress 2009.3\Components\Sources\DevExpress.DLL\DevExpress.Utils.v9.3.dll" /reference:"C:\Program Files (x86)\DevExpress 2009.3\Components\Sources\DevExpress.DLL\DevExpress.Xpo.v9.3.dll" /reference:"C:\Program Files (x86)\DevExpress 2009.3\Components\Sources\DevExpress.DLL\DevExpress.XtraBars.v9.3.dll" /reference:"C:\Program Files (x86)\DevExpress 2009.3\Components\Sources\DevExpress.DLL\DevExpress.XtraEditors.v9.3.dll" /reference:"C:\Program Files (x86)\DevExpress 2009.3\Components\Sources\DevExpress.DLL\DevExpress.XtraGrid.v9.3.dll" /reference:"C:\Program Files (x86)\DevExpress 2009.3\Components\Sources\DevExpress.DLL\DevExpress.XtraLayout.v9.3.dll" /reference:"C:\Program Files (x86)\DevExpress 2009.3\Components\Sources\DevExpress.DLL\DevExpress.XtraNavBar.v9.3.dll" /reference:"C:\Program Files (x86)\DevExpress 2009.3\Components\Sources\DevExpress.DLL\DevExpress.XtraPrinting.v9.3.dll" /reference:"C:\Program Files (x86)\DevExpress 2009.3\Components\Sources\DevExpress.DLL\DevExpress.XtraScheduler.v9.3.Core.dll" /reference:"C:\Program Files (x86)\DevExpress 2009.3\Components\Sources\DevExpress.DLL\DevExpress.XtraTreeList.v9.3.dll" /reference:"C:\Program Files (x86)\DevExpress 2009.3\Components\Sources\DevExpress.DLL\DevExpress.XtraVerticalGrid.v9.3.dll" /reference:"C:\Program Files (x86)\Microsoft SQL Server\100\SDK\Assemblies\Microsoft.SqlServer.ConnectionInfo.dll" /reference:"C:\Program Files (x86)\Microsoft SQL Server\100\SDK\Assemblies\Microsoft.SqlServer.Management.Sdk.Sfc.dll" /reference:"C:\Program Files (x86)\Microsoft SQL Server\100\SDK\Assemblies\Microsoft.SqlServer.Smo.dll" /reference:"C:\Program Files (x86)\Microsoft SQL Server\100\SDK\Assemblies\Microsoft.SqlServer.SqlEnum.dll" /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll" /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Data.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Design.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Security.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll /debug+ /debug:full /optimize- /out:obj\Debug\Shared.dll /resource:obj\Debug\Shared.Advisor.AdvSyntaxEditor.resources /resource:obj\Debug\Shared.Properties.Resources.resources /target:library Advisor\AdvSyntaxEditor.cs Advisor\AdvSyntaxEditor.Designer.cs Advisor\AdvSyntaxUITypeEditor.cs CommonObjects\AccessTypeAttribute.cs CommonObjects\AdvEffectiveRights.cs CommonObjects\Advisor.cs CommonObjects\AdvisorAttributes.cs CommonObjects\AdvisorAttributesComplement.cs CommonObjects\AgSqlParameter.cs CommonObjects\BatchProcessingProxy.cs CommonObjects\DataObjectsInjector.cs CommonObjects\DatetimeValueConverter.cs CommonObjects\SysUserColumnAttribute.cs CommonObjects\XmlPropertiesLogSerializer.cs CommonObjects\NUnitItem.cs CommonObjects\NUnitLogger.cs CommonObjects\NUnitRealProxies.cs CommonObjects\SortableBindingList.cs CommonObjects\BrokenRuleInfo.cs CommonObjects\ClientSessionInfos.cs CommonObjects\ConvertShortDateFunctionOperator.cs CommonObjects\SysSourceObjectAttribute.cs CommonObjects\SysSourceColumnAttribute.cs CommonObjects\DataFunctionAttribute.cs CommonObjects\KeyValue.cs CommonObjects\IntEnumConverter.cs CommonObjects\LogTableAttribute.cs CommonObjects\DataEventCache.cs CommonObjects\ObjectRights.cs CommonObjects\StackMarkers.cs CommonObjects\SysInterfaceControlAttribute.cs CommonObjects\XmlPropertiesMappingSerializer.cs Crypter\LicenseCypher.cs Crypter\MD5Crypter.cs DataAccessLayer\XpoDataStoreLogger.cs DataAccessLayer\XpoSqlProvider\AgSqlConnectionProvider.cs DataObjects\data_Stbl_Hrc_Drp.cs Definitions\DataCompare.cs Definitions\DataCompareOption.cs Definitions\DataDifference.cs EventsLayer\BatchProcessingItemTreatedEventArgs.cs EventsLayer\BrokenRulesUpdatedEventArgs.cs EventsLayer\ControlBoxFocusChangedEventArgs.cs EventsLayer\InfoMessageChangedEventArgs.cs EventsLayer\RowCellColumnOptionsEventArgs.cs Exceptions\BeforeTransactionBeginException.cs Exceptions\DisposedObjectException.cs Exceptions\LicenseException.cs Exceptions\InvalidScriptVersionException.cs Exceptions\NotAllowedException.cs Extensions\StringExtensions.cs Import\ReplicationDataSchema.cs Import\ReplicationDataSchemaDictionary.cs Import\ReplicationDataSetQuery.cs Import\ReplicationDataTableQuery.cs Interfaces\IInfoMessageChanged.cs Interfaces\IAdvisorControl.cs Interfaces\IDetail.cs Interfaces\IDetailForm.cs Interfaces\IFormResult.cs Interfaces\Settings\Affaires\Iserver_Ttbl_Aff_Chf_Mrg.cs Interfaces\Settings\Affaires\Iserver_Ttbl_Aff_Elt.cs Interfaces\Settings\Affaires\Iserver_Ttbl_Aff_Lnk.cs Interfaces\Settings\Affaires\Iserver_Ttbl_Aff_Mnt_Unt.cs Interfaces\Settings\Besoin\Iserver_Btbl_Bsn_Afc.cs Interfaces\Settings\Besoin\Iserver_Btbl_Bsn_Brt.cs Interfaces\Settings\Besoin\Iserver_Btbl_Bsn_Cdc.cs Interfaces\Settings\Hierarchie\Iserver_Atbl_Hrc_P.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_Banque.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_CategorieMetier.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_RegimeTVA.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_UniteOeuvre.cs Interfaces\Settings\Isettings_Base.cs Interfaces\Settings\Nomenclature\Iserver_Ttbl_Aff_Elt_Chf_Nom.cs Interfaces\Settings\Production\Iserver_Ttbl_Ord.cs Interfaces\Settings\Produits\Iserver_Atbl_Prd_Mod_Fab_Alt.cs Interfaces\Settings\Nomenclature\Iserver_Atbl_Nom.cs Interfaces\Settings\Gamme\Iserver_Atbl_Gam.cs Interfaces\Settings\Ressources\Iserver_Atbl_Otl.cs Interfaces\Settings\Ressources\Iserver_Atbl_Mif.cs Interfaces\Settings\Ressources\Iserver_Atbl_Mch.cs Interfaces\Settings\Ressources\Iserver_Atbl_Bsc.cs Interfaces\Settings\Hierarchie\Iserver_Atbl_Hrc.cs Interfaces\Settings\Stocks\Iserver_Atbl_Stk_Opn.cs Interfaces\Settings\Stocks\Iserver_Ktbl_Inv_Val.cs Interfaces\Settings\Stocks\Iserver_Ktbl_Inv_Val_Lig.cs Interfaces\Settings\Stocks\Iserver_Ktbl_Stk_Alc.cs Interfaces\Settings\Stocks\Iserver_Ktbl_Dsk_Stk_Lig.cs Interfaces\Settings\Stocks\Iserver_Ktbl_Dsk_Stk.cs Interfaces\Settings\Structure\Iserver_Atbl_Dpt.cs Interfaces\Settings\Structure\Iserver_Atbl_Emp.cs Interfaces\Settings\Structure\Iserver_Atbl_Emp_Typ.cs Interfaces\Settings\Structure\Iserver_Atbl_Mag.cs Interfaces\Settings\Structure\Iserver_Atbl_Opr.cs Interfaces\Settings\Structure\Iserver_Atbl_Zne.cs Interfaces\Settings\Tarifs\Iserver_Atbl_Cli_Trf_Lig.cs Interfaces\Settings\Tarifs\Iserver_Atbl_Trf_Cli.cs Interfaces\Settings\Tarifs\Iserver_Atbl_Trf_Fam.cs Interfaces\Settings\Transport\Iserver_Atbl_Trf_Trp_Nat.cs Extensions\LinQExtensions.cs MetaData\SysUserObjectRightsDictionary.cs MetaData\SysSettingParameterDictionary.cs Remoting\AccessUserSponsor.cs Remoting\ObjectSponsor.cs Scripting\FormulasAssemblyDictionary.cs CommonObjects\DetailFormKey.cs CommonObjects\FormFactory.cs CommonObjects\XpoBaseObject.cs DataAccessLayer\BusinessFunctions\Tarif.cs DataAccessLayer\BusinessFunctions\TarifTransport.cs DataAccessLayer\DataSession.cs DataAccessLayer\XpoCompiler.cs EventsLayer\DetailResetErrorEventArgs.cs EventsLayer\PropertyUpdatingEventArgs.cs EventsLayer\DetailNewEventArgs.cs EventsLayer\DetailSavingEventArgs.cs Definitions\InfoTypes.cs EventsLayer\DetailChangedEventArgs.cs Exceptions\GeneralWarning.cs Exceptions\WizardTypeException.cs Interfaces\IAdvisor.cs Interfaces\IDetailSavedForm.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Cli_Sts_Prt.cs Plugins\AbstractPlugin.cs Plugins\IExplorerForm.cs Plugins\IExplorerMdiChild.cs Interfaces\IObjectBottomTab.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Cli_Fac_Sts.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Frn_Ofr.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Frn_Prf.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Frn_Prp.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Frn_Liv.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Frn_Fac.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Frn_Cde.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Frn.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Cli_Fac.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Cli_Liv.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Cli_Prd_Lig_Csg.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Cli_Prp.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Cli_Cde.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Cli_Ofr.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Cli_Prf.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Cli_Sts_Sgn.cs Interfaces\Settings\Impressions\Iserver_Stbl_ReportPrinter.cs Interfaces\Settings\Impressions\Iserver_Stbl_ReportScenario.cs Interfaces\Settings\Impressions\Iserver_Stbl_ReportScenarioLigne.cs Interfaces\Settings\Impressions\Iserver_Stbl_ReportScenarioPage.cs Interfaces\Settings\Produits\Iserver_Atbl_Prd_Gfs.cs Interfaces\Settings\Produits\Iserver_Atbl_Prd_Gfs_Cls.cs Interfaces\Settings\Produits\Iserver_Atbl_Prd_Gfs_Unt.cs Interfaces\Settings\Produits\Iserver_Atbl_Prd_Gfs_Unt_Prf.cs Interfaces\Settings\Structure\Iserver_Atbl_Cht.cs Interfaces\Settings\Structure\Iserver_Atbl_Cht_Trs.cs Interfaces\Settings\ProduitsVentes\Iserver_Atbl_Prd_Vnt.cs Interfaces\Settings\ProduitsVentes\Iserver_Atbl_Prd_Vnt_Cls.cs Interfaces\Settings\ProduitsVentes\Iserver_Atbl_Prd_Vnt_Nom.cs Interfaces\Settings\ProduitsVentes\Iserver_Atbl_Prd_Vnt_Unt.cs Interfaces\Settings\ProduitsVentes\Iserver_Atbl_Prd_Vnt_Unt_Prf.cs Interfaces\Settings\Structure\Iserver_Atbl_Cli_Blc.cs Interfaces\Settings\Structure\Iserver_Atbl_Mot_Exl.cs Interfaces\Settings\Tarifs\Iserver_Atbl_Trf_Cdt_Gfs.cs Interfaces\Settings\Tarifs\Iserver_Atbl_Crt_Com.cs Interfaces\Settings\Tarifs\Iserver_Atbl_Trf_Cdt_Vnt.cs Interfaces\Settings\Tarifs\Iserver_Atbl_Trf_Plg.cs Interfaces\Settings\Transport\Iserver_Atbl_Trf_Trp_Mod.cs Interfaces\Settings\Transport\Iserver_Atbl_Vhc.cs Interfaces\Settings\Transport\Iserver_Ctbl_Vhc_Mvt.cs Interfaces\Settings\Transport\Iserver_Ctbl_Vhc_Pes.cs Interfaces\Settings\Tresorerie\Iserver_Ftbl_Doc_Rgl_Lig.cs MetaData\PropertiesModifier.cs Plugins\IExplorerPlugin.cs Plugins\IReportingDesignerCom.cs Ressources\AgImageCollection.cs Ressources\AgPictureEdit.cs Ressources\AgRepositoryItemPictureEdit.cs Ressources\AgResManager.cs Ressources\CResFile.cs Ressources\CResItem.cs Ressources\CResManager.cs Ressources\ResItemDef.cs Scripting\ScriptChecker.cs SqlServer\SqlLogin.cs SqlServer\SqlLogonInfo.cs CommonObjects\DataDetails.cs CommonObjects\DataDetail.cs CommonObjects\Details.cs CommonObjects\Compare.cs CommonObjects\DataFixedSqlAttribute.cs CommonObjects\DetailPrimaryKey.cs CommonObjects\DataViewAttribute.cs CommonObjects\EventAttribute.cs Crypter\AESCrypter.cs Crypter\CrypterKeys.cs Crypter\PasswordGenerator.cs EventsLayer\DataModelLoadedEventArgs.cs EventsLayer\FocusedCellChangedEventArgs.cs EventsLayer\StateChangedEventArgs.cs Exceptions\LoginCreationException.cs Exceptions\ReadingConfigurationException.cs Exceptions\InvalidXmlVersionException.cs Interfaces\Settings\Appros\Iserver_Ctbl_Rpr_Dmd.cs Interfaces\Settings\Structure\Iserver_Atbl_Cct.cs Interfaces\Settings\Structure\Iserver_Atbl_Geo_Cp.cs Interfaces\Settings\Structure\Iserver_Atbl_Geo_Dep.cs Interfaces\Settings\Structure\Iserver_Atbl_Geo_Pys.cs Interfaces\Settings\Structure\Iserver_Atbl_Geo_Rgn.cs Interfaces\Settings\Structure\Iserver_Atbl_Geo_Vil.cs Interfaces\Settings\Structure\Iserver_Atbl_Ste.cs Interfaces\Settings\Transport\Iserver_Atbl_Trf_Dec.cs Interfaces\Settings\Tresorerie\Iserver_Ftbl_Doc_Rgl.cs Scripting\ScriptableDetail.cs Scripting\ScriptableDetailCollection.cs Scripting\ScriptableDetailEnumerator.cs Interfaces\IControl.cs Interfaces\IDataModel.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Cli.cs Interfaces\Settings\Comptabilite\Iserver_Atbl_Cpb_Exe.cs Interfaces\Settings\Comptabilite\Iserver_Atbl_Cpb_Pde.cs Interfaces\Settings\Transport\Iserver_Atbl_Trf_Trp_Plg.cs Interfaces\Settings\Tresorerie\Iserver_Ftbl_Cpb_Ecr_Cpb.cs CommonObjects\ModelCustomProperties.cs Exceptions\EvalFormulaException.cs Interfaces\Settings\Idata_Stbl_Object_Formula.cs CommonObjects\ModelFieldIdentity.cs Scripting\FormulaFieldIndexer.cs Scripting\FormulaAttribute.cs Scripting\IScriptableDetailCollection.cs Scripting\IScriptableDetail.cs Scripting\FormulaBase.cs Scripting\FormulasCompiler.cs CommonObjects\ScriptBase.cs CommonObjects\TreeListField.cs CommonObjects\TreeListFieldsGroup.cs CommonObjects\TreeListGroup.cs CommonObjects\TreeListGroupGeneric.cs CommonObjects\TreeListObject.cs CommonObjects\XmlDataObjectDictionarySerializer.cs CommonObjects\DataObjectsSaver.cs CommonObjects\XmlDataObjectListSerializer.cs CommonObjects\DataObjectBindingList.cs CommonObjects\ServerProxy.cs CommonObjects\XmlDataObjectCollectionSerializer.cs CommonObjects\XmlDataObjectSerializer.cs DataObjects\DataDefaultValue.cs DataObjects\DataResource.cs DataObjects\DataCalendar.cs Definitions\Constants.cs Definitions\Enums.cs Definitions\Utils.cs CommonObjects\ClassMappingAttribute.cs Definitions\XmlUtils.cs EventsLayer\BatchProcessingProgressEventArgs.cs EventsLayer\BatchProcessingStartedEventArgs.cs EventsLayer\DetailSavedEventArgs.cs EventsLayer\RemovedItemEventArgs.cs EventsLayer\MessagePostedEventArgs.cs EventsLayer\BatchProcessingEndedEventArgs.cs Exceptions\AccessUserGuidException.cs Exceptions\AccountingIntegrationException.cs Exceptions\AccountingIntegrationWarning.cs Exceptions\AgWarning.cs Exceptions\ClassSettingException.cs Exceptions\ConnectToFolderException.cs Exceptions\ConnectToServerException.cs Exceptions\ConnectUserToFolderException.cs Exceptions\AgException.cs Exceptions\InvalidSettingParameterTypeException.cs Exceptions\InvalidSettingParameterException.cs Exceptions\UndefinedLinkedClassObjectException.cs Exceptions\InvalidOperationException.cs Exceptions\InvalidOperationWarning.cs Exceptions\ScriptLookUpListException.cs Exceptions\SelectCompilationException.cs Exceptions\LockedObjectException.cs Exceptions\ReferentialIntegrityException.cs Exceptions\ScriptCompilationException.cs Exceptions\ScriptTypeException.cs Exceptions\ValidationRuleException.cs Exceptions\ValueFormatException.cs Exceptions\DefaultValueException.cs Exceptions\DetailCollectionAddingException.cs Exceptions\DataAccessLayerException.cs Exceptions\NotAvailableException.cs Exceptions\DetailCompilationException.cs Exceptions\ScriptAssemblyException.cs Exceptions\DetailCollectionSavingException.cs Exceptions\DataObjectListSavingException.cs Exceptions\SettingEventException.cs Exceptions\SysUserObjectException.cs Exceptions\DetailTypeException.cs Exceptions\InvalidConstructorArgumentException.cs Exceptions\DataObjectLoadingException.cs Exceptions\DetailsLoadingException.cs Exceptions\CreateControlException.cs Exceptions\CreateServerInstanceException.cs Exceptions\DataObjectSavingException.cs Exceptions\DetailLoadingException.cs Exceptions\DetailSavingException.cs Exceptions\FieldNotFoundException.cs Exceptions\InvalidLookUpListException.cs Exceptions\SetFieldValueException.cs Exceptions\SubDetailsNotFoundException.cs Exceptions\SysTemplatedObjectException.cs Exceptions\UndefinedModeException.cs Interfaces\IBatchProcessing.cs Interfaces\IDataObjectDictionary.cs Interfaces\IDetails.cs Interfaces\ILockInfo.cs Interfaces\IService.cs Interfaces\ITreeListObject.cs Interfaces\Settings\Comptabilite\Iserver_Atbl_Cpb_Cpt.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_Activite.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_CentreGestion.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_CleCompte.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_CodeTVA.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_DelaiReglement.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_ImputationAnalytique.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_ModePaiement.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_NatureClient.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_Secteur.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_SiteInformatique.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_SocieteJuridique.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_SousFamille.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_TypeActivite.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_TypeClient.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_TypeSousFamille.cs Interfaces\Settings\Iris\Iserver_Stbl_Iris_Notif.cs Interfaces\Settings\Iris\Iserver_Stbl_Iris_Synchro.cs Interfaces\Settings\Structure\Iserver_Atbl_Adr.cs Interfaces\Settings\Structure\Iserver_Atbl_Cli.cs Interfaces\Settings\Structure\Iserver_Atbl_Frn.cs Interfaces\Settings\Iris\Iserver_Atbl_Iris_DatesClotures.cs Interfaces\Settings\Structure\Iserver_Atbl_RIB.cs Interfaces\Settings\Structure\Iserver_Atbl_TVA.cs Interfaces\Settings\Structure\IServer_Atbl_TVA_Val.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Cli_Cpb_Int.cs Interfaces\Settings\Documents\Iserver_Ctbl_Doc_Frn_Cpb_Int.cs Interfaces\Settings\Tresorerie\Iserver_Ftbl_Doc_Rgl_Int.cs MetaData\AccessTypeClassInfo.cs MetaData\DataObjectClassInfoDictionary.cs MetaData\DetailClassInfo.cs CommonObjects\ServerDetailProxy.cs CommonObjects\ServerDetailsProxy.cs CommonObjects\GenericEnumerator.cs CommonObjects\DataJoinAttribute.cs CommonObjects\ReadOnlyDictionary.cs CommonObjects\DataDictionaryAttribute.cs CommonObjects\DataCollectionAttribute.cs CommonObjects\DataFieldAttribute.cs CommonObjects\DataForeignKeyAttribute.cs CommonObjects\DataKeyAttribute.cs CommonObjects\DataSortingAttribute.cs CommonObjects\DataTableAttribute.cs CommonObjects\FolderInfo.cs CommonObjects\UserLogin.cs CommonObjects\SysSubDetailAttribute.cs CommonObjects\SysTemplatedColumnAttribute.cs CommonObjects\SysTemplatedObjectAttribute.cs DataAccessLayer\DataAccess.cs DataAccessLayer\DataLoader.cs EventsLayer\AddedItemEventArgs.cs EventsLayer\ItemLoadedEventArgs.cs EventsLayer\PropertyUpdatedEventArgs.cs EventsLayer\LockBindingChangedEventArgs.cs Interfaces\IAccessUser.cs Interfaces\IDetailClassInfoLoader.cs Interfaces\IRemoteServerDetails.cs Interfaces\IClient.cs Interfaces\IDataDetails.cs Interfaces\IDataDetail.cs Interfaces\IClientDetails.cs Interfaces\INotifyPropertyUpdating.cs Interfaces\INotifyPropertyUpdated.cs Interfaces\IServer.cs Interfaces\IRemoteServerDetail.cs Interfaces\IFolder.cs Interfaces\IClientDetail.cs Interfaces\IDataObjectClassInfoLoader.cs Interfaces\IDataLoader.cs MetaData\DetailClassInfoDictionary.cs MetaData\SysTemplatedObjectDictionary.cs MetaData\SysUserObjectDictionary.cs Properties\AssemblyInfo.cs Properties\Resources.Designer.cs Scripting\Formulas.cs Scripting\ILookUpListScript.cs Scripting\LookUpListScript.cs Scripting\ScriptCompiler.cs DataObjects\data_Stbl_Object_Formula.cs SqlServer\SqlLoginManager.cs SystemObjects\GetReferentialIntegrity.cs SystemObjects\SysSourceClassObject.cs SystemObjects\SysSourceClassColumn.cs SystemObjects\SysSchemaView.cs SystemObjects\SysBasisDiagnostics.cs SystemObjects\SysBasisDiagnosticsDatasources.cs SystemObjects\SysImportConnections.cs SystemObjects\SysImportDataSources.cs SystemObjects\SysImportDestinationClasse.cs SystemObjects\SysImportFilter.cs SystemObjects\SysImportMapping.cs SystemObjects\SysImportMappingClassObject.cs SystemObjects\SysImportProviders.cs SystemObjects\SysImportScenario.cs SystemObjects\SysMappingObject.cs SystemObjects\SysInterfaceFormLayout.cs SystemObjects\DatawarehouseFactTable.cs SystemObjects\DatawarehouseFactTableColumn.cs SystemObjects\DatawarehouseFactTableJoinedObject.cs SystemObjects\DatawarehouseObjectsList.cs SystemObjects\DatawarehouseOlapObject.cs SystemObjects\DataWarehouseTableMapping.cs SystemObjects\GetRightsMenu.cs SystemObjects\SysReplicationClassColumn.cs SystemObjects\SysReplicationClassObject.cs SystemObjects\SysReplicationPublication.cs SystemObjects\SysReplicationSubscriber.cs SystemObjects\SysAccessObject.cs SystemObjects\SysAccessUserGroupProfile.cs SystemObjects\SysBasisLookUpListExcludeAddFunction.cs SystemObjects\SysBasisLookUpListPrimitiveOverride.cs SystemObjects\SysInterfaceAnalysis.cs SystemObjects\SysInterfaceAnalysisControl.cs SystemObjects\SysInterfaceAnalysisPage.cs SystemObjects\SysInterfaceCustomEditor.cs SystemObjects\GetInterfaceMainMenu.cs SystemObjects\GetInterfaceMainMenuManagement.cs SystemObjects\SysAccessGroup.cs SystemObjects\SysAccessGroupProfile.cs SystemObjects\SysAccessProfile.cs SystemObjects\SysAccessUserGroup.cs SystemObjects\SysBasisFormat.cs SystemObjects\SysBasisHeader.cs SystemObjects\SysBasisImage.cs SystemObjects\SysBasisLongName.cs SystemObjects\SysBasisLookUpListPrimitive.cs SystemObjects\SysBasisProfile.cs SystemObjects\SysClassColumn.cs SystemObjects\SysClassObject.cs SystemObjects\SysInterfaceAddFunction.cs SystemObjects\SysInterfaceControl.cs SystemObjects\SysInterfaceCustomForm.cs SystemObjects\SysInterfaceMainMenu.cs SystemObjects\SysInterfaceMainMenuCommand.cs SystemObjects\SysInterfaceReportForm.cs SystemObjects\SysInterfaceReportProcedure.cs SystemObjects\SysInterfaceReportStyle.cs SystemObjects\SysInterfaceSelectAddFunction.cs SystemObjects\SysInterfaceSelectFilter.cs SystemObjects\SysInterfaceSelectFilterDetail.cs SystemObjects\SysInterfaceSelectForm.cs SystemObjects\SysInterfaceWizard.cs SystemObjects\SysMappingForm.cs SystemObjects\SysSchemaColumn.cs SystemObjects\SysSchemaTable.cs SystemObjects\SysTemplateColumn.cs SystemObjects\SysUserImportFilter.cs SystemObjects\SysUserInterfaceAddFunction.cs SystemObjects\SysUserInterfaceReportForm.cs SystemObjects\SysUserInterfaceSelectFilterMisc.cs SystemObjects\SysUserInterfaceSelectFilterOperator.cs SystemObjects\SysUserListValue.cs SystemObjects\SysBasisListValue.cs SystemObjects\SysInterfaceForm.cs SystemObjects\SysUserInterfaceBindedControl.cs SystemObjects\GetInterfaceMainMenuAdministrator.cs SystemObjects\GetInterfaceMainMenuBase.cs SystemObjects\SysAccessColumn.cs SystemObjects\SysBasisCaption.cs SystemObjects\SysBasisDefaultValue.cs SystemObjects\SysBasisDescription.cs SystemObjects\SysBasisLanguage.cs SystemObjects\SysBasisValidationRule.cs SystemObjects\SysClassPrimaryKey.cs SystemObjects\SysFormObjectParent.cs SystemObjects\SysInterfaceReport.cs SystemObjects\SysReferentialIntegrityRule.cs SystemObjects\SysSettingClassObject.cs SystemObjects\SysSettingParameter.cs SystemObjects\SysUserClassObjectParent.cs SystemObjects\SysSelectColumn.cs SystemObjects\SysAccessUser.cs SystemObjects\SysBasisLookUpList.cs SystemObjects\SysInterfaceSelectView.cs SystemObjects\SysUserColumn.cs SystemObjects\SysUserInterfaceSelectView.cs SystemObjects\SysUserMappingForm.cs SystemObjects\SysUserObject.cs CommonObjects\DataObjectCollection.cs SystemObjects\SysTemplatedColumn.cs MetaData\DataObjectClassInfo.cs SystemObjects\SysTemplatedObject.cs SystemObjects\SysObjectPrimaryKey.cs CommonObjects\DataObject.cs SystemObjects\SysUserInterfaceControl.cs SystemObjects\SysUserInterfaceForm.cs MetaData\DynamicMethodCompiler.cs CommonObjects\DataObjectDictionary.cs SystemObjects\SysClassObjectParent.cs SystemObjects\SysUserMappingObject.cs SystemObjects\SysSettingClassColumn.cs Interfaces\IDataObject.cs Interfaces\IDataObjectCollection.cs
    E:\projets\mon_projet\Shared\Interfaces\Settings\Nomenclature\Iserver_Ttbl_Aff_Elt_Chf_Nom.cs(2,7): avertissement CS0105: La directive using de 'System' est apparue précédemment dans cet espace de noms
    E:\projets\mon_projet\Shared\CommonObjects\AdvisorAttributes.cs(310,22): avertissement CS0659: 'Shared.CommonObjects.AdvDeletionAttribute' se substitue à Object.Equals(object o) mais pas à Object.GetHashCode()
    E:\projets\mon_projet\Shared\Interfaces\IRemoteServerDetails.cs(22,29): avertissement CS0108: 'Shared.Interfaces.IRemoteServerDetails.this[Shared.CommonObjects.DetailPrimaryKey]' masque le membre hérité 'Shared.Interfaces.IDataDetails.this[Shared.CommonObjects.DetailPrimaryKey]'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetails.cs(20,21) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IRemoteServerDetails.cs(24,29): avertissement CS0108: 'Shared.Interfaces.IRemoteServerDetails.this[int]' masque le membre hérité 'Shared.Interfaces.IDataDetails.this[int]'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetails.cs(22,21) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IRemoteServerDetails.cs(26,29): avertissement CS0108: 'Shared.Interfaces.IRemoteServerDetails.AddNew()' masque le membre hérité 'Shared.Interfaces.IDataDetails.AddNew()'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetails.cs(52,21) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IRemoteServerDetails.cs(28,14): avertissement CS0108: 'Shared.Interfaces.IRemoteServerDetails.RemoveItem(Shared.CommonObjects.DetailPrimaryKey)' masque le membre hérité 'Shared.Interfaces.IDataDetails.RemoveItem(Shared.CommonObjects.DetailPrimaryKey)'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetails.cs(78,14) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IRemoteServerDetails.cs(30,14): avertissement CS0108: 'Shared.Interfaces.IRemoteServerDetails.RemoveItem(int)' masque le membre hérité 'Shared.Interfaces.IDataDetails.RemoveItem(int)'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetails.cs(80,14) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IRemoteServerDetails.cs(32,14): avertissement CS0108: 'Shared.Interfaces.IRemoteServerDetails.Clear()' masque le membre hérité 'Shared.Interfaces.IDataDetails.Clear()'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetails.cs(76,14) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IClientDetails.cs(18,23): avertissement CS0108: 'Shared.Interfaces.IClientDetails.this[Shared.CommonObjects.DetailPrimaryKey]' masque le membre hérité 'Shared.Interfaces.IDataDetails.this[Shared.CommonObjects.DetailPrimaryKey]'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetails.cs(20,21) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IClientDetails.cs(19,23): avertissement CS0108: 'Shared.Interfaces.IClientDetails.this[int]' masque le membre hérité 'Shared.Interfaces.IDataDetails.this[int]'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetails.cs(22,21) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IClientDetails.cs(20,23): avertissement CS0108: 'Shared.Interfaces.IClientDetails.AddNew()' masque le membre hérité 'Shared.Interfaces.IDataDetails.AddNew()'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetails.cs(52,21) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IClientDetails.cs(22,14): avertissement CS0108: 'Shared.Interfaces.IClientDetails.RemoveItem(int)' masque le membre hérité 'Shared.Interfaces.IDataDetails.RemoveItem(int)'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetails.cs(80,14) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IClientDetails.cs(23,14): avertissement CS0108: 'Shared.Interfaces.IClientDetails.RemoveItem(Shared.CommonObjects.DetailPrimaryKey)' masque le membre hérité 'Shared.Interfaces.IDataDetails.RemoveItem(Shared.CommonObjects.DetailPrimaryKey)'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetails.cs(78,14) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IDataDetail.cs(52,16): avertissement CS0108: 'Shared.Interfaces.IDataDetail.ClassObjectIdExt' masque le membre hérité 'Shared.Interfaces.IDetail.ClassObjectIdExt'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDetail.cs(22,16) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IDataDetail.cs(54,16): avertissement CS0108: 'Shared.Interfaces.IDataDetail.LinkedClassObjectId' masque le membre hérité 'Shared.Interfaces.IDetail.LinkedClassObjectId'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDetail.cs(23,16) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IDataDetail.cs(78,14): avertissement CS0108: 'Shared.Interfaces.IDataDetail.RefreshField(string)' masque le membre hérité 'Shared.Interfaces.IDetail.RefreshField(string)'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDetail.cs(28,14) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IDataDetail.cs(80,26): avertissement CS0108: 'Shared.Interfaces.IDataDetail.Mode' masque le membre hérité 'Shared.Interfaces.IDetail.Mode'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDetail.cs(21,26) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IDataDetail.cs(88,14): avertissement CS0108: 'Shared.Interfaces.IDataDetail.SetFieldDefaultValue(string)' masque le membre hérité 'Shared.Interfaces.IDetail.SetFieldDefaultValue(string)'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDetail.cs(26,14) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IClientDetail.cs(62,24): avertissement CS0108: 'Shared.Interfaces.IClientDetail.GetSubDetails(string)' masque le membre hérité 'Shared.Interfaces.IDataDetail.GetSubDetails(string)'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetail.cs(60,22) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IClientDetail.cs(69,21): avertissement CS0108: 'Shared.Interfaces.IClientDetail.GetSubDetails<I>()' masque le membre hérité 'Shared.Interfaces.IDetail.GetSubDetails<I>()'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDetail.cs(30,21) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IClientDetail.cs(101,16): avertissement CS0108: 'Shared.Interfaces.IClientDetail.LinkedClassObjectId' masque le membre hérité 'Shared.Interfaces.IDataDetail.LinkedClassObjectId'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetail.cs(54,16) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\CommonObjects\XmlDataObjectDictionarySerializer.cs(19,25): avertissement CS0109: Le membre 'Shared.CommonObjects.XmlDataObjectDictionarySerializer.Serialize(Shared.Interfaces.IDataObjectDictionary, bool, out byte[])' ne masque pas un membre hérité. Le mot clé new n'est pas requis.
    E:\projets\mon_projet\Shared\CommonObjects\XmlDataObjectDictionarySerializer.cs(24,25): avertissement CS0109: Le membre 'Shared.CommonObjects.XmlDataObjectDictionarySerializer.Serialize(Shared.Interfaces.IDataObjectDictionary, bool, System.IO.Stream)' ne masque pas un membre hérité. Le mot clé new n'est pas requis.
    E:\projets\mon_projet\Shared\Interfaces\IRemoteServerDetail.cs(32,30): avertissement CS0108: 'Shared.Interfaces.IRemoteServerDetail.GetSubDetails(string)' masque le membre hérité 'Shared.Interfaces.IDataDetail.GetSubDetails(string)'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetail.cs(60,22) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IRemoteServerDetail.cs(34,21): avertissement CS0108: 'Shared.Interfaces.IRemoteServerDetail.GetSubDetails<I>()' masque le membre hérité 'Shared.Interfaces.IDetail.GetSubDetails<I>()'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDetail.cs(30,21) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\Interfaces\IRemoteServerDetail.cs(38,30): avertissement CS0108: 'Shared.Interfaces.IRemoteServerDetail.GetBrokenRules(string)' masque le membre hérité 'Shared.Interfaces.IDataDetail.GetBrokenRules(string)'. Utilisez le mot clé new si le masquage est intentionnel.
    E:\projets\mon_projet\Shared\Interfaces\IDataDetail.cs(68,30) : (Emplacement concerné)
    E:\projets\mon_projet\Shared\CommonObjects\TreeListObject.cs(83,21): avertissement CS0472: Le résultat de l'expression est toujours 'false', car une valeur de type 'int' n'est jamais égale à 'null' du type 'int?'
    E:\projets\mon_projet\Shared\CommonObjects\TreeListObject.cs(195,18): avertissement CS0168: La variable 'type' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\CommonObjects\TreeListObject.cs(196,20): avertissement CS0168: La variable 'XmlName' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\CommonObjects\TreeListObject.cs(197,20): avertissement CS0168: La variable 'XmlValue' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\CommonObjects\TreeListObject.cs(198,33): avertissement CS0168: La variable 'accFieldInfo' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\Ressources\CResFile.cs(188,38): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\CommonObjects\XpoBaseObject.cs(23,35): avertissement CS0618: 'DevExpress.Xpo.ObjectChangeEventArgs.ObjectChangeEventArgs(DevExpress.Xpo.ObjectChangeReason)' est obsolète : 'Use ObjectChangeEventArgs(Session session, object theObject, ObjectChangeReason reason) instead'
    E:\projets\mon_projet\Shared\CommonObjects\IntEnumConverter.cs(44,34): avertissement CS0168: La variable 'exception' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\CommonObjects\IntEnumConverter.cs(60,34): avertissement CS0168: La variable 'exception' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\MetaData\DetailClassInfo.cs(540,29): avertissement CS0184: L'expression donnée n'est jamais du type fourni ('string')
    E:\projets\mon_projet\Shared\Scripting\FormulaBase.cs(75,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\Scripting\FormulaBase.cs(95,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\Ressources\CResManager.cs(181,4): avertissement CS0162: Impossible d'atteindre le code détecté
    E:\projets\mon_projet\Shared\DataAccessLayer\DataAccess.cs(374,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\DataAccessLayer\DataAccess.cs(403,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\DataAccessLayer\DataAccess.cs(435,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\DataAccessLayer\DataAccess.cs(464,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\DataAccessLayer\DataAccess.cs(493,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\DataAccessLayer\DataAccess.cs(520,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\DataAccessLayer\DataAccess.cs(545,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\DataAccessLayer\DataAccess.cs(572,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\DataAccessLayer\DataAccess.cs(597,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\DataAccessLayer\DataAccess.cs(2685,17): avertissement CS0219: La variable 'index' est assignée, mais sa valeur n'est jamais utilisée
    E:\projets\mon_projet\Shared\Ressources\CResItem.cs(151,32): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\SqlServer\SqlLoginManager.cs(81,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\Definitions\Utils.cs(83,21): avertissement CS0162: Impossible d'atteindre le code détecté
    E:\projets\mon_projet\Shared\Definitions\Utils.cs(95,21): avertissement CS0162: Impossible d'atteindre le code détecté
    E:\projets\mon_projet\Shared\Definitions\Utils.cs(99,21): avertissement CS0162: Impossible d'atteindre le code détecté
    E:\projets\mon_projet\Shared\DataAccessLayer\DataLoader.cs(183,13): avertissement CS0618: 'DevExpress.Xpo.Metadata.ReflectionClassInfo.SuppressSuspiciousMemberInheritanceCheck' est obsolète : 'SuppressSuspiciousMemberInheritanceCheck accessed'
    E:\projets\mon_projet\Shared\DataAccessLayer\DataLoader.cs(1936,30): avertissement CS0168: La variable 'ex' est déclarée, mais jamais utilisée
    E:\projets\mon_projet\Shared\CommonObjects\SysInterfaceControlAttribute.cs(13,14): avertissement CS0169: Le champ 'Shared.CommonObjects.SysInterfaceControlAttribute._hasLayout' n'est jamais utilisé
    E:\projets\mon_projet\Shared\SystemObjects\SysReferentialIntegrityRule.cs(25,28): avertissement CS0169: Le champ 'Shared.SystemObjects.SysReferentialIntegrityRule._Flags' n'est jamais utilisé
    E:\projets\mon_projet\Shared\MetaData\AccessTypeClassInfo.cs(174,14): avertissement CS0169: Le champ 'Shared.MetaData.AccessTypeFieldInfo._systemType' n'est jamais utilisé
    E:\projets\mon_projet\Shared\Scripting\ScriptableDetailCollection.cs(16,23): avertissement CS0649: Le champ 'Shared.Scripting.ScriptableDetailCollection._sponsor' n'est jamais assigné et possédera toujours sa valeur par défaut null
    E:\projets\mon_projet\Shared\CommonObjects\FolderInfo.cs(18,22): avertissement CS0649: Le champ 'Shared.CommonObjects.FolderInfo._integratedSecurity' n'est jamais assigné et possédera toujours sa valeur par défaut false
    E:\projets\mon_projet\Shared\CommonObjects\FolderInfo.cs(20,24): avertissement CS0649: Le champ 'Shared.CommonObjects.FolderInfo._folderName' n'est jamais assigné et possédera toujours sa valeur par défaut null
    E:\projets\mon_projet\Shared\CommonObjects\FolderInfo.cs(21,21): avertissement CS0649: Le champ 'Shared.CommonObjects.FolderInfo._folderNumber' n'est jamais assigné et possédera toujours sa valeur par défaut 0
    E:\projets\mon_projet\Shared\SystemObjects\SysReplicationClassObject.cs(70,87): avertissement CS0649: Le champ 'Shared.SystemObjects.SysReplicationClassObject._SysReplicationClassColumns' n'est jamais assigné et possédera toujours sa valeur par défaut null
    E:\projets\mon_projet\Shared\CommonObjects\DataDetail.cs(39,22): avertissement CS0649: Le champ 'Shared.CommonObjects.DataDetail._dynamicLoading' n'est jamais assigné et possédera toujours sa valeur par défaut false
    E:\projets\mon_projet\Shared\CommonObjects\DataObject.cs(33,16): avertissement CS0169: Le champ 'Shared.CommonObjects.DataObject._CriteriaString' n'est jamais utilisé
    E:\projets\mon_projet\Shared\CommonObjects\AccessTypeAttribute.cs(14,16): avertissement CS0169: Le champ 'Shared.CommonObjects.AccessTypeAttribute._accessorName' n'est jamais utilisé

    Compilation terminée -- 0 erreurs, 67 avertissements
    Shared -> E:\projets\mon_projet\bin\Debug\Shared.dll
    ========== Régénération globale : 1 a réussi, 0 a échoué, 0 a été ignoré ==========

  5. #5
    Futur Membre du Club
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    14
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 14
    Points : 8
    Points
    8
    Par défaut
    Ok merci, et désolé pour l'ignorance
    Voilà le LOG ^^

    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\assembly\GAC_MSIL\Microsoft.VisualStudio.HostingProcess.Utilities\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.HostingProcess.Utilities.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\assembly\GAC_MSIL\Microsoft.VisualStudio.HostingProcess.Utilities.Sync\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.HostingProcess.Utilities.Sync.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\assembly\GAC_MSIL\Microsoft.VisualStudio.Debugger.Runtime\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Debugger.Runtime.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'D:\DEV\Projet\c#\money_manager\money_manager\money_manager\bin\Debug\money_manager.vshost.exe' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.DataSetExtensions\v4.0_4.0.0.0__b77a5c561934e089\System.Data.DataSetExtensions.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    Le thread 'vshost.NotifyLoad' (0x1ec) s'est arrêté avec le code 0 (0x0).
    Le thread 'vshost.LoadReference' (0x107c) s'est arrêté avec le code 0 (0x0).
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'D:\DEV\Projet\c#\money_manager\money_manager\money_manager\bin\Debug\money_manager.exe' chargé, symboles chargés.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll' chargé, chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'D:\DEV\Projet\c#\money_manager\money_manager\money_manager\bin\Debug\ZedGraph.dll' chargé
    'money_manager.vshost.exe' (Managé (v4.0.30319))*: 'D:\DEV\Projet\c#\money_manager\money_manager\money_manager\bin\Debug\fr\ZedGraph.resources.dll' chargé
    ok

  6. #6
    Membre expérimenté Avatar de ctxnop
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2007
    Messages
    858
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Morbihan (Bretagne)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juillet 2007
    Messages : 858
    Points : 1 732
    Points
    1 732
    Par défaut
    C'est toujours pas le bon
    Tu t'es fais avoir
    Ca c'est le log d'une session de debug.
    Dans la fenêtre "sortie" il y a une liste déroulante "Afficher la sortie à partir de :"
    Dans cette liste il faut choisir "Générer". En fait, ce qui serait bien, c'est qu'aussitot après avoir chargé ton projet dans ton Visual Studio, tu fais "Générer" -> "Regénérer la solution".
    Ensuite, tu va copier/coller ce qu'il y a dans la fenêtre de sortie (en sélectionnant "Généré" dans la liste).
    Si tu ne fais pas ca il y a de fortes chances pour qu'ils ne recompile pas ton projet et donc que la sortie soit pratiquement vide.

  7. #7
    Futur Membre du Club
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    14
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 14
    Points : 8
    Points
    8
    Par défaut
    Merde un jour ca viendra.
    Bon cette fois ci ça doit être la bonne ... Enfin je pense
    Merci de ta patience quand même ^^

    ------ Début de la régénération globale*: Projet*: money_manager, Configuration*: Release x86 ------
    D:\DEV\Projet\c#\money_manager\money_manager\money_manager\technique\listViewRecapCompte.cs(61,17): avertissement CS0219: La variable 'i' est assignée, mais sa valeur n'est jamais utilisée
    D:\DEV\Projet\c#\money_manager\money_manager\money_manager\metier\Compte.cs(267,27): avertissement CS0168: La variable 'XTWriter' est déclarée, mais jamais utilisée
    D:\DEV\Projet\c#\money_manager\money_manager\money_manager\metier\Compte.cs(277,17): avertissement CS0168: La variable 'indexEnMoins' est déclarée, mais jamais utilisée
    D:\DEV\Projet\c#\money_manager\money_manager\money_manager\technique\fichier.cs(43,13): avertissement CS0162: Impossible d'atteindre le code détecté
    D:\DEV\Projet\c#\money_manager\money_manager\money_manager\Form1.Designer.cs(424,28): avertissement CS0169: Le champ 'WindowsFormsApplication1.frmPrinc.l' n'est jamais utilisé
    D:\DEV\Projet\c#\money_manager\money_manager\money_manager\Form1.Designer.cs(425,28): avertissement CS0169: Le champ 'WindowsFormsApplication1.frmPrinc.h' n'est jamais utilisé
    D:\DEV\Projet\c#\money_manager\money_manager\money_manager\frmCopyPast.Designer.cs(106,24): avertissement CS0169: Le champ 'WindowsFormsApplication1.frmCopyPast.Cmpt' n'est jamais utilisé
    D:\DEV\Projet\c#\money_manager\money_manager\money_manager\technique\fichier.cs(18,30): avertissement CS0169: Le champ 'WindowsFormsApplication1.fichier.sr' n'est jamais utilisé

    Compilation terminée -- 0 erreurs, 8 avertissements
    C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1360,9): warning MSB3253: Impossible de résoudre l'assembly référencé "ObjectListView", car il dépend de "System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" qui ne figure pas dans le Framework ciblé actuel ".NETFramework,Version=v4.0,Profile=Client". Supprimez les références aux assemblys qui ne se trouvent pas dans le Framework ciblé ou reciblez votre projet.
    C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1360,9): warning MSB3253: Impossible de résoudre l'assembly référencé "ZedGraph.Web", car il dépend de "System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" qui ne figure pas dans le Framework ciblé actuel ".NETFramework,Version=v4.0,Profile=Client". Supprimez les références aux assemblys qui ne se trouvent pas dans le Framework ciblé ou reciblez votre projet.
    C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1360,9): warning MSB3253: Impossible de résoudre l'assembly référencé "ListViewPrinter", car il dépend de "System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" qui ne figure pas dans le Framework ciblé actuel ".NETFramework,Version=v4.0,Profile=Client". Supprimez les références aux assemblys qui ne se trouvent pas dans le Framework ciblé ou reciblez votre projet.
    C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1360,9): warning MSB3253: Impossible de résoudre l'assembly référencé "ZedGraph.Web", car il dépend de "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" qui ne figure pas dans le Framework ciblé actuel ".NETFramework,Version=v4.0,Profile=Client". Supprimez les références aux assemblys qui ne se trouvent pas dans le Framework ciblé ou reciblez votre projet.
    money_manager -> D:\DEV\Projet\c#\money_manager\money_manager\money_manager\bin\Release\money_manager.exe
    ========== Régénération globale*: 1 a réussi, 0 a échoué, 0 a été ignoré ==========

  8. #8
    Membre expérimenté Avatar de ctxnop
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2007
    Messages
    858
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Morbihan (Bretagne)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juillet 2007
    Messages : 858
    Points : 1 732
    Points
    1 732
    Par défaut
    Oui, cette fois c'est la bonne
    Donc comme on le vois il n'y a que quelques warnings mais rien de bien méchant : des variables déclarées mais jamais utilisées et du code impossible à atteindre.
    Je doute que ce soit la raison de la lenteur de la compilation.
    Par contre plus bas il marque des choses intéressantes.
    A priori tu utilises bibliothèques qui elles-mêmes ont des références à des éléments que tu ne possède pas.
    En l'occurrence System.Design et System.Web, tous deux en version 4.
    Mais je n'ai aucune idée de pourquoi il ne les trouves pas, et comme la j'ai pas mon Visual Studio 2010 et encoree moins le framework 4, je ne peux pas trop chercher. Je regarderai ce soir en rentrant si personne ne donne la solution d'ici la.

  9. #9
    Membre expérimenté
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    1 103
    Détails du profil
    Informations personnelles :
    Âge : 46
    Localisation : France, Meurthe et Moselle (Lorraine)

    Informations forums :
    Inscription : Juillet 2006
    Messages : 1 103
    Points : 1 561
    Points
    1 561
    Par défaut
    et puis qu'est ce que tu appel long ?

    as tu fait des modifications entre le moment où la compilation était rapide et maintenant qu'elle est lente ? genre ajouter un projet, ajouter des trucs spéciaux au(x) projet(s) en cours dans la solution...

    il peut y avoir une multitude de raisons à cela.
    De plus, cette compilation quasi instantanée était-elle le fait d'une autre version de Visual Studio... genre j'ai passé ma solution de VS2008 a 2010 et hop au passage une compilation de 2s en prend 10...

  10. #10
    Futur Membre du Club
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    14
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 14
    Points : 8
    Points
    8
    Par défaut
    Oui c'est exacte. Je connais certaine de ces Dll car je l'ai est ajouté en référence, mais voyant que j'en avais pas besoin je l'ai est supprimée, mais au mauvaise endroit... lol (une de plus).
    Maintenant j'ai bien supprimée c'est référence de ma solution, mais sa n'arrange rien à ma solution... La compilation est toujours aussi lente

  11. #11
    Futur Membre du Club
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    14
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 14
    Points : 8
    Points
    8
    Par défaut
    Non je n'ai pas fais de migration.

    Et oui j'ai modifier des choses (ou trifouiller ...). Plus sérieusement je suis aller dans les Paramètre de mon projet pour ajouter des ressource et des paramètre et un icône.
    Est ce que cela peut faire passer le temps de compilation de 2 seconde à 10 15 tout le temps?..

  12. #12
    Rédacteur
    Avatar de SaumonAgile
    Homme Profil pro
    Team leader
    Inscrit en
    Avril 2007
    Messages
    4 028
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Moselle (Lorraine)

    Informations professionnelles :
    Activité : Team leader
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2007
    Messages : 4 028
    Points : 6 334
    Points
    6 334
    Par défaut
    Etant donné qu'il y a des warnings par rapport à des assemblies non trouvées, je serais tenté de dire que le délai vient de la recherche des assemblies sur le disque. Je parierais qu'avant, la compilation était rapide parce que les assemblies étaient trouvées par le compilateur.
    Besoin d'un MessageBox amélioré ? InformationBox pour .NET 1.1, 2.0, 3.0, 3.5, 4.0 sous license Apache 2.0.

    Bonnes pratiques pour les accès aux données
    Débogage efficace en .NET
    LINQ to Objects : l'envers du décor

    Mon profil LinkedIn - MCT - MCPD WinForms - MCTS Applications Distribuées - MCTS WCF - MCTS WCF 4.0 - MCTS SQL Server 2008, Database Development - Mon blog - Twitter

  13. #13
    Futur Membre du Club
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    14
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 14
    Points : 8
    Points
    8
    Par défaut
    Citation Envoyé par SaumonAgile Voir le message
    Etant donné qu'il y a des warnings par rapport à des assemblies non trouvées, je serais tenté de dire que le délai vient de la recherche des assemblies sur le disque. Je parierais qu'avant, la compilation était rapide parce que les assemblies étaient trouvées par le compilateur.
    tout d'abord merci de l'intérêt que vous portez à mon Post en y répondant .
    Oui c'est ce que j'ai pu constaté grâce à ctxNop,j'ai corrigé ces petit problème.

    Mais le problème ne vient hélasse pas de là. Je rame je ne sais vraiment pas d'où ça vient.

  14. #14
    Futur Membre du Club
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    14
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 14
    Points : 8
    Points
    8
    Par défaut
    Je me sens seul là. Personne n'a d'idée sur mon problème?

  15. #15
    Membre expérimenté Avatar de ctxnop
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2007
    Messages
    858
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Morbihan (Bretagne)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juillet 2007
    Messages : 858
    Points : 1 732
    Points
    1 732
    Par défaut
    Non désolé, je n'ai plus aucune idée sur le sujet. Si ce n'est peut être de corriger le code vis à vis des warnings (pas ceux sur les références, mais ceux sur le code impossible à atteindre et les variables non initialisées).
    Je suggère ca car j'ai remarqué que souvent l'IDE freeze un moment quand il y a des erreurs/warnings et ca se passe entre le moment où la compilation se termine et le moment où il affiche la fenêtre des erreurs.
    Mais ca ne me le fait pas sur toutes les solutions/projets et je n'ai jamais trouvé le facteur déclenchant.

    et de toute façon ca peut pas faire de mal de corriger ces warnings

Discussions similaires

  1. Besoin d'aide pour un petit Projet JAVA
    Par matrixofdeath dans le forum Débuter avec Java
    Réponses: 2
    Dernier message: 14/10/2010, 17h32
  2. [Scrum] de l'interet de SCRUM pour un petit projet/petite équipe
    Par Gweanel dans le forum Méthodes Agiles
    Réponses: 6
    Dernier message: 30/10/2008, 10h52
  3. Demande aide pour un petit projet
    Par Ludivine91 dans le forum Autres
    Réponses: 0
    Dernier message: 25/11/2007, 19h15
  4. Réponses: 5
    Dernier message: 21/09/2007, 17h29

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo