VS.net multiple projects, -> 'umbraco.UmbracoDefault' is ambiguous
Hi.
We have a multiple solution in VS.net, one project for umbraco, one for custom code. Umbraco.dll is referenced in our custom code project.
When i run > debug, i get the following error:
Server Error in '/' Application. --------------------------------------------------------------------------------
Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: The type 'umbraco.UmbracoDefault' is ambiguous: it could come from assembly 'D:\Websites\Home\Home.dk\bin\umbraco.DLL' or from assembly 'D:\Websites\Home\xxxxx.dk\bin\xxxxxx.dk.DLL'. Please specify the assembly explicitly in the type name.
Source Error:
Line 1: <%@ Page language="c#" Codebehind="default.aspx.cs" AutoEventWireup="True" Inherits="umbraco.UmbracoDefault" trace="true" validateRequest="false" %> Line 2:
VS.net multiple projects, -> 'umbraco.UmbracoDefault' is ambiguous
Hi.
We have a multiple solution in VS.net, one project for umbraco, one for custom code. Umbraco.dll is referenced in our custom code project.
When i run > debug, i get the following error:
Server Error in '/' Application.
--------------------------------------------------------------------------------
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: The type 'umbraco.UmbracoDefault' is ambiguous: it could come from assembly 'D:\Websites\Home\Home.dk\bin\umbraco.DLL' or from assembly 'D:\Websites\Home\xxxxx.dk\bin\xxxxxx.dk.DLL'. Please specify the assembly explicitly in the type name.
Source Error:
Line 1: <%@ Page language="c#" Codebehind="default.aspx.cs" AutoEventWireup="True" Inherits="umbraco.UmbracoDefault" trace="true" validateRequest="false" %>
Line 2:
Does any one have an idea ?
Best regards
/Jacob
iwe tried specified assembly :
Inherits="umbraco.UmbracoDefault, umbraco"
Inherits="umbraco.UmbracoDefault, home.dk"
But nothing helps :/
Ohh Default.aspx had added some nasty default.aspx.cs and default.apsx.designer.cs files, think vs.net/sourcesafe had autogenerated.
/J
is working on a reply...