Ignore:
Timestamp:
Aug 2, 2011, 11:18:05 PM (13 years ago)
Author:
bayral
Message:

trouble with csproj file beteewn Visual sutdio and visual studio express

Location:
extensions/PiwigoLib/PiwigoLib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoLib/DTO/PwgCategoryPhotoDeletionModeEnum.cs

    r11878 r11901  
    11using System;
     2using System.Collections.Generic;
    23using System.Xml.Serialization;
     4
    35
    46namespace Com.Piwigo.Lib.DTO
    57{
    6 
    78    [Serializable()]
    8     [XmlRoot(ElementName = "PwgCategoryPhotoDeletionModeEnum")]
     9    [XmlRoot(ElementName = "PwgSessionStatusEnum")]
    910    public enum PwgCategoryPhotoDeletionModeEnum : int
    1011    {
    1112        [XmlEnum("unknow")]
    1213        Unknow = 0,
    13         [XmlEnum("no_delete")]
     14        [XmlEnum("none")]
    1415        None = 1,
    15         [XmlEnum("delete_orphans")]
     16        [XmlEnum("orphan-only")]
    1617        OrphansOnly = 2,
    17         [XmlEnum("force_delete")]
    18         ForceAll = 3
     18        [XmlEnum("all")]
     19        all = 3
    1920    }
    2021}
  • extensions/PiwigoLib/PiwigoLib/PiwigoLib.csproj

    r11890 r11901  
    5151  </ItemGroup>
    5252  <ItemGroup>
     53    <Compile Include="DTO\PwgCategory.cs" />
    5354    <Compile Include="DTO\PwgConfidentLevelEnum.cs" />
    5455    <Compile Include="DTO\PwgFileTypeEnum.cs" />
    5556    <Compile Include="DTO\PwgCategoryPhotoDeletionModeEnum.cs" />
    56     <Compile Include="DTO\PwgCategory.cs" />
    5757    <Compile Include="DTO\PwgImage.cs" />
    5858    <Compile Include="DTO\Helper\PwgEnumHelper.cs" />
Note: See TracChangeset for help on using the changeset viewer.