You can simply click the title of this blog to check the reference.
The key is the dotall modifier (?s)
. It helped out me today!
by the way, my final match expression is
rg --pcre2 -U '(?s)\.Initialise\([^,]+,\s*([^,]+),\s*\1(?:,true|false)?\);'
rg is a so fast and so powerful tool in my daily use, I love it!
Reference
docker network ls
then
docker network rm networkname
Remove those deprecated NuGet packages, use the ASP.NET Core shared framework instead
With the release of .NET Core 3.0, many ASP.NET Core assemblies are no longer published to NuGet as packages. Instead, the assemblies are included in the Microsoft.AspNetCore.App shared framework, which is installed with the .NET Core SDK and runtime installers. For a list of packages no longer being published, see Remove obsolete package references.
As of .NET Core 3.0, projects using the Microsoft.NET.Sdk.Web MSBuild SDK implicitly reference the shared framework. Projects using the Microsoft.NET.Sdk or Microsoft.NET.Sdk.Razor SDK must reference ASP.NET Core to use ASP.NET Core APIs in the shared framework.
To reference ASP.NET Core, add the following element to your project file:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
</Project>
Reference
solution
Basically, you need to change or add the following options. The first three lines you can simply copy, but the fourth line, you should change to your own values.
screen mode id:i:2
use multimon:i:1
span monitors:i:1
selectedmonitors:s:3,4
explanation:
-
screen mode id:i:2 -- i
means integer: 2 means fullscreen mode
-
use multimon:i:1 -- the remote desktop session will use multiple montiors
-
span monitors:i:1 -- allow to use part of the monitors for remote desktop session
-
selectedmonitors:s:3,4 -- specify what monitors you want to use: the value 3,4 could be different from yours. run mstsc /l
(l
here is L
in lowercase) to check your own monitor ids.
Reference