Re: VS2005 и partial classes
От: squiz  
Дата: 14.02.06 14:01
Оценка:
Здравствуйте, Andrey Gliznetsov,

в csproj в описании Item'ов нужно указать кто от кого зависит:

вместо например стандартного plain

<Compile Include="PmoEntity.cs" />
<Compile Include="PmoEntity.Access.cs"/>
<Compile Include="PmoEntity.Security.cs"/>


нуна

<Compile Include="PmoEntity.cs" />
<Compile Include="PmoEntity.Access.cs">
    <DependentUpon>PmoEntity.cs</DependentUpon>
</Compile>
<Compile Include="PmoEntity.Security.cs">
    <DependentUpon>PmoEntity.cs</DependentUpon>
</Compile>
Never underestimate those behind you...
 
Подождите ...
Wait...
Пока на собственное сообщение не было ответов, его можно удалить.