I'm generating a 3tier solution (business facade, business rule, data component).
The name of the 3 assemblies is asked through the wizard.
The reference between the assemblies should automaticaly be created.
This is done with the code here under :
<ItemGroup>
<Reference Include="System"/>
<Reference Include="System.Data"/>
<Reference Include="System.Xml"/>
<ProjectReference Include="$BusinessRuleProjectName$" />
</ItemGroup>
The name of the BusinnesRule is well present in the BusinessFacade reference but I get the following :
Error 61 The specified project reference meta-data for the reference "BusinessRule" is missing or has an invalid value: Project C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets 891 9
Thanks in advance
Philippe