Skip to content

Commit

Permalink
Add more metadata to console app
Browse files Browse the repository at this point in the history
  • Loading branch information
MortalFlesh committed Jan 4, 2024
1 parent 5e7c743 commit 1580402
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

<!-- There is always Unreleased section on the top. Subsections (Add, Changed, Fix, Removed) should be Add as needed. -->
## Unreleased

## 1.7.0 - 2023-01-04
- Use net8.0
- Update dependencies

Expand Down
2 changes: 1 addition & 1 deletion TucConsole.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TargetFramework>net8.0</TargetFramework>
<PackageId>Tuc.Console</PackageId>
<Description>Console application for managing .tuc files.</Description>
<Version>1.6.0</Version>
<Version>1.7.0</Version>
<PackageProjectUrl>https://github.com/TypedUseCase/tuc-console</PackageProjectUrl>
<RepositoryUrl>https://github.com/TypedUseCase/tuc-console.git</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
Expand Down
5 changes: 5 additions & 0 deletions src/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@ open MF.ErrorHandling
[<EntryPoint>]
let main argv =
consoleApplication {
name AssemblyVersionInformation.AssemblyProduct
title AssemblyVersionInformation.AssemblyProduct
info ApplicationInfo.MainTitle
version AssemblyVersionInformation.AssemblyVersion
description AssemblyVersionInformation.AssemblyDescription

gitBranch AssemblyVersionInformation.AssemblyMetadata_gitbranch
gitCommit AssemblyVersionInformation.AssemblyMetadata_gitcommit

command "domain:check" {
Description = "Checks given domains."
Expand Down

0 comments on commit 1580402

Please sign in to comment.