The item "obj\Debug\RestaurantBookingSystem.frmSchedule.resources" was specified more than once in the "Resources" parameters. Duplicate items are not supported be the "Resources" paramerets
what should i do pls?
The item "obj\Debug\RestaurantBookingSystem.frmSchedule.resources" was specified more than once in the "Resources" parameters. Duplicate items are not supported be the "Resources" paramerets
what should i do pls?
- Right click on the project in visual studio and select "open folder in windows explorer".
- Close visual studio
- Make a copy of the *.csproj file (backup)
- Open the *.csproj file in notepad
- Search for the resource name. You should see two duplicate entries. Delete one of the entries:
<EmbeddedResource Include="frm2.resx">
<DependentUpon>frm2.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frm2.resx">
<DependentUpon>frm2.cs</DependentUpon>
</EmbeddedResource>
- Open the solution in visual studio and compile
- Right click on the project in visual studio and select "open folder in windows explorer".
- Close visual studio
- Make a copy of the *.csproj file (backup)
- Open the *.csproj file in notepad
- Search for the resource name. You should see two duplicate entries. Delete one of the entries:<EmbeddedResource Include="frm2.resx"> <DependentUpon>frm2.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="frm2.resx"> <DependentUpon>frm2.cs</DependentUpon> </EmbeddedResource>
- Open the solution in visual studio and compile
Hi i tried but the oonly thing i found is this
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ReferencePath>C:\Program Files\Business Objects\Common\2.8\managed\</ReferencePath>
<PublishUrlHistory>
</PublishUrlHistory>
<InstallUrlHistory>
</InstallUrlHistory>
<SupportUrlHistory>
</SupportUrlHistory>
<UpdateUrlHistory>
</UpdateUrlHistory>
<BootstrapperUrlHistory>
</BootstrapperUrlHistory>
<FallbackCulture>en-US</FallbackCulture>
<VerifyUploadedFiles>false</VerifyUploadedFiles>
</PropertyGroup>
</Project>
Zip your project up and upload it here. You shouldn't need to include any of the *.cs files. What we're looking for is going to be in a project/solution configuration file.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.