Skip to content

Commit cdf7030

Browse files
committed
cu
1 parent a3e0b5c commit cdf7030

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

src/delobjbin.ps1

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Get-ChildItem -Path . -Directory -Recurse -Force |
2+
Where-Object {
3+
($_.Name -in 'bin', 'obj') -and
4+
(-not ($_.FullName -match '\\node_modules\\'))
5+
} |
6+
ForEach-Object {
7+
Remove-Item -LiteralPath $_.FullName -Recurse -Force
8+
Write-Host "Deleted folder: $($_.FullName)"
9+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio Version 17
3+
VisualStudioVersion = 17.5.2.0
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dsstats.maui8", "dsstats.maui8.csproj", "{96DBF5BD-55B3-A708-1418-09DB9B2B4D36}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{96DBF5BD-55B3-A708-1418-09DB9B2B4D36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{96DBF5BD-55B3-A708-1418-09DB9B2B4D36}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{96DBF5BD-55B3-A708-1418-09DB9B2B4D36}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{96DBF5BD-55B3-A708-1418-09DB9B2B4D36}.Release|Any CPU.Build.0 = Release|Any CPU
17+
EndGlobalSection
18+
GlobalSection(SolutionProperties) = preSolution
19+
HideSolutionNode = FALSE
20+
EndGlobalSection
21+
GlobalSection(ExtensibilityGlobals) = postSolution
22+
SolutionGuid = {0670133F-D2CA-41E4-AD80-4ED3247015F8}
23+
EndGlobalSection
24+
EndGlobal

0 commit comments

Comments
 (0)