.Net8开发:生成的runtime及语言文件夹,SourceGrid-huanlin的冗余Dll

1 使用.Net8做Winform开发,会造成许多语言文件夹和runtime,开发Winform应用于Window操作系统,这些文件夹是不必要的。

   可使用以下方法,避免这些文件的生成。在项目文件属性中添加如下内容:

   

<PropertyGroup>
    <SelfContained>false</SelfContained>
    <RuntimeIdentifier>win-x64</RuntimeIdentifier>
    <SatelliteResourceLanguages>zh-CN</SatelliteResourceLanguages>
</PropertyGroup>

 

 


2  SourceGrid是一款方便使用的第三方控件,但已经很久没有更新了,已经在高版本的.Net8上无法使用。

最近在.net8上做开发,Nuget上找到SourceGrid-huanlin发现其有一些不足:编译后,会生成许多冗余的Dll,于是写了个批处理文件删除这些Dll,内容如下:

del  Microsoft.Win32.Registry.AccessControl.dll
del System.CodeDom.dll
del System.Data.Odbc.dll
del System.Data.OleDb.dll
del System.Data.SqlClient.dll
del System.Collections.Immutable.dll del System.ComponentModel.Composition.dll del System.ComponentModel.Composition.Registration.dll del System.Diagnostics.EventLog.dll del System.Diagnostics.PerformanceCounter.dll del System.Diagnostics.EventLog.Messages.dll del System.DirectoryServices.dll del System.DirectoryServices.AccountManagement.dll del System.DirectoryServices.Protocols.dll del System.Formats.Asn1.dll del System.Formats.Nrbf.dll del System.IO.Packaging.dll del System.Private.ServiceModel.dll del System.Reflection.Context.dll del System.Reflection.Metadata.dll del System.Runtime.Caching.dll del System.ServiceModel.dll del System.ServiceModel.Duplex.dll del System.ServiceModel.Http.dll del System.ServiceModel.NetTcp.dll del System.ServiceModel.Primitives.dll del System.ServiceModel.Security.dll del System.ServiceModel.Syndication.dll del System.ServiceProcess.ServiceController.dll del System.Speech.dll del System.Text.Encoding.CodePages.dll del System.Threading.AccessControl.dll del System.Web.Services.Description.dll del System.Speech.dll del System.Text.Encoding.CodePages.dll del System.Threading.AccessControl.dll del System.Web.Services.Description.dll del System.Security.AccessControl.dll del System.Security.Cryptography.Pkcs.dll del System.Security.Cryptography.ProtectedData.dll del System.Security.Cryptography.Xml.dll del System.Security.Permissions.dll del System.Speech.dll del System.Threading.AccessControl.dll del System.Web.Services.Description.dll del Microsoft.Bcl.AsyncInterfaces.dll del Microsoft.Bcl.Cryptography.dll del Microsoft.Extensions.ObjectPool.dll

 

posted on 2026-05-09 14:42  博观约取*厚积薄发  阅读(7)  评论(0)    收藏  举报