告诉我,当从控制台启动时,如何向应用程序 (WebApi) 指示 appsettings.json 配置文件所在目录的路径。
我需要不是从程序本身所在的文件夹运行应用程序,而是从另一个文件夹运行该应用程序。现在启动时抱怨找不到 appsettings.json 文件。
告诉我,需要传递什么输入参数来指示正确文件夹的路径?
告诉我,当从控制台启动时,如何向应用程序 (WebApi) 指示 appsettings.json 配置文件所在目录的路径。
我需要不是从程序本身所在的文件夹运行应用程序,而是从另一个文件夹运行该应用程序。现在启动时抱怨找不到 appsettings.json 文件。
告诉我,需要传递什么输入参数来指示正确文件夹的路径?
早上好,那些没有睡觉的人,当局要求删除规则,然后他们说你为什么删除它们,你们这些傻瓜。我请求你的帮助。不知道如何创建它们
需要使Git Bash成为默认终端,但不是直接通过将路径设置为bash.exe
in "terminal.integrated.shell.windows":
,而是通过VS Code 界面:
那些。在此子菜单中选择“Git Bash”配置文件,或将其设置为默认配置文件:
但 VS Code 看不到“Git Bash”配置文件
settings.json
:
"terminal.integrated.profiles.windows": {
"Git Bash": {
//"source": "Git Bash",
"icon": "terminal-bash",
"path": "D:\\Web\\Git\\bin\\bash.exe"
},
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
}
}
我正在为自己编写一个小实用程序,我想更改罂粟花上的日期。命令“date 120520302021”或“ sudo ntpdate -u time.apple.com ”不起作用。第一个写“日期:settimeofday(timeval):不允许操作”,第二个写“ sudo: ntpdate: command not found ”,时间必须更改为特定的时间和来自苹果服务器的时间,例如(如在第二个命令中)。我最近搬到了罂粟,我真的不知道控制台命令,如果有人告诉我,我将非常感激。非常感谢提前)
我会给你一个昂贵的代码,给那些不想花 9 块钱下载一个特殊库的人。
static void Progressbar() {
var blackBlock = "█";
var middleBlock = "▓";
var ligthBlock = "▒";
int blockCount = 100;
int start = 11;
Console.ForegroundColor = ConsoleColor.Cyan;
var posY = Console.CursorTop;
//var LOADING = " Loading: [{0}{1}{2}]";
// Console.Write(LOADING);
Console.BackgroundColor = ConsoleColor.Blue;
string TEMPLATE = " Loading: [{0}{1}{2}] ";
Console.SetCursorPosition(start, posY);
for (int i = 0; i < 50; i++) {
/* Thread.Sleep(100);
TimeSpan.FromSeconds(100);
Console.Write("{0}", new string(' ', ligthBlock.Length));
Console.SetCursorPosition(Console.CursorLeft - 1, posY);
Console.Write("{0}", new string(' ', middleBlock.Length));
Thread.Sleep(100);
Console.BackgroundColor = ConsoleColor.DarkBlue;
Console.SetCursorPosition(Console.CursorLeft - 1, posY);
Console.Write("{0}", new string(' ', blackBlock.Length));
*/
Thread.Sleep(200);
TimeSpan.FromSeconds(200);
Console.BackgroundColor = ConsoleColor.Gray;
var output = string.Format(" Loading: [{0}{1}{2}] ",
new string(' ', ligthBlock.Length),
new string(' ', middleBlock.Length),
new string(' ', blackBlock.Length));
Console.Write(output);
}
Console.BackgroundColor = ConsoleColor.White;
Console.Write("] \n");
}
升级版:
static void Progressbar() {
int blockCount = 100;
int start = 11;
var posY = Console.CursorTop;
// //012345678911
string template = " Loading: [{0}{1}{2} ] {3}% {4}s";
Console.WriteLine(template);
int maxProgress = 50;
ConsoleProgressBar bar = new ConsoleProgressBar(11, posY, maxProgress);
long previous = -1;
long total = 1000000000;
for (long i = 0; i < total; i++) {
long progress = i * maxProgress / total;
if (progress != previous) {
bar.ShowProgress((int)progress);
previous = progress;
}
}
bar.ShowProgress(maxProgress);
Console.BackgroundColor = ConsoleColor.White;
}
}
public class ConsoleProgressBar {
public int Left { get; set; }
public int Top { get; set; }
public int Length { get; set; }
public ConsoleProgressBar(int left, int top, int length) {
Left = left;
Top = top;
Length = length;
}
public void ShowProgress(int progress) {
if (progress > Length || progress < 0)
throw new ArgumentException($"Invalid progress value, must be between 0 and {Length} but actual {progress}.");
int start = 0;
(int left, int top) = Console.GetCursorPosition();
Console.SetCursorPosition(Left, Top);
Thread.Sleep(100);
Console.Write($"{new string('█', progress)}" +
$"{new string('▓', progress)}" +
$"{new string('░', Length - progress)}" +
$"{new string(Convert.ToChar(start++), Length - progress)}" +
$"{new string(Convert.ToChar(Timer.ActiveCount), Length - progress)}");
Console.SetCursorPosition(left, top);
Thread.Sleep(100);
}
}
为什么不显示]
,完成百分比,完成时间?并且要注意进度条的一半█
还没有结束。在加载过程中括号之间,如果需要,您还可以腾出空闲空间,即ShowProgress
指定第二个参数将检查括号之间的空白是否必要并被填充。
我究竟做错了什么?