Skip to content

Commit

Permalink
初步可用版本
Browse files Browse the repository at this point in the history
  • Loading branch information
lc6464 committed Aug 23, 2023
1 parent 7bdb67e commit 5e3c7eb
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
8 changes: 2 additions & 6 deletions Base16384.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,12 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.0.1.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>1.0.0.0</Version>
</PropertyGroup>
<ItemGroup>
<Reference Include="LC6464.Base16384">
<HintPath>..\..\.NET Library\LC6464.Base16384\bin\Debug\net7.0\LC6464.Base16384.dll</HintPath>
</Reference>
<PackageReference Include="LC6464.Base16384" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<Using Include="System.Text" />
<Using Include="System.Runtime.InteropServices" />
<Using Include="LC6464.Base16384" />
</ItemGroup>
Expand Down
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Base16384.Net

实现已移动到 [lc6464/LC6464.Base16384](https://github.com/lc6464/LC6464.Base16384 "GitHub: lc6464/LC6464.Base16384")
参考:[fumiama/base16384](https://github.com/fumiama/base16384 "GitHub: fumiama/base16384")
实现:[lc6464/LC6464.Base16384](https://github.com/lc6464/LC6464.Base16384 "GitHub: lc6464/LC6464.Base16384")

此项目引用实现后的库,作为控制台应用程序供用户使用。
此项目引用实现后的库,作为控制台应用程序供用户使用。

## 使用方法
### Tree
```
|-- Base16384.Net.exe
|-- Base16384.Net.dll
|-- Source
|-- xxx.jpg
|-- xxx.png
|-- Encoded
|-- xxx.jpg.Encoded
|-- xxx.png.Encoded
```
### Command
```
Base16384.Net.exe <e|d>
```
- e: Encode,将 Source 目录下的文件编码至 Result 目录下
- d: Decode,将 Encoded 目录下的文件解码至 Result 目录下

0 comments on commit 5e3c7eb

Please sign in to comment.