Skip to content

Commit

Permalink
Prepare for 0.1.0 Release (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppebb authored Mar 18, 2024
1 parent 0f55500 commit 5ac79b1
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 64 deletions.
32 changes: 16 additions & 16 deletions src/Tomat.FNB/Commands/TMOD/TmodPackCommand.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
using System;
using System.Threading.Tasks;
using CliFx;
using CliFx.Attributes;
using CliFx.Infrastructure;
using JetBrains.Annotations;

namespace Tomat.FNB.Commands.TMOD;

[UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
[Command("tmod pack", Description = "Packs a directory into a .tmod file archive")]
public sealed class TmodPackCommand : ICommand {
public ValueTask ExecuteAsync(IConsole console) {
throw new NotImplementedException();
}
}
// using System;
// using System.Threading.Tasks;
// using CliFx;
// using CliFx.Attributes;
// using CliFx.Infrastructure;
// using JetBrains.Annotations;
//
// namespace Tomat.FNB.Commands.TMOD;
//
// [UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
// [Command("tmod pack", Description = "Packs a directory into a .tmod file archive")]
// public sealed class TmodPackCommand : ICommand {
// public ValueTask ExecuteAsync(IConsole console) {
// throw new NotImplementedException();
// }
// }
32 changes: 16 additions & 16 deletions src/Tomat.FNB/Commands/XNB/XnbExtractCommand.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
using System;
using System.Threading.Tasks;
using CliFx;
using CliFx.Attributes;
using CliFx.Infrastructure;
using JetBrains.Annotations;

namespace Tomat.FNB.Commands.XNB;

[UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
[Command("xnb extract", Description = "Extracts an XNB file or directory or XNB files into their original formats")]
public sealed class XnbExtractCommand : ICommand {
public ValueTask ExecuteAsync(IConsole console) {
throw new NotImplementedException();
}
}
// using System;
// using System.Threading.Tasks;
// using CliFx;
// using CliFx.Attributes;
// using CliFx.Infrastructure;
// using JetBrains.Annotations;
//
// namespace Tomat.FNB.Commands.XNB;
//
// [UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
// [Command("xnb extract", Description = "Extracts an XNB file or directory or XNB files into their original formats")]
// public sealed class XnbExtractCommand : ICommand {
// public ValueTask ExecuteAsync(IConsole console) {
// throw new NotImplementedException();
// }
// }
32 changes: 16 additions & 16 deletions src/Tomat.FNB/Commands/XNB/XnbListFormatsCommand.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
using System;
using System.Threading.Tasks;
using CliFx;
using CliFx.Attributes;
using CliFx.Infrastructure;
using JetBrains.Annotations;

namespace Tomat.FNB.Commands.XNB;

[UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
[Command("xnb list-formats", Description = "Lists the known formats that can be extracted from XNB files")]
public sealed class XnbListFormatsCommand : ICommand {
public ValueTask ExecuteAsync(IConsole console) {
throw new NotImplementedException();
}
}
// using System;
// using System.Threading.Tasks;
// using CliFx;
// using CliFx.Attributes;
// using CliFx.Infrastructure;
// using JetBrains.Annotations;
//
// namespace Tomat.FNB.Commands.XNB;
//
// [UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
// [Command("xnb list-formats", Description = "Lists the known formats that can be extracted from XNB files")]
// public sealed class XnbListFormatsCommand : ICommand {
// public ValueTask ExecuteAsync(IConsole console) {
// throw new NotImplementedException();
// }
// }
32 changes: 16 additions & 16 deletions src/Tomat.FNB/Commands/XNB/XnbPackCommand.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
using System;
using System.Threading.Tasks;
using CliFx;
using CliFx.Attributes;
using CliFx.Infrastructure;
using JetBrains.Annotations;

namespace Tomat.FNB.Commands.XNB;

[UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
[Command("xnb pack", Description = "Packs a file or directory of files into XNB files")]
public sealed class XnbPackCommand : ICommand {
public ValueTask ExecuteAsync(IConsole console) {
throw new NotImplementedException();
}
}
// using System;
// using System.Threading.Tasks;
// using CliFx;
// using CliFx.Attributes;
// using CliFx.Infrastructure;
// using JetBrains.Annotations;
//
// namespace Tomat.FNB.Commands.XNB;
//
// [UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
// [Command("xnb pack", Description = "Packs a file or directory of files into XNB files")]
// public sealed class XnbPackCommand : ICommand {
// public ValueTask ExecuteAsync(IConsole console) {
// throw new NotImplementedException();
// }
// }
3 changes: 3 additions & 0 deletions src/Tomat.FNB/Tomat.FNB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

<AssemblyName>fnb</AssemblyName>
<RootNamespace>Tomat.FNB</RootNamespace>
<Version>0.1.0</Version>
<AssemblyVersion>0.1.0</AssemblyVersion>
<FileVersion>0.1.0</FileVersion>

<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand Down

0 comments on commit 5ac79b1

Please sign in to comment.