Skip to content

Commit

Permalink
Publish stable version 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aimenux committed Dec 24, 2023
1 parent f87c2ef commit 0519881
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App/App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>QrCodeCli-UserSecrets</UserSecretsId>
<Version>0.0.5-preview</Version>
<Version>0.0.1</Version>
<Authors>Aymen TROUDI</Authors>
<PackAsTool>true</PackAsTool>
<PackageId>QrCodeCli</PackageId>
Expand Down
2 changes: 1 addition & 1 deletion src/App/Commands/DecodeCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ protected override void Execute(CommandLineApplication app)
{
var parameters = new QrCodeParameters
{
Input = Input
Input = Path.GetFullPath(Input)
};
var qrCodeText = _qrCodeService.DecodeQrCode(parameters);
Expand Down

0 comments on commit 0519881

Please sign in to comment.