Hey Guys,

So recently our org decided to begin using TFS, so I am trying to switch our
CI from TeamCity....

I have an MVC application called MvcApplication that references another
class library called Application

Application has references to both structure map and log4net, MvcApllication
has a reference to Application. My problem is that while StructreMap.dll
ends up both in the root of the drop folder and in the MvcApplication\bin
dir log4net.dll does not.

When I publish locally to my file system it does.

Yes copylocal is set to true on log4net the reference. The
log4net reference properties appear identical to that of structure map.

I have no clue where to go from here, I have included snippets from the
csproj files showing the references.

Application.csproj:

<ItemGroup>
    <Compile Include="ApplicationBootStrapper.cs" />
    <Compile Include="IocControllerFactory.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="Registries\ControllerRegistry.cs" />
    <Compile Include="Registries\MvcApplicationServiceRegistry.cs" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\Services\Service\Service.csproj">
      <Project>{C0652466-CFB5-4361-B41D-B126DE0535B6}</Project>
      <Name>Service</Name>
    </ProjectReference>
    <ProjectReference Include="..\Controllers\Controllers.csproj">
      <Project>{73D405CB-0803-4C59-A73E-95F79B1E0F5E}</Project>
      <Name>Controllers</Name>
    </ProjectReference>
  </ItemGroup>

MvcApplication.csproj:

  <ItemGroup>
    <ProjectReference Include="..\Application\Application.csproj">
      <Project>{3684A445-84A9-4AE4-A485-E8D45700A878}</Project>
      <Name>Application</Name>
    </ProjectReference>
    <ProjectReference Include="..\Controllers\Controllers.csproj">
      <Project>{73D405CB-0803-4C59-A73E-95F79B1E0F5E}</Project>
      <Name>Controllers</Name>
    </ProjectReference>
  </ItemGroup>

Thanks for your help   <ItemGroup>
    <ProjectReference Include="..\Application\Application.csproj">
      <Project>{3684A445-84A9-4AE4-A485-E8D45700A878}</Project>
      <Name>Application</Name>
    </ProjectReference>
    <ProjectReference Include="..\Controllers\Controllers.csproj">
      <Project>{73D405CB-0803-4C59-A73E-95F79B1E0F5E}</Project>
      <Name>Controllers</Name>
    </ProjectReference>
  </ItemGroup>

Thanks,

-- 
JimP
_______________________________________________
oztfs mailing list
oztfs@oztfs.com
http://prdlxvm0001.codify.net/mailman/listinfo/oztfs

Reply via email to