I need to upload two REST SOE to ArcGIS Server. They are technically same and I just copied second one from the first and renamed the project and built it but when I tried to upload the second SOE ArcGIS server Complained that

so I tried to change some configurations at second SOE as
1- in Properties/AssemblyInfo.cs I changed
<SPAN class="punctuation token">[</SPAN>assembly<SPAN class="punctuation token">:</SPAN> <SPAN class="token function">AssemblyTitle</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="string token">"GeometricNetworkUtility"</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">]</SPAN>
<SPAN class="punctuation token">[</SPAN>assembly<SPAN class="punctuation token">:</SPAN> <SPAN class="token function">AssemblyDescription</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="string token">"Geometric Network Utility"</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">]</SPAN>
<SPAN class="punctuation token">[</SPAN>assembly<SPAN class="punctuation token">:</SPAN> <SPAN class="token function">AddInPackage</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="string token">"ArcGIS.Soe.Rest.GeometricNetworkUtilitybyPhase"</SPAN><SPAN class="punctuation token">,</SPAN> <SPAN class="string token">"f15446f6-4217-4c50-a970-078c0b64a20a"</SPAN><SPAN class="punctuation token">,</SPAN>
Author <SPAN class="operator token">=</SPAN> <SPAN class="string token">" "</SPAN><SPAN class="punctuation token">,</SPAN>
Company <SPAN class="operator token">=</SPAN> <SPAN class="string token">" "</SPAN><SPAN class="punctuation token">,</SPAN>
Description <SPAN class="operator token">=</SPAN> <SPAN class="string token">"Geometric Network Utility"</SPAN><SPAN class="punctuation token">,</SPAN>
TargetProduct <SPAN class="operator token">=</SPAN> <SPAN class="string token">"Server"</SPAN><SPAN class="punctuation token">,</SPAN>
TargetVersion <SPAN class="operator token">=</SPAN> <SPAN class="string token">"10.4"</SPAN><SPAN class="punctuation token">,</SPAN>
Version <SPAN class="operator token">=</SPAN> <SPAN class="string token">"1.3"</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">]</SPAN>
To
<SPAN class="punctuation token">[</SPAN>assembly<SPAN class="punctuation token">:</SPAN> <SPAN class="token function">AssemblyTitle</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="string token">"GeometricNetworkUtility2"</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">]</SPAN>
<SPAN class="punctuation token">[</SPAN>assembly<SPAN class="punctuation token">:</SPAN> <SPAN class="token function">AssemblyDescription</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="string token">"Geometric Network Utility 2"</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">]</SPAN>
<SPAN class="punctuation token">[</SPAN>assembly<SPAN class="punctuation token">:</SPAN> <SPAN class="token function">AddInPackage</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="string token">"ArcGIS.Soe.Rest.GeometricNetworkUtility2"</SPAN><SPAN class="punctuation token">,</SPAN> <SPAN class="string token">"f15446f6-4217-4c50-a970-078c0b64a20a"</SPAN><SPAN class="punctuation token">,</SPAN>
Author <SPAN class="operator token">=</SPAN> <SPAN class="string token">" "</SPAN><SPAN class="punctuation token">,</SPAN>
Company <SPAN class="operator token">=</SPAN> <SPAN class="string token">" "</SPAN><SPAN class="punctuation token">,</SPAN>
Description <SPAN class="operator token">=</SPAN> <SPAN class="string token">"Geometric Network Utility 2"</SPAN><SPAN class="punctuation token">,</SPAN>
TargetProduct <SPAN class="operator token">=</SPAN> <SPAN class="string token">"Server"</SPAN><SPAN class="punctuation token">,</SPAN>
TargetVersion <SPAN class="operator token">=</SPAN> <SPAN class="string token">"10.4"</SPAN><SPAN class="punctuation token">,</SPAN>
Version <SPAN class="operator token">=</SPAN> <SPAN class="string token">"1.3"</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">]</SPAN>
and in GeometricNetworkUtility.cs I changed the
Description <SPAN class="operator token">=</SPAN> <SPAN class="string token">"Geometric Network Utility"</SPAN><SPAN class="punctuation token">,</SPAN>
DisplayName <SPAN class="operator token">=</SPAN> <SPAN class="string token">"Geometric Network Utility"</SPAN><SPAN class="punctuation token">,</SPAN>
to
Description <SPAN class="operator token">=</SPAN> <SPAN class="string token">"Geometric Network Utility 2"</SPAN><SPAN class="punctuation token">,</SPAN>
DisplayName <SPAN class="operator token">=</SPAN> <SPAN class="string token">"Geometric Network Utility 2"</SPAN><SPAN class="punctuation token">,</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN></SPAN>
but still after rebuilding the solution and uploading the new SOE I am getting the same error message. Can you please let me know how to solve this?