Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nenkai committed Mar 8, 2024
1 parent 89955d3 commit c24dd4a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions GBFRDataTools/GBFRDataTools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<FileVersion>1.0.1.0</FileVersion>
<AssemblyVersion>1.2.0</AssemblyVersion>
<FileVersion>1.2.0</FileVersion>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>

Expand Down
14 changes: 7 additions & 7 deletions GBFRDataTools/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GBFRDataTools;

internal class Program
{
public const string Version = "1.0.2";
public const string Version = "1.2.0";

static void Main(string[] args)
{
Expand Down Expand Up @@ -563,22 +563,22 @@ public class BConvertVerbs
public string Output { get; set; }
}

[Verb("tbl-to-sqlite", HelpText = "Converts a folder containing tbl files to sqlite.")]
[Verb("tbl-to-sqlite", HelpText = "Converts a folder containing .tbl files to a SQLite database.")]
public class TblToSqliteVerbs
{
[Option('i', "input", Required = true, HelpText = "Input folder containing tbl files.")]
[Option('i', "input", Required = true, HelpText = "Input folder containing .tbl files.")]
public string Input { get; set; }

[Option('o', "output", HelpText = "Output sqlite file.")]
[Option('o', "output", HelpText = "Output SQLite database file.")]
public string Output { get; set; }
}

[Verb("sqlite-to-tbl", HelpText = "Converts a folder containing tbl files to sqlite.")]
[Verb("sqlite-to-tbl", HelpText = "Converts a SQLite database to .tbl files.")]
public class SqliteToTblVerbs
{
[Option('i', "input", Required = true, HelpText = "Input sqlite file.")]
[Option('i', "input", Required = true, HelpText = "Input SQLite database file.")]
public string Input { get; set; }

[Option('o', "output", HelpText = "Output folder for tbl files.")]
[Option('o', "output", HelpText = "Output folder for .tbl files.")]
public string Output { get; set; }
}

0 comments on commit c24dd4a

Please sign in to comment.