上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: Windows 7 系统上,根据 dotnet 官方文档,需要安装上 KB2533623 补丁 方案如下: 首先使用 fx 2.0 写一个启动器 如果检测可以运行则拉起.net core 主程序 否则弹出命令行提示安装补丁 using PInvoke; using System; using Sys 阅读全文
posted @ 2022-10-28 22:35 dongzhaosheng73 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1.产生原因 由Microsoft.VisualStudio.Web.CodeGeneration.Design包导致 2.解决方法 如果确实需要某种语言资源文件,可以这样,右键编辑项目文件,在<PropertyGroup>添加如下 <SatelliteResourceLanguages>zh-Ha 阅读全文
posted @ 2022-10-28 19:11 dongzhaosheng73 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 本文来和大家聊聊在 dotnet 5 和 dotnet 6 或更高版本的 dotnet 构建完成,在 bin 文件夹下,输出的 ref 文件夹。在此文件夹里面,将会包含项目程序集同名的 dll 文件,但是此 dll 文件的大小却很小,那这个文件夹是用来做什么的 在使用 dotnet 5 或更高版本的 阅读全文
posted @ 2022-10-28 18:56 dongzhaosheng73 阅读(177) 评论(0) 推荐(0) 编辑
摘要: <GenerateAssemblyInfo>false</GenerateAssemblyInfo> 阅读全文
posted @ 2022-10-28 18:55 dongzhaosheng73 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 打开项目 csproj文件 将下面两个属性改为false <PropertyGroup> <GenerateAssmblyInfo>false</GenerateAssmblyInfo> <Deterministic>false</Deterministic> </PropertyGroup> 阅读全文
posted @ 2022-10-28 18:54 dongzhaosheng73 阅读(31) 评论(0) 推荐(0) 编辑
摘要: chown [-cfhvR] [--help] [--version] user[:group] file... 参数 : user : 新的文件拥有者的使用者 ID group : 新的文件拥有者的使用者组(group) -c : 显示更改的部分的信息 -f : 忽略错误信息 -h :修复符号链接 阅读全文
posted @ 2022-10-27 12:09 dongzhaosheng73 阅读(14) 评论(0) 推荐(0) 编辑
摘要: https://docs.bughub.icu/compose/Modifiers/ 搜索 复制 阅读全文
posted @ 2022-08-04 18:19 dongzhaosheng73 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/m0_61442607/article/details/121123190 搜索 复制 阅读全文
posted @ 2022-07-29 14:53 dongzhaosheng73 阅读(47) 评论(0) 推荐(0) 编辑
摘要: Cargo.toml [package] build = "build.rs" [build-dependencies] embed-resource = "1.7.2" build.rs 与 Cargo.toml同级 extern crate embed_resource; fn main() { 阅读全文
posted @ 2022-05-27 19:45 dongzhaosheng73 阅读(572) 评论(0) 推荐(0) 编辑
摘要: 1 public static string Decrypt(string combinedString, string keyString) 2 { 3 string plainText; 4 byte[] combinedData = Convert.FromBase64String(combi 阅读全文
posted @ 2022-05-26 22:46 dongzhaosheng73 阅读(584) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页