#CORE

asp.net core在发布时排除配置文件

使用命令发布dotnetrestoredotnetpublish-cRelease -rwin-x64-o"D:services" 这样发布总是是将配置文件覆盖 这时候打开项目.csproj新增配置文件<ItemGroup><ContentUpdate="appsetti...

.net core json序列化 long类型转化成字符串

实现类usingSystem;usingSystem.ComponentModel;usingSystem.Linq;usingNewtonsoft.Json;namespaceHolder.Framework.Common{///<inheritdoc/>///<summary>///大数据j...

underscore的bind和bindAll方法

bind方法和bindAll方法都是用来设定函数的this值的,区别是调用方式不同。varxiaoming={say:function(){console.log('Iamxiaoming');}}//bindvarfunc=bind(xiaoming,xiaoming.say);func();//Iamxiaomin...

iOS字符串处理笔记(正则表达式、NSScanner扫描、CoreParse解析器)

最灵活的方法1- (NSRange)rangeOfString:(NSString *)aString options:(NSStringCompareOptions)mask range:(NSRange)searchRange locale:(NSLocale&nb...

dotnet core webapi +vue 搭建前后端完全分离web架构

http://www.bubuko.com/infodetail-2427807.html...

efcore数据库自动生成

//Thismethodgetscalledbytheruntime.UsethismethodtoconfiguretheHTTPrequestpipeline.publicvoidConfigure(IApplicationBuilderapp,IHostingEnvironmentenv,ILoggerFacto...
代码星球 ·2020-06-16

ASP.NET Core 2.0中如何更改Http请求的maxAllowedContentLength最大值

Web.config中的maxAllowedContentLength这个属性可以用来设置Http的Post类型请求可以提交的最大数据量,超过这个数据量的Http请求ASP.NETCore会拒绝并报错,由于ASP.NETCore的项目文件中取消了Web.config文件,所以我们无法直接在visualstudio的解决...

.netCore 支持窗体设计器了

NETCoreWindows窗体设计器VisualStudio2019版本16.6版本中.NETCore项目的Windows窗体设计器现已可用。 若要在VisualStudio中启用设计器,请使用"工具">选项">环境>预览功能",并选择"使用适用于.NETCore应用的预览Windows窗...
代码星球 ·2020-06-02

.netCore下载xls 设置

假如所在目录为downloadapp.UseHttpsRedirection();app.UseStaticFiles(newStaticFileOptions(){FileProvider=newPhysicalFileProvider(Path.Combine(Directory.GetCurrentDirecto...
代码星球 ·2020-06-02

.netcore 3.1 swagger使用

网上的swagger教程很多,配置一堆东西,很容易跑不通,看公司同事搞得用法挺精简,适合入门使用1、nuget安装下面的包    2、增加如下#region区域代码publicvoidConfigureServices(IServiceCollectionservices){se...
代码星球 ·2020-06-02

深入理解JSCore

 https://blog.csdn.net/MeituanTech/article/details/82108667   ...
代码星球 ·2020-06-02

Host ASP.NET Core on Linux with Nginx

https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-nginx?view=aspnetcore-2.2...
代码星球 ·2020-05-25

.Net Core 3.0 Api json web token 中间件签权验证和 Cors 中间件处理跨域请求

第一步:在Nuget上安装"Microsoft.AspNet.WebApi.Cors"包,并对apicontroller使用[EnableCors]特性以及Microsoft.AspNetCore.Authentication.JwtBearer包第二步:创建.netcoreAPI项目/控制器:Authenticate...

.NET Core+NLog+存储配置 日志存入到数据库

nlog-config.xml配置文件:<?xmlversion="1.0"encoding="utf-8"?><nlogxmlns="http://www.nlog-project.org/schemas/NLog.xsd"xmlns:xsi="http://www.w3.org/2001/XMLS...

.NET Core +NuGet 创建打包发布自己的类库包

1.创建类库项目你可以使用现有的.NET类库项目用于要打包的代码,或者创建一个简单的项目,.NETCORE2.1项目的类库如下所示:NugetDemo.classusingSystem;namespaceNugetTest{publicclassNugetDemo{publicstaticStringReturnInf...
首页上一页...1213141516...下一页尾页