Skip to content

Commit f25ba22

Browse files
committed
reset files
1 parent 429ca32 commit f25ba22

File tree

3 files changed

+2
-26
lines changed

3 files changed

+2
-26
lines changed

PackageIndexer/FindProjectsWithDocs.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Get-ChildItem -Path "C:\users\gewarren\runtime\src\libraries" -Recurse -Filter "*.csproj" -File |
1+
Get-ChildItem -Path "C:\path\to\runtime\src\libraries" -Recurse -Filter "*.csproj" -File |
22
Where-Object { $_.FullName -notlike "*\ref\*" -and $_.FullName -notlike "*\tests\*" -and $_.FullName -notlike "*\gen\*" -and $_.FullName -notlike "*\shims\*" -and $_.FullName -notlike "*\tools\*" -and $_.FullName -notlike "*\System.Private*\*" -and $_.FullName -notlike "*\Fuzzing\*" -and $_.FullName -notlike "*\externals.csproj" -and $_.FullName -notlike "*\Microsoft.NETCore.Platforms\*" -and $_.BaseName -notlike "System.Threading.RateLimiting" -and $_.BaseName -notlike "Microsoft.XmlSerializer.Generator" } |
33
ForEach-Object {
44
$content = Get-Content -Path $_.FullName -Raw

PackageIndexer/PackageIndexer.sln

Lines changed: 0 additions & 24 deletions
This file was deleted.

PackageIndexer/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ internal static class Program
88
private static async Task<int> Main(string[] args)
99
{
1010
#if DEBUG
11-
args = [@"c:\users\gewarren\desktop\Package Index 0623", "preview"];
11+
args = [@"c:\users\gewarren\desktop\Package Index 0227", "preview"];
1212
#endif
1313

1414
if ((args.Length == 0) || (args.Length > 2))

0 commit comments

Comments
 (0)