基于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
.netcore支付宝扫码支付
2021-04-17 14:00:07 1.08MB .netcore支付宝扫码支付
1
从官方下载的,.net core 5.0 都已经出了。
2021-04-16 22:02:54 61.70MB .netcore asp.netcore
1
.net microservice architecture 权威学习资料
2021-04-16 18:01:53 13.04MB microservice .netCore
1
webapi部署IIS,遇到很多问题,这是解决方案,3.1版本的文件,共3个文件,全部安装即可,这是3-3
2021-04-15 16:05:50 126.11MB webapi iis .netcore c#
1