feat: renaming MfGames.Crypto to MfGames.Cryptography
This commit is contained in:
parent
ca9f4867e6
commit
b6e8f0c1b0
10 changed files with 13 additions and 4 deletions
|
@ -93,7 +93,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MfGames.Nitride.Exec", "src
|
|||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MfGames.Nitride.Exec.Tests", "tests\MfGames.Nitride.Exec.Tests\MfGames.Nitride.Exec.Tests.csproj", "{B47F12D0-70A0-410F-A023-97437A2CEDC6}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MfGames.Crypto", "src\MfGames.Crypto\MfGames.Crypto.csproj", "{832DBBC9-3A53-4F6B-B98C-4059DF780124}"
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MfGames.Cryptography", "src\MfGames.Cryptography\MfGames.Cryptography.csproj", "{832DBBC9-3A53-4F6B-B98C-4059DF780124}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MfGames.Crypto.Tests", "tests\MfGames.Crypto.Tests\MfGames.Crypto.Tests.csproj", "{7A773B2F-ADF4-450F-8F43-D3C3C689E1CE}"
|
||||
EndProject
|
||||
|
|
|
@ -1,6 +1,14 @@
|
|||
# MfGames' CIL Libraries for C# and DotNet
|
||||
# MfGames .NET Libraries
|
||||
|
||||
This is a monorepo that contains a variety of libraries and programs for use with C# and other .NET languages.
|
||||
|
||||
## Libraries
|
||||
|
||||
- Cryptography - Utility functions and helpers for working with encryption and cryptography
|
||||
- [Gallium](./gallium/index.md) - A simple Entity-Component-System (ECS) based on `System.Linq`
|
||||
- IO - Utilities, helpers, and extensions for the `System.IO` namespace
|
||||
- Locking - Wrappers around `SlimReadWriteLock` and other locking
|
||||
- Markdown - A library for manipulating, transforming, and querying Markdown documents
|
||||
- [Nitride](./nitride/index.md) - A static site generator (plus others) library based on Gallium.
|
||||
- TestSetup - An opinionated setup for Xunit that uses Autofac and Serilog
|
||||
- ToolBuilder - An opinionated library for easily creating CLI tools using subcommands
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
<PackageTags>cli</PackageTags>
|
||||
<PackageProjectUrl>https://src.mfgames.com/mfgames-cil/mfgames-cil</PackageProjectUrl>
|
||||
<PackageLicense>MIT</PackageLicense>
|
||||
<RootNamespace>MfGames.Crypto</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
|
@ -30,6 +30,6 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\MfGames.Crypto\MfGames.Crypto.csproj"/>
|
||||
<ProjectReference Include="..\MfGames.Cryptography\MfGames.Cryptography.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\MfGames.Crypto\MfGames.Crypto.csproj" />
|
||||
<ProjectReference Include="..\..\src\MfGames.Cryptography\MfGames.Cryptography.csproj" />
|
||||
<ProjectReference Include="..\..\src\MfGames.Locking\MfGames.Locking.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
|
|
Loading…
Reference in a new issue