Skip to content

Commit

Permalink
Update package license, version and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Arasz committed Aug 21, 2023
1 parent 29270e4 commit 9bfa557
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
15 changes: 9 additions & 6 deletions DotnetClean.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,21 @@
<RepositoryUrl>https://github.com/Arasz/dotnet-clean-artifacts</RepositoryUrl>
<PackageTags>dotnet, cli, dotnet-cli, tool, tools, clean, artifacts, build</PackageTags>
<Description>.NET Core tool that can clean all your dotnet build artifacts.</Description>
<PackageLicense>https://github.com/Arasz/dotnet-clean-artifacts/blob/master/LICENSE</PackageLicense>
<PackageLicense>https://github.com/Arasz/dotnet-clean-artifacts/blob/main/LICENSE</PackageLicense>
<Version>1.0.2</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.47.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.47.0" />
<PackageReference Include="Spectre.Console" Version="0.47.0"/>
<PackageReference Include="Spectre.Console.Cli" Version="0.47.0"/>
</ItemGroup>

<ItemGroup>
<None Update="README.md" Pack="True" PackagePath="\">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="README.md" Pack="True" PackagePath="\">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="LICENSE" Pack="True" PackagePath="\">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
app.Configure(configurator =>
{
configurator.Settings.ApplicationName = "clean-artifacts";
configurator.Settings.ApplicationVersion = "1.0.1";
configurator.Settings.ApplicationVersion = "1.0.2";
});
await app.RunAsync(args);
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# dotnet-clean-artifacts
[![Build status](https://arasz.visualstudio.com/dotnet-clean-artifacts/_apis/build/status/Build%20and%20push)](https://arasz.visualstudio.com/dotnet-clean-artifacts/_build/latest?definitionId=3)
[![Build and publish package](https://github.com/Arasz/dotnet-clean-artifacts/actions/workflows/dotnet.yml/badge.svg)](https://github.com/Arasz/dotnet-clean-artifacts/actions/workflows/dotnet.yml)
[![CodeQL](https://github.com/Arasz/dotnet-clean-artifacts/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/Arasz/dotnet-clean-artifacts/actions/workflows/github-code-scanning/codeql)

Global .NET Core tool that can clean all your build artifacts.

Expand All @@ -14,10 +15,11 @@ dotnet tool install -g dotnet-clean-artifacts

## How to run it?

Just run

Run in your project main directory:
```
clean-artifacts
```

in your project main directory.
To see all available options run:
```
clean-artifacts -h
```

0 comments on commit 9bfa557

Please sign in to comment.