I'm using visual studio 2015 I have an WPF application consists of 5 projects in one solution I need to change the name of 3 of them to be like (helper03.dll instead of helper.dll, UIResources03.dll instead of UIResources.dll & Utility03.dll instead of Utility.dll )(I need to change the output dll name not the project name itself ) when I do that from property window and change assembly name, try to rebuild , visual studio gives me errors that he can't find helper.dll, UIResources.dll & Utility.dll visual studio always looks for the original names I make some search and found that I have to manually change the .csproj files for each dll project but actually I couldn't understand any thing I found some thing like this:
<AssemblyName Condition=" '$(MyAssemblyName)' != '' ">$(MyAssemblyName)</AssemblyName>
then pass MyAsseblyName in the msbuild task. I couldn't find out how to use msbuild to pass the assembly name
Can you please show me how to do that in details Many thanks in advance