c# - Delete xml file after create a Visual Studio Setup Project -


all time when create setup project in visual studio 2015 ,just have xml file. enter image description here

what need delete file? don't choose xml file

this screen choose in application folder : enter image description here

really searched forum etc can't find solution . have same problem?

edit 1

<?xml version="1.0" encoding="utf-8" ?> <configuration>     <configsections>     </configsections>      <startup>          <supportedruntime version="v4.0" sku=".netframework,version=v4.5.2" />     </startup>     <usersettings>         <c_sharp_od_nowa.properties.settings>             <setting name="login" serializeas="string">                 <value />             </setting>             <setting name="password" serializeas="string">                 <value />             </setting>             <setting name="checkbox_rememberme" serializeas="string">                 <value />             </setting>         </c_sharp_od_nowa.properties.settings>     </usersettings> </configuration> 

edit 2

i said bad . when install enter image description here

it create exe + dlls + xml fime. how can hide xml.

the setup project including file myproject.exe.config because have app.config in project. if don't want it, have remove app.config project. need re-work parts of project such can done.


Comments

Popular posts from this blog

php - Permission denied. Laravel linux server -

google bigquery - Delta between query execution time and Java query call to finish -

python - Pandas two dataframes multiplication? -