PowerShell/src/Microsoft.PowerShell.Commands.Utility
xtqqczze 69ded7777a
Use span-based string.Concat inatead of string.Substring (#13500)
Before:

```csharp
str1 + str2.Substring(...) + str3
```

After:
```csharp
string.Concat(str1, str2.AsSpan(...), str3)
```
2020-10-28 13:01:05 +05:00
..
commands/utility Use span-based string.Concat inatead of string.Substring (#13500) 2020-10-28 13:01:05 +05:00
resources Emit warning if ConvertTo-Json exceeds -Depth value (#13692) 2020-09-28 21:22:40 +05:00
singleshell/installer Update copyright notice to latest guidance (#12190) 2020-03-24 11:08:37 -07:00
Microsoft.PowerShell.Commands.Utility.csproj Move PowerShell build to .NET 5 RC.2 (#13780) 2020-10-14 11:04:39 -07:00