Changeset 906

Show
Ignore:
Timestamp:
10/09/08 08:44:02 (3 months ago)
Author:
mloskot
Message:

trunk/csharp: Fixed HelloWorldLAS.cs project to include dotnetLibLAS reference in Debug or Release mode based on conditional test of actually requested configuration.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/csharp/HelloWorldLAS/HelloWorldLAS.csproj

    r870 r906  
    2929  </PropertyGroup> 
    3030  <ItemGroup> 
     31    <Reference Include="System" /> 
     32    <Reference Include="System.Data" /> 
     33    <Reference Include="System.Xml" /> 
     34  </ItemGroup> 
     35  <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 
     36    <Reference Include="dotnetLibLAS, Version=0.2.0.0, Culture=neutral, PublicKeyToken=05e1a48fbbf076e0, processorArchitecture=MSIL"> 
     37      <SpecificVersion>False</SpecificVersion> 
     38      <HintPath>..\dotnetLibLAS\bin\Debug\dotnetLibLAS.dll</HintPath> 
     39    </Reference> 
     40  </ItemGroup> 
     41  <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 
    3142    <Reference Include="dotnetLibLAS, Version=0.2.0.0, Culture=neutral, PublicKeyToken=05e1a48fbbf076e0, processorArchitecture=MSIL"> 
    3243      <SpecificVersion>False</SpecificVersion> 
    3344      <HintPath>..\dotnetLibLAS\bin\Release\dotnetLibLAS.dll</HintPath> 
    3445    </Reference> 
    35     <Reference Include="System" /> 
    36     <Reference Include="System.Data" /> 
    37     <Reference Include="System.Xml" /> 
    3846  </ItemGroup> 
    3947  <ItemGroup>