Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -361,4 +361,8 @@ MigrationBackup/
# Fody - auto-generated XML schema
FodyWeavers.xsd

.idea/
.idea/

# Generated clean scripts (personal artifacts)
clean.cmd
clean.sh
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

Some of this can be handy when working with agentic coding tools which at this stage may have an unconventional approach to tfms, central package management, nuget package references and versions.

> 💡 **Fun fact**: `bld` was born from the frustration of watching gigabytes of build artifacts pile up faster than dependencies in a JavaScript project. Because sometimes you need a tool that speaks fluent MSBuild and knows when to take out the trash. 🗑️

## Quick Start

```powershell
Expand Down
2 changes: 1 addition & 1 deletion bld/Commands/StatsCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ protected override async Task<int> ExecuteAsync(ParseResult parseResult, Cancell
var errors = new List<string>();

var options = new CleaningOptions {
Delete = false, //TODO parseResult.GetValue(_deleteOption),
Delete = false,
CleanOnlyNonCurrentTfms = parseResult.GetValue(_nonCurrentOption),
CleanObjDirectory = parseResult.GetValue(_objOption),
CleanNupkgFiles = parseResult.GetValue(_nupkgOption),
Expand Down
7 changes: 0 additions & 7 deletions bld/bld.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,10 @@
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<!--<IncludeSymbols>false</IncludeSymbols>-->
<!--<SymbolPackageFormat>snupkg</SymbolPackageFormat>-->
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Build" ExcludeAssets="runtime" />
<!--<PackageReference Include="Microsoft.Build" Version="17.14.8" ExcludeAssets="runtime"/>-->
<PackageReference Include="Microsoft.Build.Locator" />
<PackageReference Include="Spectre.Console" />
<PackageReference Include="System.CommandLine" />
Expand All @@ -40,16 +37,12 @@
<PackAsTool>true</PackAsTool>
<ToolCommandName>bld</ToolCommandName>
<AssemblyName>bld</AssemblyName>
<!--<PackageOutputPath></PackageOutputPath>-->
<!--<RuntimeIdentifier>win-x64</RuntimeIdentifier>-->
<!--<PackageId></PackageId>-->
<PackageId>Cloudsiders.bld</PackageId>
<PackageVersion>0.1.1</PackageVersion>
<Authors>dlosch</Authors>
<Description>Tool to clean build output folders for msbuild</Description>
<PackageTags>msbuild</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<!--<PackageLicenseFile>LICENSE</PackageLicenseFile>-->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>
Expand Down
2 changes: 0 additions & 2 deletions bld/clean.cmd

This file was deleted.