Hi Tica,
1) Can you try changing your project name as "dpBizSol" as you want your BizTalk application name like this.
<PropertyGroup>
2) Since your manager project is a .net component project so you cant give it as schema please change that one also to;
<ItemGroup>
please try this hope this solves your problem.
Thanks,
Sharad
1) Can you try changing your project name as "dpBizSol" as you want your BizTalk application name like this.
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<Platform Condition="'$(Platform)' == ''">x86</Platform>
<SchemaVersion>1.0</SchemaVersion>
<ProjectName>dpBizSol</ProjectName>
<ProjectVersion>1.0</ProjectVersion>
<IncludeTransforms>False</IncludeTransforms>
<IncludeComponents>True</IncludeComponents>
<IncludeSchemas>true</IncludeSchemas>
<IncludeOrchestrations>false</IncludeOrchestrations>
<IncludeMessagingBindings>False</IncludeMessagingBindings>
<UsingMasterBindings>True</UsingMasterBindings>
<RequireXmlPreprocessDirectives>False</RequireXmlPreprocessDirectives>
<ApplyXmlEscape>True</ApplyXmlEscape>
<IncludeSettingsSpreadsheetInMsi>False</IncludeSettingsSpreadsheetInMsi>
<EnableAllReceiveLocationsOnDeploy>False</EnableAllReceiveLocationsOnDeploy>
</PropertyGroup>2) Since your manager project is a .net component project so you cant give it as schema please change that one also to;
<ItemGroup>
<Components Include="Manager.dll">
<LocationPath>..\Manager\bin\$(Configuration)</LocationPath>
</Components>
</ItemGroup>please try this hope this solves your problem.
Thanks,
Sharad