Changeset 6

Show
Ignore:
Timestamp:
02/25/06 03:41:45 (6 years ago)
Author:
mloar2
Message:

Fixed up some code.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/WiptLib/src/Library.cs

    r4 r6  
    105105          build = int.Parse(Build); 
    106106      } 
     107        public override string ToString() 
     108        { 
     109            return string.Format("{0}.{1}.{2}",major,minor,build); 
     110        } 
    107111      public static bool operator <(Version v1, Version v2) 
    108112      { 
     
    229233      { 
    230234        library = Hashtable.Synchronized(new Hashtable()); 
    231         return false; 
     235        return true; 
    232236      } 
    233237 
  • trunk/WiptLib/WiptLib.csproj

    r5 r6  
    1 <VisualStudioProject> 
    2     <CSHARP 
    3         ProjectType = "Local" 
    4         ProductVersion = "7.10.3077" 
    5         SchemaVersion = "2.0" 
    6         ProjectGuid = "{269B8A70-BEDB-4C36-BAB1-05E475F9C4EC}" 
    7     > 
    8         <Build> 
    9             <Settings 
    10                 ApplicationIcon = "" 
    11                 AssemblyKeyContainerName = "" 
    12                 AssemblyName = "WiptLib" 
    13                 AssemblyOriginatorKeyFile = "" 
    14                 DefaultClientScript = "JScript" 
    15                 DefaultHTMLPageLayout = "Grid" 
    16                 DefaultTargetSchema = "IE50" 
    17                 DelaySign = "false" 
    18                 OutputType = "Library" 
    19                 PreBuildEvent = "" 
    20                 PostBuildEvent = "" 
    21                 RootNamespace = "WiptLib" 
    22                 RunPostBuildEvent = "OnBuildSuccess" 
    23                 StartupObject = "" 
    24             > 
    25                 <Config 
    26                     Name = "Debug" 
    27                     AllowUnsafeBlocks = "false" 
    28                     BaseAddress = "285212672" 
    29                     CheckForOverflowUnderflow = "false" 
    30                     ConfigurationOverrideFile = "" 
    31                     DefineConstants = "DEBUG;TRACE" 
    32                     DocumentationFile = "" 
    33                     DebugSymbols = "true" 
    34                     FileAlignment = "4096" 
    35                     IncrementalBuild = "false" 
    36                     NoStdLib = "false" 
    37                     NoWarn = "" 
    38                     Optimize = "false" 
    39                     OutputPath = ".\" 
    40                     RegisterForComInterop = "false" 
    41                     RemoveIntegerChecks = "false" 
    42                     TreatWarningsAsErrors = "false" 
    43                     WarningLevel = "4" 
    44                 /> 
    45                 <Config 
    46                     Name = "Release" 
    47                     AllowUnsafeBlocks = "false" 
    48                     BaseAddress = "285212672" 
    49                     CheckForOverflowUnderflow = "false" 
    50                     ConfigurationOverrideFile = "" 
    51                     DefineConstants = "TRACE" 
    52                     DocumentationFile = "" 
    53                     DebugSymbols = "false" 
    54                     FileAlignment = "4096" 
    55                     IncrementalBuild = "false" 
    56                     NoStdLib = "false" 
    57                     NoWarn = "" 
    58                     Optimize = "true" 
    59                     OutputPath = ".\" 
    60                     RegisterForComInterop = "false" 
    61                     RemoveIntegerChecks = "false" 
    62                     TreatWarningsAsErrors = "false" 
    63                     WarningLevel = "4" 
    64                 /> 
    65             </Settings> 
    66             <References> 
    67                 <Reference 
    68                     Name = "System" 
    69                     AssemblyName = "System" 
    70                     HintPath = "..\..\..\..\..\..\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.dll" 
    71                 /> 
    72                 <Reference 
    73                     Name = "System.Data" 
    74                     AssemblyName = "System.Data" 
    75                     HintPath = "..\..\..\..\..\..\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Data.dll" 
    76                 /> 
    77                 <Reference 
    78                     Name = "System.XML" 
    79                     AssemblyName = "System.Xml" 
    80                     HintPath = "..\..\..\..\..\..\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.XML.dll" 
    81                 /> 
    82             </References> 
    83         </Build> 
    84         <Files> 
    85             <Include> 
    86                 <File 
    87                     RelPath = "src\AssemblyInfo.cs" 
    88                     BuildAction = "Compile" 
    89                 /> 
    90                 <File 
    91                     RelPath = "src\Library.cs" 
    92                     SubType = "Code" 
    93                     BuildAction = "Compile" 
    94                 /> 
    95             </Include> 
    96         </Files> 
    97     </CSHARP> 
    98 </VisualStudioProject> 
    99  
     1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 
     2  <PropertyGroup> 
     3    <ProjectType>Local</ProjectType> 
     4    <ProductVersion>8.0.50727</ProductVersion> 
     5    <SchemaVersion>2.0</SchemaVersion> 
     6    <ProjectGuid>{269B8A70-BEDB-4C36-BAB1-05E475F9C4EC}</ProjectGuid> 
     7    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 
     8    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 
     9    <ApplicationIcon> 
     10    </ApplicationIcon> 
     11    <AssemblyKeyContainerName> 
     12    </AssemblyKeyContainerName> 
     13    <AssemblyName>WiptLib</AssemblyName> 
     14    <AssemblyOriginatorKeyFile> 
     15    </AssemblyOriginatorKeyFile> 
     16    <DefaultClientScript>JScript</DefaultClientScript> 
     17    <DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout> 
     18    <DefaultTargetSchema>IE50</DefaultTargetSchema> 
     19    <DelaySign>false</DelaySign> 
     20    <OutputType>Library</OutputType> 
     21    <RootNamespace>WiptLib</RootNamespace> 
     22    <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> 
     23    <StartupObject> 
     24    </StartupObject> 
     25    <FileUpgradeFlags> 
     26    </FileUpgradeFlags> 
     27    <UpgradeBackupLocation> 
     28    </UpgradeBackupLocation> 
     29  </PropertyGroup> 
     30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 
     31    <OutputPath>.\</OutputPath> 
     32    <AllowUnsafeBlocks>false</AllowUnsafeBlocks> 
     33    <BaseAddress>285212672</BaseAddress> 
     34    <CheckForOverflowUnderflow>false</CheckForOverflowUnderflow> 
     35    <ConfigurationOverrideFile> 
     36    </ConfigurationOverrideFile> 
     37    <DefineConstants>DEBUG;TRACE</DefineConstants> 
     38    <DocumentationFile> 
     39    </DocumentationFile> 
     40    <DebugSymbols>true</DebugSymbols> 
     41    <FileAlignment>4096</FileAlignment> 
     42    <NoStdLib>false</NoStdLib> 
     43    <NoWarn> 
     44    </NoWarn> 
     45    <Optimize>false</Optimize> 
     46    <RegisterForComInterop>false</RegisterForComInterop> 
     47    <RemoveIntegerChecks>false</RemoveIntegerChecks> 
     48    <TreatWarningsAsErrors>false</TreatWarningsAsErrors> 
     49    <WarningLevel>4</WarningLevel> 
     50    <DebugType>full</DebugType> 
     51    <ErrorReport>prompt</ErrorReport> 
     52  </PropertyGroup> 
     53  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 
     54    <OutputPath>.\</OutputPath> 
     55    <AllowUnsafeBlocks>false</AllowUnsafeBlocks> 
     56    <BaseAddress>285212672</BaseAddress> 
     57    <CheckForOverflowUnderflow>false</CheckForOverflowUnderflow> 
     58    <ConfigurationOverrideFile> 
     59    </ConfigurationOverrideFile> 
     60    <DefineConstants>TRACE</DefineConstants> 
     61    <DocumentationFile> 
     62    </DocumentationFile> 
     63    <DebugSymbols>false</DebugSymbols> 
     64    <FileAlignment>4096</FileAlignment> 
     65    <NoStdLib>false</NoStdLib> 
     66    <NoWarn> 
     67    </NoWarn> 
     68    <Optimize>true</Optimize> 
     69    <RegisterForComInterop>false</RegisterForComInterop> 
     70    <RemoveIntegerChecks>false</RemoveIntegerChecks> 
     71    <TreatWarningsAsErrors>false</TreatWarningsAsErrors> 
     72    <WarningLevel>4</WarningLevel> 
     73    <DebugType>none</DebugType> 
     74    <ErrorReport>prompt</ErrorReport> 
     75  </PropertyGroup> 
     76  <ItemGroup> 
     77    <Reference Include="System"> 
     78      <Name>System</Name> 
     79    </Reference> 
     80    <Reference Include="System.Data"> 
     81      <Name>System.Data</Name> 
     82    </Reference> 
     83    <Reference Include="System.Xml"> 
     84      <Name>System.XML</Name> 
     85    </Reference> 
     86  </ItemGroup> 
     87  <ItemGroup> 
     88    <Compile Include="src\AssemblyInfo.cs" /> 
     89    <Compile Include="src\Library.cs"> 
     90      <SubType>Code</SubType> 
     91    </Compile> 
     92  </ItemGroup> 
     93  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 
     94  <PropertyGroup> 
     95    <PreBuildEvent> 
     96    </PreBuildEvent> 
     97    <PostBuildEvent> 
     98    </PostBuildEvent> 
     99  </PropertyGroup> 
     100</Project>