如何防止输出目录中出现 app.exe.config 文件?
How to prevent app.exe.config file in output directory?
我使用的是VS2019,我的项目是.net framework 4.8 c# winform,项目中没有app.config
文件,在.csproj/Project/PropertyGroup
中写了<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
。构建完成后,在bin
文件夹中生成了xxx.exe.config
文件,我讨厌它,如何让它消失?
文件内容:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
</configuration>
右键单击您的 Project Properties-->Build Events--> 在 Post-构建事件命令行:
del $(TargetDir)$(AssemblyName).exe.config
更新
将 app.config
文件的 Build Action 更改为 Resource
。
客户刚刚删除了 app.config
文件。
我使用的是VS2019,我的项目是.net framework 4.8 c# winform,项目中没有app.config
文件,在.csproj/Project/PropertyGroup
中写了<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
。构建完成后,在bin
文件夹中生成了xxx.exe.config
文件,我讨厌它,如何让它消失?
文件内容:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
</configuration>
右键单击您的 Project Properties-->Build Events--> 在 Post-构建事件命令行:
del $(TargetDir)$(AssemblyName).exe.config
更新
将 app.config
文件的 Build Action 更改为 Resource
。
客户刚刚删除了 app.config
文件。