本教程是基于.net core asp.net core5 EF6 codefirst 开发的一个入门级 DEMO,适合初学.net core 的学者或想尝试基于.net 的跨平台开发和应用的coder。
2021-05-06 14:03:22 1.03MB .netcore+EF6
1
vs2017 。net core 3.0 开发的demo,很适合初学.net core 的coder
2021-05-06 14:03:21 9.85MB .netcore实际应用
1
使用C#8.0和.NET Core 3.1构建安全,现代,跨平台和跨体系结构的DNS服务器。 SecureDNS Project旨在实现所有安全DNS协议,无论其被标准化还是被广泛采用; 同时通过反向代理与不安全的DNS-Over-UDP协议保持向后兼容性。 SecureDNS Project是使用现代的模式实施的。 表中的内容 捐献 受支持 发行版 规约 :check_mark: 区块链上的DNS(ENS) :check_mark: UDP上的DNS :check_mark: 通过TCP的DNS :check_mark: TLS上的DNS :check_mark: 通过HTTP的DNS :check_mark: DNSCrypt v2.0 :hourglass_not_done: 区块链上的DNS(握手) :hourglass_not_done: DNS over UDP上的Tor :hourglass_not_done: 通过TCP通过Tor进行DNS :hourglass_not_done: 通过Tor的TLS上的DNS :hourglass_
2021-04-30 12:03:13 18.18MB dns dnscrypt blockchain entity-framework
1
Aspose.Words for .NET 18.7(.net+.net core) 去水印,学习使用
2021-04-29 13:03:54 8.79MB Aspose.Words
1
基于asp.netCore+vue框架实现SignalR实时推送消息功能。协议是webSoket协议
2021-04-29 10:57:13 43.88MB asp.netCore+vue C#SignalR SignalR
1
消息队列8:RabbitMq的QOS实验: 博文地址:https://blog.csdn.net/u010476739/article/details/116197344
2021-04-29 01:38:38 4KB rabbitmq qos c# .netcore
1
在Startup.cs文件中配置Pngquant所在路径 public void ConfigureServices(IServiceCollection services) { if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) { var pngquant = Configuration.GetSection("PngquantPathLinux").Value; PngquantConfig.Configure(new PngquantOptions { BinaryFolder = pngquant }); } if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { var pngquant = Configuration.GetSection("PngquantPathWin").Value; PngquantConfig.Configure(new PngquantOptions { BinaryFolder = pngquant }); } } 使用: FileStream fs = new FileStream(filePath, FileMode.Open); byte[] byData = new byte[fs.Length]; //设置压缩选项 var options = new PngQuantOptions() { QualityMinMax = (65, 80), //Minimum = 65, Maximum = 80. Default null Speed = 1, //Value between 1 and 11. default 3. IEBug = false, //Attempt to fix iebug. default false. Bit = 256 //bit-rate. default 256 }; ///Invoke the compressor Compressor pngQuant = new PngQuant(options); //Compress bytes byte[] compressed = await pngQuant.Compress(byData); MemoryStream ms = new MemoryStream(compressed); //把那个byte[] 数组传进去, 然后 using (FileStream fs = new FileStream(savePath, FileMode.Create, FileAccess.Write)) ms.WriteTo(fs);
2021-04-29 01:38:23 64KB Pngquant C# .netcore
1
VS一键发布项目到远程服务器资源包
2021-04-25 14:01:59 244.83MB IIS VS .ENTCore
1
.NET Core的问世得到了很多公司的青睐,依靠其开发速度快,跨平台性等优势市场占比越来越重,该项目是使用了sqlserver数据库+.Net Core3.0 实现数据的增删改查操作,推荐使用postman做测试
2021-04-19 16:02:47 10.85MB .NET Core
1
NET Core 使用RabbitMQ
2021-04-17 14:01:38 15KB RabbitMQ .NETCore
1