diff --git a/.vs/ProjectEvaluation/shop.metadata.v6.1 b/.vs/ProjectEvaluation/shop.metadata.v6.1
new file mode 100644
index 0000000..826a37d
Binary files /dev/null and b/.vs/ProjectEvaluation/shop.metadata.v6.1 differ
diff --git a/.vs/ProjectEvaluation/shop.projects.v6.1 b/.vs/ProjectEvaluation/shop.projects.v6.1
new file mode 100644
index 0000000..1d4f035
Binary files /dev/null and b/.vs/ProjectEvaluation/shop.projects.v6.1 differ
diff --git a/.vs/Shop/DesignTimeBuild/.dtbcache.v2 b/.vs/Shop/DesignTimeBuild/.dtbcache.v2
new file mode 100644
index 0000000..d7b7339
Binary files /dev/null and b/.vs/Shop/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/.vs/Shop/FileContentIndex/119387f1-6f25-4456-8c0c-676352ec0953.vsidx b/.vs/Shop/FileContentIndex/119387f1-6f25-4456-8c0c-676352ec0953.vsidx
new file mode 100644
index 0000000..939e060
Binary files /dev/null and b/.vs/Shop/FileContentIndex/119387f1-6f25-4456-8c0c-676352ec0953.vsidx differ
diff --git a/.vs/Shop/FileContentIndex/b3f10fc4-3c7a-4394-9425-00c18f7ad43d.vsidx b/.vs/Shop/FileContentIndex/b3f10fc4-3c7a-4394-9425-00c18f7ad43d.vsidx
new file mode 100644
index 0000000..c2ea672
Binary files /dev/null and b/.vs/Shop/FileContentIndex/b3f10fc4-3c7a-4394-9425-00c18f7ad43d.vsidx differ
diff --git a/.vs/Shop/FileContentIndex/c90df417-6f79-4158-aa59-478527c38087.vsidx b/.vs/Shop/FileContentIndex/c90df417-6f79-4158-aa59-478527c38087.vsidx
new file mode 100644
index 0000000..a51d7b3
Binary files /dev/null and b/.vs/Shop/FileContentIndex/c90df417-6f79-4158-aa59-478527c38087.vsidx differ
diff --git a/.vs/Shop/FileContentIndex/read.lock b/.vs/Shop/FileContentIndex/read.lock
new file mode 100644
index 0000000..e69de29
diff --git a/.vs/Shop/v17/.futdcache.v2 b/.vs/Shop/v17/.futdcache.v2
new file mode 100644
index 0000000..598403e
Binary files /dev/null and b/.vs/Shop/v17/.futdcache.v2 differ
diff --git a/.vs/Shop/v17/.suo b/.vs/Shop/v17/.suo
new file mode 100644
index 0000000..4c9049d
Binary files /dev/null and b/.vs/Shop/v17/.suo differ
diff --git a/Config.cs b/Config.cs
index d5761b6..f7e391d 100644
--- a/Config.cs
+++ b/Config.cs
@@ -8,6 +8,7 @@ public class ItemInfo
public string Name = "";
public bool Infinity = false;
public int Amount = 0;
+ public byte modifierId = 0;
/// Цена купли у игрока
public string SelPrice = "0";
@@ -18,6 +19,7 @@ public class ItemInfo
public class Config
{
public string BuyCommand = "";
+ public string ListShopItemsCommand = "";
public string BuyItemPermission = "";
public string SellCommand = "";
public string SellItemPermission = "";
diff --git a/Dependencies/OTAPI.dll b/Dependencies/OTAPI.dll
deleted file mode 100644
index 14ae973..0000000
Binary files a/Dependencies/OTAPI.dll and /dev/null differ
diff --git a/Dependencies/TShockAPI.dll b/Dependencies/TShockAPI.dll
deleted file mode 100644
index 8802cc5..0000000
Binary files a/Dependencies/TShockAPI.dll and /dev/null differ
diff --git a/Dependencies/TerrariaServer.exe b/Dependencies/TerrariaServer.exe
deleted file mode 100644
index c9bae31..0000000
Binary files a/Dependencies/TerrariaServer.exe and /dev/null differ
diff --git a/Dependencies/Wolfje.Plugins.SEconomy.dll b/Dependencies/Wolfje.Plugins.SEconomy.dll
deleted file mode 100644
index 7949a66..0000000
Binary files a/Dependencies/Wolfje.Plugins.SEconomy.dll and /dev/null differ
diff --git a/Lang.cs b/Lang.cs
index bd3c337..5bb0e87 100644
--- a/Lang.cs
+++ b/Lang.cs
@@ -5,6 +5,7 @@ namespace ShopPlugin
class Lang
{
private static string _buyCommand = "buy";
+ private static string _listItemCommand = "list";
private static string _buyItemPermission = "shop.buy";
private static string _sellCommand = "sell";
private static string _sellItemPermission = "shop.sell";
@@ -17,22 +18,23 @@ class Lang
private static Dictionary _message = new Dictionary
{
{"Load", "[Shop] Loaded {0} items in shop"},
- {"NoPerms", "[Shop] Вы не можете использовать эту команду."},
- {"BuyInfo", "[Shop] /{0} {1} (Id предмета) [Кол-во]"},
- {"SellInfo", "[Shop] /{0} {1}"},
- {"SearchInfo", "[Shop] /{0} {1} (Id предмета)"},
- {"NoSlot", "[Shop] В вашем рюкзаке нет места!" },
- {"TooMany", "[Shop] У нас есть только {0} {1}"},
- {"OnBuy", "[Shop] Вы купили {0} {1} за {2}"},
- {"OnSell", "[Shop] Вы продали {0} {1} за {2}"},
- {"EmptyHand", "[Shop] Возьмите предмет в руку, затем напишите /{0} {1}"},
- {"WrongSellItem", "[Shop] Мы не покупаем данный предмет" },
- {"Error", "[Shop] Что-то пошло не так!" },
- {"NoMatch", "[Shop] У нас нет такого в ассортименте!" },
- {"SearchItem", "[Shop] {0} | Цена продажи: {1} | Цена покупки: {2} | Кол-во на складе: {3}" },
- {"NotInShop", "[Shop] Чтобы пользоваться магазином вы должны находится на территории прилавка." },
- {"ShopCommands", "[Shop] Комманды магазина:" },
- {"NoMoney", "У вас недостаточно виты! Нужно {0}"}
+ {"NoPerms", "[Shop] You cannot use this command."},
+ {"BuyInfo", "[Shop] /{0} {1} (Item index/name) [Quantity] - buy an item depending on its index/name"},
+ {"SellInfo", "[Shop] /{0} {1} - sell whats in your selected slot in the hotbar."},
+ {"ListItems", "[Shop] /{0} {1} - list items presently in the shop."},
+ {"SearchInfo", "[Shop] /{0} {1} Optional:(Item ID/name) - searches if an item from either its id/name or from what you have selected in your hotbar is in the shop and gives you its prices/index."},
+ {"NoSlot", "[Shop] There is no room in your inventory!" },
+ {"TooMany", "[Shop] We only have [c/{0}:{1}] [i:{2}]."},
+ {"OnBuy", "[Shop] [c/{0}:Purchase was successfull!] You bought [c/{1}:{2}] [i/p{3}:{4}] for {5}, you have {6} left in your bank."},
+ {"OnSell", "[Shop] [c/{0}:Sale was successfull!] You sold [c/{1}:{2}] [i/p{3}:{4}] for {5}, you now have {6} in your bank."},
+ {"EmptyHand", "[Shop] Select an item in your hotbar, then type /{0} {1}"},
+ {"WrongSellItem", "[Shop] We can't buy this item" },
+ {"Error", "[Shop] Something went wrong!" },
+ {"NoMatch", "[Shop] We don't have that in stock!" },
+ {"SearchItem", "[Shop] - {0} [{1}] - [c/{2}:{3}]([c/{4}:{5}]) [c/{6}:B:] {7} {8}" },
+ {"NotInShop", "[Shop] You must be in the area of the counter to use the shop." },
+ {"ShopCommands", "[Shop] Shop Commands:" },
+ {"NoMoney", "You don't have enough money! You are missing: {0}"}
};
public static Config DefaultConfig()
@@ -41,6 +43,7 @@ public static Config DefaultConfig()
{
BuyCommand = _buyCommand,
BuyItemPermission = _buyItemPermission,
+ ListShopItemsCommand = _listItemCommand,
SellCommand = _sellCommand,
SellItemPermission = _sellItemPermission,
ShopCommand = _shopCommand,
@@ -60,16 +63,18 @@ public static Config DefaultConfig()
Name = Terraria.Lang.GetItemNameValue(19),
Infinity = false,
Amount = 500,
+
SelPrice = "1000",
BuyPrice = "2000"
},
new ItemInfo
{
- Id = 20,
- Name = Terraria.Lang.GetItemNameValue(20),
+ Id = 46,
+ Name = Terraria.Lang.GetItemNameValue(46),
+ modifierId = 40,
Infinity = false,
Amount = 500,
- SelPrice = "500",
+ SelPrice = "0",
BuyPrice = "1000"
},
new ItemInfo
diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs
index 1de8fdc..03c53cf 100644
--- a/Properties/AssemblyInfo.cs
+++ b/Properties/AssemblyInfo.cs
@@ -1,16 +1,6 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("Shop")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("Shop")]
-[assembly: AssemblyCopyright("Copyright © 2013")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -21,16 +11,3 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("e1d99b54-627a-4b0b-a3b5-f635562b4a44")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..4fba39c
--- /dev/null
+++ b/README.md
@@ -0,0 +1,55 @@
+# Shop-plugin
+Shop plugin to sell/buy items from a global shop with SEconomy.
+
+- Originally made by [bokmako](https://github.com/bokmako).
+- Updated to **TShock** `5.2` for `1.4.4.9` and translated to English by Maxthegreat99.
+
+## How to Install
+1. Put the .dll into the `\ServerPlugins\` folder.
+2. Restart the server.
+3. Give your desired group the the permissions defined in the configs folder.
+
+## How to Use
+#### NOTE: you can modify most commands / permissions / messages in the configs.
+### User instructions
+- define a region with the same name as the `ShopRegionName` field defined in the configs, `Shop` being the default assigned value. You are needed to be within the shop region to use most commands.
+- give your desired groups the different permissions depending on the commands you want the group to be able to use, `shop.shop` being the default permission to use the base command.
+- add items to the shop using the configs and do `/Shop list` within the shop to see if they were added properly.
+
+### Commands and Usage
+- `shop` - base commands, gives you a list a commands if in the shop region.
+- `shop list` - list items presently in the shop in an index, this command can be used anywhere in the world.
+- `shop buy (Item index/name) [Quantity]` - buy an item depending on its index/name.
+- `shop sell` - sell whats in your selected slot in the hotbar(If you give a group this permission, it is recommended that the world has SSC on).
+- `shop search Optional:(Item ID/name)` - searches if an item from either its id/name or from what you have selected in your hotbar is in the shop and gives you its prices/index.
+
+### Config Options
+#### Configs not stated are configs to change commands / permissions or messages.
+- `ShopRegionName` - Name of the Shop region where the commands will be available for players to use.
+- `Items` - List of items available in the global shop
+ - `Id` - ID of an item in global shop.
+ - `Name` - the name of an item in the global shop.
+ - `Infinity` - wheather or not this item should be in infinite supply.
+ - `Amount` - the amount of that item that is presently in the shop, may be changed no matter what.
+ - `modifierId` - the modifier of the item in the shop, of course wont work with some items.
+ - `SelPrice` - the price which the shop buys the item, players cant sell if the selling price is below 1.
+ - `BuyPrice` - the price which the shop sells the item, players cant buy buy items with a price below 0.
+
+### Important
+- you of course need SEconomy to use this plugin, if you dont have it you can get it [here](https://github.com/Maxthegreat99/SEconomy).
+
+## How to Build
+1. Download the source code.
+2. Open the `.sln` file.
+3. Check to make sure the references are all correct and up to date.
+4. Build.
+
+## Notes
+- As of right now the plugin is still in pre-release so all the features are not added yet and there might be some bugs or unusual things, if you do find them you can report them to this [discord](https://discord.gg/e465y7Xeba) where I(Maxthegreat) will be notified and try to fix them.
+- I did not keep the russian version of the plugin and i am sorry for that, i shall add an option to use the plugin in russian in the configs in the release as well as make a russian readme.
+- Note that [bokmako](https://github.com/bokmako) did an amazing work with this plugin and that it would have been hard for me to make what he did from scratch, most of the credits goes to them.
+
+## Original repository
+https://github.com/bokmako/Shop-plugin
+
+
diff --git a/Shop.csproj b/Shop.csproj
index 01d79ce..a774dde 100644
--- a/Shop.csproj
+++ b/Shop.csproj
@@ -1,66 +1,24 @@
-
-
-
+
- Debug
- AnyCPU
- {71536203-48D3-4682-8E66-E9AFB2817585}
+ net6.0
Library
- Properties
- Shop
- Shop
- v4.5.2
- 512
-
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
+ false
+ Shop
+ Shop
+ Copyright © 2013
+ 1.0.0.0
+ 1.0.0.0
+ x64
+ AnyCPU;x64
-
- False
- ..\..\терка плагины\Plugin\SeRanking\Newtonsoft.Json.dll
-
-
- ..\..\терка плагины\Plugin\черновик\Тшок\OTAPI.dll
-
-
-
- ..\..\терка плагины\Plugin\черновик\Тшок\TerrariaServer.exe
-
-
- ..\..\терка плагины\Plugin\черновик\Тшок\ServerPlugins\TShockAPI.dll
-
-
- ..\..\терка плагины\Plugin\SeRanking\ServerPlugins\Wolfje.Plugins.SEconomy.dll
-
+
+
+
-
-
-
-
+
+ ..\Dependencies\Wolfje.Plugins.SEconomy.dll
+
-
-
\ No newline at end of file
diff --git a/Shop.sln b/Shop.sln
index 4104275..0c4fe0a 100644
--- a/Shop.sln
+++ b/Shop.sln
@@ -1,20 +1,25 @@
-
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.31729.503
+# Visual Studio Version 17
+VisualStudioVersion = 17.5.33424.131
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shop", "Shop.csproj", "{71536203-48D3-4682-8E66-E9AFB2817585}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Shop", "Shop.csproj", "{71536203-48D3-4682-8E66-E9AFB2817585}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
+ Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
+ Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{71536203-48D3-4682-8E66-E9AFB2817585}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{71536203-48D3-4682-8E66-E9AFB2817585}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {71536203-48D3-4682-8E66-E9AFB2817585}.Debug|x64.ActiveCfg = Debug|x64
+ {71536203-48D3-4682-8E66-E9AFB2817585}.Debug|x64.Build.0 = Debug|x64
{71536203-48D3-4682-8E66-E9AFB2817585}.Release|Any CPU.ActiveCfg = Release|Any CPU
{71536203-48D3-4682-8E66-E9AFB2817585}.Release|Any CPU.Build.0 = Release|Any CPU
+ {71536203-48D3-4682-8E66-E9AFB2817585}.Release|x64.ActiveCfg = Release|x64
+ {71536203-48D3-4682-8E66-E9AFB2817585}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/ShopPlugin.cs b/ShopPlugin.cs
index 71eadae..7c917ff 100644
--- a/ShopPlugin.cs
+++ b/ShopPlugin.cs
@@ -7,6 +7,7 @@
using TerrariaApi.Server;
using TShockAPI;
using Wolfje.Plugins.SEconomy;
+using Color = Microsoft.Xna.Framework.Color;
namespace ShopPlugin
{
@@ -19,9 +20,9 @@ public ShopPlugin(Main game) : base(game)
{
}
private Config config;
- public override string Author => "Bokmako";
+ public override string Author => "Bokmako|Maxthegreat99";
public override string Name => "ShopPlugin";
- public override Version Version => new Version(0, 0, 0, 1);
+ public override Version Version => new Version(0, 1, 0, 0);
public override string Description => "A shop plugin.";
public override void Initialize()
@@ -43,7 +44,7 @@ public override void Initialize()
Lot++;
}
Console.WriteLine(config.Messages["Load"], Lot);
- Commands.ChatCommands.Add(new Command(config.BuyItemPermission, Shop,
+ Commands.ChatCommands.Add(new Command( Shop,
!config.ShopCommand.Contains(" ")
? config.ShopCommand
: throw new ArgumentException("Command contains space")));
@@ -67,16 +68,17 @@ private bool IsInShop(CommandArgs args)
return false;
foreach(var reg in rg)
{
- if (reg == "Shop")
+ if (reg == config.ShopRegionName)
return true;
}
return false;
}
private void Shop(CommandArgs args)
{
- if (!IsInShop(args))
+ string cmd = "";
+ if (!SEconomyPlugin.Instance.GetBankAccount(args.Player).IsAccountEnabled)
{
- args.Player.SendInfoMessage(config.Messages["NotInShop"]);
+ args.Player.SendErrorMessage("[Shop] Error: Your bank account is not enabled! you cannot access the shop.");
return;
}
if (!args.Player.HasPermission(config.ShopPermission))
@@ -84,50 +86,107 @@ private void Shop(CommandArgs args)
args.Player.SendInfoMessage(config.Messages["NoPerms"]);
return;
}
+ if(args.Parameters.Count > 0)
+ cmd = args.Parameters[0].ToLower();
+
+ #region list senario
+ if (!cmd.Equals("") && cmd.Equals(config.ListShopItemsCommand))
+ {
+ args.Player.SendMessage("[Shop] List of items present in the global shop:", Microsoft.Xna.Framework.Color.Green);
+ int i = 0;
+ foreach (ItemInfo item in config.Items)
+ {
+ i++;
+ Item tItem = TShock.Utils.GetItemById(item.Id);
+ tItem.Prefix(item.modifierId);
+ Money buyingPriceToShow;
+ Money.TryParse(item.BuyPrice, out buyingPriceToShow);
+ Money sellingPriceToShow;
+ Money.TryParse(item.SelPrice, out sellingPriceToShow);
+ string itemShown = string.Format((item.modifierId != 0) ? "[i/p{0}:{1}]" : "[i:{1}]", tItem.prefix, item.Id);
+ args.Player.SendInfoMessage("- {0} [{1}] - [c/{2}:{3}]([c/{4}:{5}]) [c/{6}:B:] {7} {8}", i, itemShown,
+ Microsoft.Xna.Framework.Color.Gold.Hex3(), tItem.HoverName,
+ (item.Infinity || item.Amount != 0) ? Microsoft.Xna.Framework.Color.Green.Hex3() : Microsoft.Xna.Framework.Color.Red.Hex3(),
+ item.Infinity ? "+" : item.Amount.ToString(),
+ Microsoft.Xna.Framework.Color.Magenta.Hex3(),
+ buyingPriceToShow.ToString(),
+ (sellingPriceToShow.Value < 0) ? "" : string.Format("[c/{0}:S:] {1}",
+ Microsoft.Xna.Framework.Color.Magenta.Hex3(),
+ sellingPriceToShow.ToString()));
+ }
+ args.Player.SendInfoMessage("You have: {0}",SEconomyPlugin.Instance.GetBankAccount(args.Player).Balance.ToString());
+ if (!IsInShop(args))
+ args.Player.SendErrorMessage("[Shop] You have to be in the shop to buy items!");
+
+ return;
+ }
+ #endregion
+ if (!IsInShop(args))
+ {
+ args.Player.SendInfoMessage(config.Messages["NotInShop"]);
+ return;
+ }
+
if (args.Parameters.Count == 0)
{
args.Player.SendInfoMessage(config.Messages["ShopCommands"]);
+ args.Player.SendInfoMessage(config.Messages["ListItems"], config.ShopCommand, config.ListShopItemsCommand);
args.Player.SendInfoMessage(config.Messages["BuyInfo"], config.ShopCommand, config.BuyCommand);
args.Player.SendInfoMessage(config.Messages["SellInfo"], config.ShopCommand, config.SellCommand);
args.Player.SendInfoMessage(config.Messages["SearchInfo"], config.ShopCommand, config.SearchCommand);
return;
}
- string cmd = args.Parameters[0].ToLower();
+
#region Buy scenario
if (cmd == config.BuyCommand)
{
if (args.Player.HasPermission(config.BuyItemPermission))
{
- if (args.Parameters.Count != 3)
+ if (args.Parameters.Count > 3)
{
args.Player.SendInfoMessage(config.Messages["BuyInfo"], config.ShopCommand, config.BuyCommand);
}
if (args.Parameters.Count == 3 || args.Parameters.Count == 2)
{
- int id;
+ int index = 0;
+ string name;
+
int amount = 1;
- if (!int.TryParse(args.Parameters[1], out id))
+ if (int.TryParse(args.Parameters[1], out index) && ( index < 1 || index > config.Items.Count ) )
{
- args.Player.SendErrorMessage("Error: Invalid Id entered!");
+ args.Player.SendErrorMessage("[Shop] Error: Invalid index entered!");
return;
}
+ else
+ {
+ name = args.Parameters[1];
+ if(TShock.Utils.GetItemByIdOrName(name) == null)
+ {
+ args.Player.SendErrorMessage("[Shop] Error: Invalid item name entered!");
+ return;
+ }
+ }
if (args.Parameters.Count == 3)
{
- if (!int.TryParse(args.Parameters[2], out amount))
+ if (!int.TryParse(args.Parameters[2], out amount) || amount < 1)
{
- args.Player.SendErrorMessage("Error: Invalid amount entered!");
+ args.Player.SendErrorMessage("[Shop] Error: Invalid amount entered!");
return;
}
}
int ItemNumber = 0;
ItemInfo Item = null;
+ int maxStack = 0;
ReadConfig(filepath, Lang.DefaultConfig(), out config);
for (int i = 0; i <= config.Items.Count - 1; i++)
{
- if (config.Items[i].Id == id)
+ Item tItem = TShock.Utils.GetItemByName(config.Items[i].Name)[0];
+ tItem.prefix = config.Items[i].modifierId;
+ if (i == index - 1 || tItem.HoverName.StartsWith(name) || tItem.Name.StartsWith(name) )
{
Item = config.Items[i];
ItemNumber = i;
+ maxStack = tItem.maxStack;
break;
}
}
@@ -141,13 +200,24 @@ private void Shop(CommandArgs args)
args.Player.SendInfoMessage(config.Messages["TooMany"], Item.Amount, Terraria.Lang.GetItemNameValue(Item.Id));
return;
}
- if (!args.Player.InventorySlotAvailable)
+ int slotsAvailable = 0;
+ //gets how many empty slots player has
+ for(int i = 0; i < NetItem.InventorySlots; i++)
+ {
+ if (args.TPlayer.inventory[i] == null || !args.TPlayer.inventory[i].active || args.TPlayer.inventory[i].Name == "")
+ {
+ slotsAvailable++;
+ }
+ }
+ if (!args.Player.InventorySlotAvailable || slotsAvailable < (int) Math.Ceiling((double)amount / maxStack) )
{
args.Player.SendInfoMessage(config.Messages["NoSlot"]);
+ return;
}
if (args.Player.InventorySlotAvailable)
{
TryToBuy(args.Player, Item, amount, ItemNumber);
+ return;
}
}
}
@@ -163,6 +233,7 @@ private void Shop(CommandArgs args)
}
TryToSell(args);
+ return;
}
#endregion
#region Search scenario
@@ -182,9 +253,12 @@ private void Shop(CommandArgs args)
ItemInfo vItem = new ItemInfo();
bool vFound = false;
int IdItem = 0;
+ int itemIndex = 0;
+ Item tItem = new Item();
+ string itemName = "null";
if (args.Parameters.Count == 1)
{
- if (args.Player.SelectedItem.netID == 0)
+ if (args.Player.SelectedItem.netID == 0 || TShock.Utils.GetItemById(args.Player.SelectedItem.netID) == null)
{
args.Player.SendInfoMessage(config.Messages["SearchInfo"], config.ShopCommand, config.SearchCommand);
return;
@@ -196,20 +270,33 @@ private void Shop(CommandArgs args)
}
if (args.Parameters.Count == 2)
{
- if (!int.TryParse(args.Parameters[1], out int _idItem))
+ itemName = args.Parameters[1];
+ if (int.TryParse(args.Parameters[1], out IdItem) && IdItem < 1 || IdItem > Terraria.ID.ItemID.Count - 1)
{
args.Player.SendInfoMessage(config.Messages["SearchInfo"], config.ShopCommand, config.SearchCommand);
return;
}
- IdItem = _idItem;
+ else
+ {
+
+ if (TShock.Utils.GetItemByName(itemName) == null)
+ {
+ args.Player.SendInfoMessage(config.Messages["SearchInfo"], config.ShopCommand, config.SearchCommand);
+ return;
+ }
+ }
}
ReadConfig(filepath, Lang.DefaultConfig(), out config);
for (int i = 0; i < config.Items.Count; i++)
{
- if (IdItem == config.Items[i].Id)
+ Item _tItem = TShock.Utils.GetItemByName(config.Items[i].Name)[0];
+ _tItem.prefix = config.Items[i].modifierId;
+ if (IdItem == config.Items[i].Id || config.Items[i].Name.StartsWith(itemName) || _tItem.HoverName.StartsWith(itemName) )
{
vFound = true;
vItem = config.Items[i];
+ tItem = _tItem;
+ itemIndex = i + 1;
break;
}
}
@@ -220,37 +307,67 @@ private void Shop(CommandArgs args)
}
Money.TryParse(vItem.SelPrice, out var _sellPrice);
Money.TryParse(vItem.BuyPrice, out var _buyPrice);
- args.Player.SendInfoMessage(config.Messages["SearchItem"], Terraria.Lang.GetItemNameValue(vItem.Id), _sellPrice.ToString(), _buyPrice.ToString(), vItem.Amount);
-
+ string itemShown = string.Format((vItem.modifierId != 0) ? "[i/p{0}:{1}]" : "[i:{1}]", tItem.prefix, tItem.netID);
+ args.Player.SendInfoMessage(config.Messages["SearchItem"], itemIndex, itemShown,
+ Microsoft.Xna.Framework.Color.Gold.Hex3(), tItem.HoverName,
+ (vItem.Infinity || vItem.Amount != 0) ? Microsoft.Xna.Framework.Color.Green.Hex3() : Microsoft.Xna.Framework.Color.Red.Hex3(),
+ vItem.Infinity ? "+" : vItem.Amount.ToString(),
+ Microsoft.Xna.Framework.Color.Magenta.Hex3(),
+ _buyPrice.ToString(),
+ (_sellPrice.Value < 0) ? "" : string.Format("[c/{0}:S:] {1}",
+ Microsoft.Xna.Framework.Color.Magenta.Hex3(),
+ _sellPrice.ToString()));
+ return;
}
-
+ #endregion
+ args.Player.SendErrorMessage("Error: Invalid command, please do {0}{1} to see the list of commands!", TShock.Config.Settings.CommandSpecifier, config.ShopCommand);
}
- #endregion
+
private bool TryToBuy(TSPlayer pPlayer, ItemInfo pItem, int pStack, int pNumber)
{
var Bank = SEconomyPlugin.Instance.GetBankAccount(pPlayer);
if(Int32.TryParse(pItem.BuyPrice, out var x) && x < 0)
{
- pPlayer.SendInfoMessage("[Shop] Мы не продаем {0}. Только покупаем!", pItem.Name);
+ pPlayer.SendInfoMessage("[Shop] We don't sell {0}. We only buy!", pItem.Name);
return false;
}
int _itemCost = Convert.ToInt32(pItem.BuyPrice) * pStack;
- if (Bank == null || Bank.IsAccountEnabled == false || !Money.TryParse(Convert.ToString(_itemCost), out var itemCost))
+ if (Bank == null || Bank.IsAccountEnabled == false || !Money.TryParse(Convert.ToString(_itemCost), out var itemCost))
{
return false;
}
if (Bank.Balance < itemCost)
{
- pPlayer.SendInfoMessage(config.Messages["NoMoney"], _itemCost);
+ pPlayer.SendInfoMessage(config.Messages["NoMoney"], (((Money)_itemCost) - Bank.Balance).ToString());
return false;
}
if(!pItem.Infinity)
ShopManager(pStack, pNumber, true);
+
Bank.TransferTo(SEconomyPlugin.Instance.WorldAccount, itemCost, Wolfje.Plugins.SEconomy.Journal.BankAccountTransferOptions.AnnounceToSender | Wolfje.Plugins.SEconomy.Journal.BankAccountTransferOptions.IsPayment,
"Purchase", string.Format("For buying {0} {1}", pStack, Terraria.Lang.GetItemNameValue(pItem.Id)));
- OnBuySell(pPlayer, pStack, Terraria.Lang.GetItemNameValue(pItem.Id), itemCost.ToString(), true);
- TShock.Log.Write(string.Format("{0} купил(а) {1} за {2}", pPlayer.Name, pItem.Name, _itemCost.ToString()), System.Diagnostics.TraceLevel.Info);
- pPlayer.GiveItem(pItem.Id, pStack);
+
+ pPlayer.SendInfoMessage(config.Messages["OnBuy"],
+ Color.Green.Hex3(), Color.Magenta.Hex3(), pStack, pItem.modifierId, pItem.Id, itemCost.ToString(), Bank.Balance.ToString());
+
+
+
+ TShock.Log.Write(string.Format("{0} bought {1} for {2}", pPlayer.Name, pItem.Name, _itemCost.ToString()), System.Diagnostics.TraceLevel.Info);
+
+ Item tItem = TShock.Utils.GetItemById(pItem.Id);
+
+ double _slotsToFill = pStack / tItem.maxStack;
+ int slotsToFill = (int)Math.Ceiling(_slotsToFill);
+ if (pStack < tItem.maxStack)
+ slotsToFill = 1;
+ for(int i = 0; i < slotsToFill; i++)
+ {
+ int amountToFill = tItem.maxStack;
+ if (i == slotsToFill - 1)
+ amountToFill = pStack - ((slotsToFill - 1) * tItem.maxStack);
+ pPlayer.GiveItem(pItem.Id, amountToFill, pItem.modifierId);
+ }
+
return true;
}
private bool TryToSell(CommandArgs args)
@@ -279,9 +396,9 @@ private bool TryToSell(CommandArgs args)
args.Player.SendInfoMessage(string.Format(config.Messages["WrongSellItem"], config.ShopCommand, config.SellCommand));
return false;
}
- if (Int32.TryParse(vItem.SelPrice, out var x) && x < 0)
+ if (Int32.TryParse(vItem.SelPrice, out var x) && x < 1)
{
- args.Player.SendInfoMessage("[Shop] Мы не покупаем {0}. Только продаем!", vItem.Name);
+ args.Player.SendInfoMessage("[Shop] We don't buy {0}. We only sell!", vItem.Name);
return false;
}
@@ -294,15 +411,40 @@ private bool TryToSell(CommandArgs args)
args.Player.SendErrorMessage(config.Messages["Error"]);
return false;
}
- int InvItem = Array.IndexOf(args.Player.TPlayer.inventory, args.Player.SelectedItem);
- args.Player.TPlayer.inventory[InvItem].SetDefaults(0);
- NetMessage.SendData((int)PacketTypes.PlayerSlot, -1, -1, null, args.Player.Index, InvItem);
+
+ TSPlayer player = new TSPlayer(args.Player.Index);
+
+ bool isSSC = Main.ServerSideCharacter;
+
+ if (!isSSC)
+ {
+ Main.ServerSideCharacter = true;
+ NetMessage.SendData(7, player.Index, -1, null, 0, 0.0f, 0.0f, 0.0f, 0, 0, 0);
+ player.IgnoreSSCPackets = true;
+ }
+
+
+ int InvItem = Array.IndexOf(player.TPlayer.inventory, player.SelectedItem);
+
+ (player.TPlayer.inventory[InvItem]).netDefaults(0);
+
+ NetMessage.SendData((int)PacketTypes.PlayerSlot, -1, -1, null, player.Index, InvItem, 0, 0, 0, 0, 0);
+
ShopManager(amount, Number, false);
+
SEconomyPlugin.Instance.WorldAccount.TransferTo(Bank, itemCost, Wolfje.Plugins.SEconomy.Journal.BankAccountTransferOptions.AnnounceToReceiver,
"Sell item", string.Format("[Shop] Sold {0} {1} for {2} money",
amount, Terraria.Lang.GetItemNameValue(vItem.Id), _totalCost));
- OnBuySell(args.Player, amount, Terraria.Lang.GetItemNameValue(vItem.Id), itemCost.ToString(), false);
- TShock.Log.Write(string.Format("{0} продал(а) {1} за {2}", args.Player.Name, vItem.Name, _totalCost.ToString()), System.Diagnostics.TraceLevel.Info);
+ player.SendInfoMessage(config.Messages["OnSell"], Color.Green.Hex3(), Color.Magenta.Hex3(), amount, vItem.modifierId, vItem.Id, ((Money)_totalCost).ToString(), Bank.Balance.ToString());
+ TShock.Log.Write(string.Format("{0} sold {1} for {2}", args.Player.Name, vItem.Name, _totalCost.ToString()), System.Diagnostics.TraceLevel.Info);
+
+ if (!isSSC)
+ {
+ Main.ServerSideCharacter = false;
+ NetMessage.SendData(7, player.Index, -1, null, 0, 0.0f, 0.0f, 0.0f, 0, 0, 0);
+ player.IgnoreSSCPackets = false;
+ }
+
return true;
}
public void ShopManager(int pStack, int pNumber, bool isBuy)
diff --git a/bin/x64/Release/net6.0/HttpServer.dll b/bin/x64/Release/net6.0/HttpServer.dll
new file mode 100644
index 0000000..b87662e
Binary files /dev/null and b/bin/x64/Release/net6.0/HttpServer.dll differ
diff --git a/bin/x64/Release/net6.0/Shop.deps.json b/bin/x64/Release/net6.0/Shop.deps.json
new file mode 100644
index 0000000..28c8941
--- /dev/null
+++ b/bin/x64/Release/net6.0/Shop.deps.json
@@ -0,0 +1,1408 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v6.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v6.0": {
+ "Shop/1.0.0": {
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.3",
+ "System.Drawing.Common": "7.0.0",
+ "TShock": "5.2.0",
+ "Wolfje.Plugins.SEconomy": "1.0.24.0"
+ },
+ "runtime": {
+ "Shop.dll": {}
+ }
+ },
+ "BCrypt.Net-Next/4.0.3": {
+ "runtime": {
+ "lib/net6.0/BCrypt.Net-Next.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.0.3.0"
+ }
+ }
+ },
+ "GetText.NET/1.7.14": {
+ "runtime": {
+ "lib/netstandard2.0/GetText.dll": {
+ "assemblyVersion": "1.7.0.0",
+ "fileVersion": "1.7.14.7504"
+ }
+ }
+ },
+ "Google.Protobuf/3.19.4": {
+ "runtime": {
+ "lib/net5.0/Google.Protobuf.dll": {
+ "assemblyVersion": "3.19.4.0",
+ "fileVersion": "3.19.4.0"
+ }
+ }
+ },
+ "K4os.Compression.LZ4/1.2.6": {
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
+ "assemblyVersion": "1.2.6.0",
+ "fileVersion": "1.2.6.0"
+ }
+ }
+ },
+ "K4os.Compression.LZ4.Streams/1.2.6": {
+ "dependencies": {
+ "K4os.Compression.LZ4": "1.2.6",
+ "K4os.Hash.xxHash": "1.0.6"
+ },
+ "runtime": {
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
+ "assemblyVersion": "1.2.6.0",
+ "fileVersion": "1.2.6.0"
+ }
+ }
+ },
+ "K4os.Hash.xxHash/1.0.6": {
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
+ "assemblyVersion": "1.0.6.0",
+ "fileVersion": "1.0.6.0"
+ }
+ }
+ },
+ "Microsoft.Data.Sqlite/6.0.11": {
+ "dependencies": {
+ "Microsoft.Data.Sqlite.Core": "6.0.11",
+ "SQLitePCLRaw.bundle_e_sqlite3": "2.0.6"
+ }
+ },
+ "Microsoft.Data.Sqlite.Core/6.0.11": {
+ "dependencies": {
+ "SQLitePCLRaw.core": "2.0.6"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.Data.Sqlite.dll": {
+ "assemblyVersion": "6.0.11.0",
+ "fileVersion": "6.0.1122.51302"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/2.0.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.Win32.SystemEvents/7.0.0": {
+ "runtime": {
+ "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.22.51805"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.22.51805"
+ }
+ }
+ },
+ "ModFramework/1.1.7": {
+ "dependencies": {
+ "MonoMod": "22.5.1.1",
+ "MonoMod.RuntimeDetour.HookGen": "22.5.1.1",
+ "NuGet.Protocol": "6.3.1",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/net6.0/ModFramework.dll": {
+ "assemblyVersion": "1.1.7.0",
+ "fileVersion": "1.1.7.0"
+ }
+ }
+ },
+ "Mono.Cecil/0.11.4": {
+ "runtime": {
+ "lib/netstandard2.0/Mono.Cecil.Mdb.dll": {
+ "assemblyVersion": "0.11.4.0",
+ "fileVersion": "0.11.4.0"
+ },
+ "lib/netstandard2.0/Mono.Cecil.Pdb.dll": {
+ "assemblyVersion": "0.11.4.0",
+ "fileVersion": "0.11.4.0"
+ },
+ "lib/netstandard2.0/Mono.Cecil.Rocks.dll": {
+ "assemblyVersion": "0.11.4.0",
+ "fileVersion": "0.11.4.0"
+ },
+ "lib/netstandard2.0/Mono.Cecil.dll": {
+ "assemblyVersion": "0.11.4.0",
+ "fileVersion": "0.11.4.0"
+ }
+ }
+ },
+ "MonoMod/22.5.1.1": {
+ "dependencies": {
+ "Mono.Cecil": "0.11.4",
+ "MonoMod.Utils": "22.5.1.1",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.ComponentModel.TypeConverter": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.7.0",
+ "System.Reflection.Emit.Lightweight": "4.7.0",
+ "System.Reflection.TypeExtensions": "4.7.0"
+ },
+ "runtime": {
+ "lib/net5.0/MonoMod.dll": {
+ "assemblyVersion": "22.5.1.1",
+ "fileVersion": "22.5.1.1"
+ }
+ }
+ },
+ "MonoMod.RuntimeDetour/22.5.1.1": {
+ "dependencies": {
+ "Mono.Cecil": "0.11.4",
+ "MonoMod.Utils": "22.5.1.1",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.ComponentModel.TypeConverter": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.7.0",
+ "System.Reflection.Emit.Lightweight": "4.7.0",
+ "System.Reflection.TypeExtensions": "4.7.0"
+ },
+ "runtime": {
+ "lib/net5.0/MonoMod.RuntimeDetour.dll": {
+ "assemblyVersion": "22.5.1.1",
+ "fileVersion": "22.5.1.1"
+ }
+ }
+ },
+ "MonoMod.RuntimeDetour.HookGen/22.5.1.1": {
+ "dependencies": {
+ "Mono.Cecil": "0.11.4",
+ "MonoMod": "22.5.1.1",
+ "MonoMod.RuntimeDetour": "22.5.1.1",
+ "MonoMod.Utils": "22.5.1.1",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.ComponentModel.TypeConverter": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.7.0",
+ "System.Reflection.Emit.Lightweight": "4.7.0",
+ "System.Reflection.TypeExtensions": "4.7.0"
+ },
+ "runtime": {
+ "lib/net5.0/MonoMod.RuntimeDetour.HookGen.dll": {
+ "assemblyVersion": "22.5.1.1",
+ "fileVersion": "22.5.1.1"
+ }
+ }
+ },
+ "MonoMod.Utils/22.5.1.1": {
+ "dependencies": {
+ "Mono.Cecil": "0.11.4",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.ComponentModel.TypeConverter": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.7.0",
+ "System.Reflection.Emit.Lightweight": "4.7.0",
+ "System.Reflection.TypeExtensions": "4.7.0"
+ },
+ "runtime": {
+ "lib/net5.0/MonoMod.Utils.dll": {
+ "assemblyVersion": "22.5.1.1",
+ "fileVersion": "22.5.1.1"
+ }
+ }
+ },
+ "MySql.Data/8.0.31": {
+ "dependencies": {
+ "Google.Protobuf": "3.19.4",
+ "K4os.Compression.LZ4.Streams": "1.2.6",
+ "Portable.BouncyCastle": "1.9.0",
+ "System.Buffers": "4.5.1",
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Security.Permissions": "6.0.0",
+ "System.Text.Encoding.CodePages": "4.4.0"
+ },
+ "runtime": {
+ "lib/net6.0/MySql.Data.dll": {
+ "assemblyVersion": "8.0.31.0",
+ "fileVersion": "8.0.31.0"
+ },
+ "lib/net6.0/ZstdNet.dll": {
+ "assemblyVersion": "1.4.5.0",
+ "fileVersion": "1.4.5.0"
+ }
+ }
+ },
+ "Newtonsoft.Json/13.0.3": {
+ "runtime": {
+ "lib/net6.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "13.0.0.0",
+ "fileVersion": "13.0.3.27908"
+ }
+ }
+ },
+ "NuGet.Common/6.3.1": {
+ "dependencies": {
+ "NuGet.Frameworks": "6.3.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/NuGet.Common.dll": {
+ "assemblyVersion": "6.3.1.1",
+ "fileVersion": "6.3.1.1"
+ }
+ }
+ },
+ "NuGet.Configuration/6.3.1": {
+ "dependencies": {
+ "NuGet.Common": "6.3.1",
+ "System.Security.Cryptography.ProtectedData": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/NuGet.Configuration.dll": {
+ "assemblyVersion": "6.3.1.1",
+ "fileVersion": "6.3.1.1"
+ }
+ }
+ },
+ "NuGet.Frameworks/6.3.1": {
+ "runtime": {
+ "lib/netstandard2.0/NuGet.Frameworks.dll": {
+ "assemblyVersion": "6.3.1.1",
+ "fileVersion": "6.3.1.1"
+ }
+ }
+ },
+ "NuGet.Packaging/6.3.1": {
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.3",
+ "NuGet.Configuration": "6.3.1",
+ "NuGet.Versioning": "6.3.1",
+ "System.Security.Cryptography.Cng": "5.0.0",
+ "System.Security.Cryptography.Pkcs": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/NuGet.Packaging.dll": {
+ "assemblyVersion": "6.3.1.1",
+ "fileVersion": "6.3.1.1"
+ }
+ }
+ },
+ "NuGet.Protocol/6.3.1": {
+ "dependencies": {
+ "NuGet.Packaging": "6.3.1"
+ },
+ "runtime": {
+ "lib/net5.0/NuGet.Protocol.dll": {
+ "assemblyVersion": "6.3.1.1",
+ "fileVersion": "6.3.1.1"
+ }
+ }
+ },
+ "NuGet.Versioning/6.3.1": {
+ "runtime": {
+ "lib/netstandard2.0/NuGet.Versioning.dll": {
+ "assemblyVersion": "6.3.1.1",
+ "fileVersion": "6.3.1.1"
+ }
+ }
+ },
+ "OTAPI.Upcoming/3.1.20": {
+ "dependencies": {
+ "ModFramework": "1.1.7",
+ "MonoMod": "22.5.1.1",
+ "MonoMod.RuntimeDetour": "22.5.1.1",
+ "Newtonsoft.Json": "13.0.3",
+ "Steamworks.NET": "20.1.0"
+ },
+ "runtime": {
+ "lib/net6.0/OTAPI.Runtime.dll": {
+ "assemblyVersion": "0.0.0.0",
+ "fileVersion": "0.0.0.0"
+ },
+ "lib/net6.0/OTAPI.dll": {
+ "assemblyVersion": "1.4.4.9",
+ "fileVersion": "1.4.4.9"
+ }
+ }
+ },
+ "Portable.BouncyCastle/1.9.0": {
+ "runtime": {
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
+ "assemblyVersion": "1.9.0.0",
+ "fileVersion": "1.9.0.1"
+ }
+ }
+ },
+ "SQLitePCLRaw.bundle_e_sqlite3/2.0.6": {
+ "dependencies": {
+ "SQLitePCLRaw.core": "2.0.6",
+ "SQLitePCLRaw.lib.e_sqlite3": "2.0.6",
+ "SQLitePCLRaw.provider.e_sqlite3": "2.0.6"
+ },
+ "runtime": {
+ "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {
+ "assemblyVersion": "2.0.6.1341",
+ "fileVersion": "2.0.6.1341"
+ }
+ }
+ },
+ "SQLitePCLRaw.core/2.0.6": {
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/SQLitePCLRaw.core.dll": {
+ "assemblyVersion": "2.0.6.1341",
+ "fileVersion": "2.0.6.1341"
+ }
+ }
+ },
+ "SQLitePCLRaw.lib.e_sqlite3/2.0.6": {
+ "runtimeTargets": {
+ "runtimes/alpine-x64/native/libe_sqlite3.so": {
+ "rid": "alpine-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-arm/native/libe_sqlite3.so": {
+ "rid": "linux-arm",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-arm64/native/libe_sqlite3.so": {
+ "rid": "linux-arm64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-armel/native/libe_sqlite3.so": {
+ "rid": "linux-armel",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-mips64/native/libe_sqlite3.so": {
+ "rid": "linux-mips64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
+ "rid": "linux-musl-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-s390x/native/libe_sqlite3.so": {
+ "rid": "linux-s390x",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-x64/native/libe_sqlite3.so": {
+ "rid": "linux-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-x86/native/libe_sqlite3.so": {
+ "rid": "linux-x86",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/osx-arm64/native/libe_sqlite3.dylib": {
+ "rid": "osx-arm64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/osx-x64/native/libe_sqlite3.dylib": {
+ "rid": "osx-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-arm/native/e_sqlite3.dll": {
+ "rid": "win-arm",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-arm64/native/e_sqlite3.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-x64/native/e_sqlite3.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-x86/native/e_sqlite3.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "SQLitePCLRaw.provider.e_sqlite3/2.0.6": {
+ "dependencies": {
+ "SQLitePCLRaw.core": "2.0.6"
+ },
+ "runtime": {
+ "lib/net5.0/SQLitePCLRaw.provider.e_sqlite3.dll": {
+ "assemblyVersion": "2.0.6.1341",
+ "fileVersion": "2.0.6.1341"
+ }
+ }
+ },
+ "Steamworks.NET/20.1.0": {
+ "runtime": {
+ "lib/netstandard2.1/Steamworks.NET.dll": {
+ "assemblyVersion": "20.1.0.0",
+ "fileVersion": "20.1.0.0"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/linux-x64/lib/netstandard2.1/Steamworks.NET.dll": {
+ "rid": "linux-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "20.1.0.0",
+ "fileVersion": "20.1.0.0"
+ },
+ "runtimes/linux-x86/lib/netstandard2.1/Steamworks.NET.dll": {
+ "rid": "linux-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "20.1.0.0",
+ "fileVersion": "20.1.0.0"
+ },
+ "runtimes/osx-x64/lib/netstandard2.1/Steamworks.NET.dll": {
+ "rid": "osx-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "20.1.0.0",
+ "fileVersion": "20.1.0.0"
+ },
+ "runtimes/osx-x86/lib/netstandard2.1/Steamworks.NET.dll": {
+ "rid": "osx-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "20.1.0.0",
+ "fileVersion": "20.1.0.0"
+ },
+ "runtimes/win-x64/lib/netstandard2.1/Steamworks.NET.dll": {
+ "rid": "win-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "20.1.0.0",
+ "fileVersion": "20.1.0.0"
+ },
+ "runtimes/win-x86/lib/netstandard2.1/Steamworks.NET.dll": {
+ "rid": "win-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "20.1.0.0",
+ "fileVersion": "20.1.0.0"
+ }
+ }
+ },
+ "System.Buffers/4.5.1": {},
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Collections.Specialized/4.3.0": {
+ "dependencies": {
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.ComponentModel/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.ComponentModel.Primitives/4.3.0": {
+ "dependencies": {
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.7.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Configuration.ConfigurationManager/6.0.0": {
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.PerformanceCounter/6.0.1": {
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ }
+ }
+ },
+ "System.Drawing.Common/7.0.0": {
+ "dependencies": {
+ "Microsoft.Win32.SystemEvents": "7.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Drawing.Common.dll": {
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.22.51805"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.22.51805"
+ }
+ }
+ },
+ "System.Formats.Asn1/5.0.0": {},
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Linq/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Memory/4.5.4": {},
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.7.0": {},
+ "System.Reflection.Emit.Lightweight/4.7.0": {},
+ "System.Reflection.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions/4.7.0": {},
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {},
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl/6.0.0": {},
+ "System.Security.Cryptography.Cng/5.0.0": {
+ "dependencies": {
+ "System.Formats.Asn1": "5.0.0"
+ }
+ },
+ "System.Security.Cryptography.Pkcs/5.0.0": {
+ "dependencies": {
+ "System.Formats.Asn1": "5.0.0",
+ "System.Security.Cryptography.Cng": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/6.0.0": {
+ "runtime": {
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Security.Permissions/6.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Windows.Extensions": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.Permissions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages/4.4.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0"
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Windows.Extensions/6.0.0": {
+ "dependencies": {
+ "System.Drawing.Common": "7.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Windows.Extensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "TSAPI/5.2.0": {
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.3",
+ "OTAPI.Upcoming": "3.1.20",
+ "System.Diagnostics.PerformanceCounter": "6.0.1"
+ },
+ "runtime": {
+ "lib/net6.0/TerrariaServer.dll": {
+ "assemblyVersion": "5.2.0.0",
+ "fileVersion": "5.2.0.0"
+ }
+ }
+ },
+ "TShock/5.2.0": {
+ "dependencies": {
+ "BCrypt.Net-Next": "4.0.3",
+ "GetText.NET": "1.7.14",
+ "Microsoft.Data.Sqlite": "6.0.11",
+ "MySql.Data": "8.0.31",
+ "TSAPI": "5.2.0"
+ },
+ "runtime": {
+ "lib/net6.0/TShockAPI.dll": {
+ "assemblyVersion": "5.2.0.0",
+ "fileVersion": "5.2.0.0"
+ }
+ }
+ },
+ "Wolfje.Plugins.SEconomy/1.0.24.0": {
+ "runtime": {
+ "Wolfje.Plugins.SEconomy.dll": {
+ "assemblyVersion": "1.0.24.0",
+ "fileVersion": "1.0.24.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Shop/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "BCrypt.Net-Next/4.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W+U9WvmZQgi5cX6FS5GDtDoPzUCV4LkBLkywq/kRZhuDwcbavOzcDAr3LXJFqHUi952Yj3LEYoWW0jbEUQChsA==",
+ "path": "bcrypt.net-next/4.0.3",
+ "hashPath": "bcrypt.net-next.4.0.3.nupkg.sha512"
+ },
+ "GetText.NET/1.7.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-o+XYsD5STsbIJ/IN+zntfRdIdhZpFaul+/7zgPj7GmPVGVHnVqm3YQwNKwLeKE5i3vQazq1Ov2QfXnCIY4oKqw==",
+ "path": "gettext.net/1.7.14",
+ "hashPath": "gettext.net.1.7.14.nupkg.sha512"
+ },
+ "Google.Protobuf/3.19.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==",
+ "path": "google.protobuf/3.19.4",
+ "hashPath": "google.protobuf.3.19.4.nupkg.sha512"
+ },
+ "K4os.Compression.LZ4/1.2.6": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
+ "path": "k4os.compression.lz4/1.2.6",
+ "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512"
+ },
+ "K4os.Compression.LZ4.Streams/1.2.6": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
+ "path": "k4os.compression.lz4.streams/1.2.6",
+ "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512"
+ },
+ "K4os.Hash.xxHash/1.0.6": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
+ "path": "k4os.hash.xxhash/1.0.6",
+ "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512"
+ },
+ "Microsoft.Data.Sqlite/6.0.11": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oa/UXdIRx95o46eF/RTnCw4QDZfJikH0v5vSrFiLoAWFOfLOv5/jzFmD0+EQ33e+87sUNi2mo0rfHS/1Q4WTCw==",
+ "path": "microsoft.data.sqlite/6.0.11",
+ "hashPath": "microsoft.data.sqlite.6.0.11.nupkg.sha512"
+ },
+ "Microsoft.Data.Sqlite.Core/6.0.11": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xCcaePISVs3Fdy+ji1yGDp1gCjUwDJpfIKrBWXWDgyzc3R2MmNxTW5YgNmnB7dvdHoJwf0jPZ50M5TBj7noV3w==",
+ "path": "microsoft.data.sqlite.core/6.0.11",
+ "hashPath": "microsoft.data.sqlite.core.6.0.11.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
+ "path": "microsoft.netcore.platforms/2.0.0",
+ "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.SystemEvents/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==",
+ "path": "microsoft.win32.systemevents/7.0.0",
+ "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512"
+ },
+ "ModFramework/1.1.7": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Y+aWqispd8zqrx2PCo4IwKxMWR1C/vtVzZwhXjiPJoHdDn38GGnCCwij8DuNzOHAiucgCS0qmRFLOdfFNCt6ow==",
+ "path": "modframework/1.1.7",
+ "hashPath": "modframework.1.1.7.nupkg.sha512"
+ },
+ "Mono.Cecil/0.11.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IC1h5g0NeJGHIUgzM1P82ld57knhP0IcQfrYITDPXlNpMYGUrsG5TxuaWTjaeqDNQMBDNZkB8L0rBnwsY6JHuQ==",
+ "path": "mono.cecil/0.11.4",
+ "hashPath": "mono.cecil.0.11.4.nupkg.sha512"
+ },
+ "MonoMod/22.5.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FKU1brIbpoQ655Akbefrk+mvDStmYzUwZVFBztUdJrjbtwVVaSsn+dFIvUG15SX9ij4jx9c649MKo/p4wbYrXQ==",
+ "path": "monomod/22.5.1.1",
+ "hashPath": "monomod.22.5.1.1.nupkg.sha512"
+ },
+ "MonoMod.RuntimeDetour/22.5.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WG5zLRuAr8KJEnIkKTuIG1OJCrGIT3pjvnAD43E0FDchHf3Dp985MF/8tmIQvAzCZV87JNs6QKeGGqmwDmpXpw==",
+ "path": "monomod.runtimedetour/22.5.1.1",
+ "hashPath": "monomod.runtimedetour.22.5.1.1.nupkg.sha512"
+ },
+ "MonoMod.RuntimeDetour.HookGen/22.5.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jZunQfvC0mfK99PNLCMvTYnZ3pKrPe4rHtyDqB1li29fTyYdmsGjPhgEF9TkL4xXcoPQvTqFNpfRyWZucMU9XQ==",
+ "path": "monomod.runtimedetour.hookgen/22.5.1.1",
+ "hashPath": "monomod.runtimedetour.hookgen.22.5.1.1.nupkg.sha512"
+ },
+ "MonoMod.Utils/22.5.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vBObO1atXxhi2C4AuC53y87Bqeogi9xIrD1Ym3YWr5uxc8Nrm8SrsFeD1i3x04R999+XQ3FdeHrbXScyWYEHqQ==",
+ "path": "monomod.utils/22.5.1.1",
+ "hashPath": "monomod.utils.22.5.1.1.nupkg.sha512"
+ },
+ "MySql.Data/8.0.31": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZVcctmag6cX0DtDxWh3fhBlSdZfGHKIUIodl7QtjZKupSgbCT0X+bO1Faw/NfUR2VfoxB/L9WzLfeCvki65qVg==",
+ "path": "mysql.data/8.0.31",
+ "hashPath": "mysql.data.8.0.31.nupkg.sha512"
+ },
+ "Newtonsoft.Json/13.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
+ "path": "newtonsoft.json/13.0.3",
+ "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
+ },
+ "NuGet.Common/6.3.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/WgxNyc9dXl+ZrQJDf5BXaqtMbl0CcDC5GEQITecbHZBQHApTMuxeTMMEqa0Y+PD1CIxTtbRY4jmotKS5dsLuA==",
+ "path": "nuget.common/6.3.1",
+ "hashPath": "nuget.common.6.3.1.nupkg.sha512"
+ },
+ "NuGet.Configuration/6.3.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ja227AmXuDVgPXi3p2VTZFTYI/4xwwLSPYtd9Y9WIfCrRqSNDa96J5hm70wXhBCOQYvoRVDjp3ufgDnnqZ0bYA==",
+ "path": "nuget.configuration/6.3.1",
+ "hashPath": "nuget.configuration.6.3.1.nupkg.sha512"
+ },
+ "NuGet.Frameworks/6.3.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ae1vRjHDbNU7EQwQnDlxFRl+O9iQLp2H9Z/sRB/EAmO8+neUOeOfbkLClO7ZNcTcW5p1FDABrPakXICtQ0JCRw==",
+ "path": "nuget.frameworks/6.3.1",
+ "hashPath": "nuget.frameworks.6.3.1.nupkg.sha512"
+ },
+ "NuGet.Packaging/6.3.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/GI2ujy3t00I8qFGvuLrVMNAEMFgEHfW+GNACZna2zgjADrxqrCeONStYZR2hHt3eI2/5HbiaoX4NCP17JCYzw==",
+ "path": "nuget.packaging/6.3.1",
+ "hashPath": "nuget.packaging.6.3.1.nupkg.sha512"
+ },
+ "NuGet.Protocol/6.3.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1x3jozJNwoECAo88hrhYNuKkRrv9V2VoVxlCntpwr9jX5h6sTV3uHnXAN7vaVQ2/NRX9LLRIiD8K0NOTCG5EmQ==",
+ "path": "nuget.protocol/6.3.1",
+ "hashPath": "nuget.protocol.6.3.1.nupkg.sha512"
+ },
+ "NuGet.Versioning/6.3.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-T/igBDLXCd+pH3YTWgGVNvYSOwbwaT30NyyM9ONjvlHlmaUjKBJpr9kH0AeL+Ado4EJsBhU3qxXVc6lyrpRcMw==",
+ "path": "nuget.versioning/6.3.1",
+ "hashPath": "nuget.versioning.6.3.1.nupkg.sha512"
+ },
+ "OTAPI.Upcoming/3.1.20": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nuWBI9nLsg4VrS1BBW0TrQof4M+YQYE4ldhGSNg86YO1l6FwN6/bqc3nwkv3JRpKJUGR0F2tnLQMGrS3puRZrw==",
+ "path": "otapi.upcoming/3.1.20",
+ "hashPath": "otapi.upcoming.3.1.20.nupkg.sha512"
+ },
+ "Portable.BouncyCastle/1.9.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==",
+ "path": "portable.bouncycastle/1.9.0",
+ "hashPath": "portable.bouncycastle.1.9.0.nupkg.sha512"
+ },
+ "SQLitePCLRaw.bundle_e_sqlite3/2.0.6": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zssYqiaucyGArZfg74rJuzK0ewgZiidsRVrZTmP7JLNvK806gXg6PGA46XzoJGpNPPA5uRcumwvVp6YTYxtQ5w==",
+ "path": "sqlitepclraw.bundle_e_sqlite3/2.0.6",
+ "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.6.nupkg.sha512"
+ },
+ "SQLitePCLRaw.core/2.0.6": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Vh8n0dTvwXkCGur2WqQTITvk4BUO8i8h9ucSx3wwuaej3s2S6ZC0R7vqCTf9TfS/I4QkXO6g3W2YQIRFkOcijA==",
+ "path": "sqlitepclraw.core/2.0.6",
+ "hashPath": "sqlitepclraw.core.2.0.6.nupkg.sha512"
+ },
+ "SQLitePCLRaw.lib.e_sqlite3/2.0.6": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xlstskMKalKQl0H2uLNe0viBM6fvAGLWqKZUQ3twX5y1tSOZKe0+EbXopQKYdbjJytNGI6y5WSKjpI+kVr2Ckg==",
+ "path": "sqlitepclraw.lib.e_sqlite3/2.0.6",
+ "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.6.nupkg.sha512"
+ },
+ "SQLitePCLRaw.provider.e_sqlite3/2.0.6": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-peXLJbhU+0clVBIPirihM1NoTBqw8ouBpcUsVMlcZ4k6fcL2hwgkctVB2Nt5VsbnOJcPspQL5xQK7QvLpxkMgg==",
+ "path": "sqlitepclraw.provider.e_sqlite3/2.0.6",
+ "hashPath": "sqlitepclraw.provider.e_sqlite3.2.0.6.nupkg.sha512"
+ },
+ "Steamworks.NET/20.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+GntwnyJ5tCNvUIaQxv2+ehDvZJzGUqlSB5xRBk1hTj1qqBJ6s4vK/OfGD/jae7aTmXiGSm8wpJORosNtQevJQ==",
+ "path": "steamworks.net/20.1.0",
+ "hashPath": "steamworks.net.20.1.0.nupkg.sha512"
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
+ "path": "system.buffers/4.5.1",
+ "hashPath": "system.buffers.4.5.1.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
+ "path": "system.collections.nongeneric/4.3.0",
+ "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Specialized/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
+ "path": "system.collections.specialized/4.3.0",
+ "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
+ "path": "system.componentmodel/4.3.0",
+ "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
+ "path": "system.componentmodel.primitives/4.3.0",
+ "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
+ "path": "system.componentmodel.typeconverter/4.3.0",
+ "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
+ },
+ "System.Configuration.ConfigurationManager/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",
+ "path": "system.configuration.configurationmanager/6.0.0",
+ "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "path": "system.diagnostics.debug/4.3.0",
+ "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.PerformanceCounter/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dDl7Gx3bmSrM2k2ZIm+ucEJnLloZRyvfQF1DvfvATcGF3jtaUBiPvChma+6ZcZzxWMirN3kCywkW7PILphXyMQ==",
+ "path": "system.diagnostics.performancecounter/6.0.1",
+ "hashPath": "system.diagnostics.performancecounter.6.0.1.nupkg.sha512"
+ },
+ "System.Drawing.Common/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==",
+ "path": "system.drawing.common/7.0.0",
+ "hashPath": "system.drawing.common.7.0.0.nupkg.sha512"
+ },
+ "System.Formats.Asn1/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
+ "path": "system.formats.asn1/5.0.0",
+ "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "path": "system.globalization/4.3.0",
+ "hashPath": "system.globalization.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "path": "system.globalization.extensions/4.3.0",
+ "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "path": "system.io/4.3.0",
+ "hashPath": "system.io.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "path": "system.io.filesystem.primitives/4.3.0",
+ "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "path": "system.linq/4.3.0",
+ "hashPath": "system.linq.4.3.0.nupkg.sha512"
+ },
+ "System.Memory/4.5.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "path": "system.memory/4.5.4",
+ "hashPath": "system.memory.4.5.4.nupkg.sha512"
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "path": "system.reflection/4.3.0",
+ "hashPath": "system.reflection.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.ILGeneration/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AucBYo3DSI0IDxdUjKksBcQJXPHyoPyrCXYURW1WDsLI4M65Ar/goSHjdnHOAY9MiYDNKqDlIgaYm+zL2hA1KA==",
+ "path": "system.reflection.emit.ilgeneration/4.7.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-a4OLB4IITxAXJeV74MDx49Oq2+PsF6Sml54XAFv+2RyWwtDBcabzoxiiJRhdhx+gaohLh4hEGCLQyBozXoQPqA==",
+ "path": "system.reflection.emit.lightweight/4.7.0",
+ "hashPath": "system.reflection.emit.lightweight.4.7.0.nupkg.sha512"
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "path": "system.reflection.extensions/4.3.0",
+ "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "path": "system.reflection.primitives/4.3.0",
+ "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.TypeExtensions/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==",
+ "path": "system.reflection.typeextensions/4.7.0",
+ "hashPath": "system.reflection.typeextensions.4.7.0.nupkg.sha512"
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
+ "path": "system.runtime.compilerservices.unsafe/5.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "path": "system.runtime.extensions/4.3.0",
+ "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "path": "system.runtime.handles/4.3.0",
+ "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "path": "system.runtime.interopservices/4.3.0",
+ "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "path": "system.runtime.loader/4.3.0",
+ "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512"
+ },
+ "System.Security.AccessControl/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
+ "path": "system.security.accesscontrol/6.0.0",
+ "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Cng/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
+ "path": "system.security.cryptography.cng/5.0.0",
+ "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Pkcs/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
+ "path": "system.security.cryptography.pkcs/5.0.0",
+ "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.ProtectedData/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
+ "path": "system.security.cryptography.protecteddata/6.0.0",
+ "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512"
+ },
+ "System.Security.Permissions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
+ "path": "system.security.permissions/6.0.0",
+ "hashPath": "system.security.permissions.6.0.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.CodePages/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
+ "path": "system.text.encoding.codepages/4.4.0",
+ "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "path": "system.threading/4.3.0",
+ "hashPath": "system.threading.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "path": "system.threading.tasks/4.3.0",
+ "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "System.Windows.Extensions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
+ "path": "system.windows.extensions/6.0.0",
+ "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512"
+ },
+ "TSAPI/5.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Efl/r4pzsVlVGhPj/7Z+IbV+wqQpK4DdPh/M6TAFOwPf/dXPAt6KHvfwiuyvqbRT9nh7CiHvciCPZqe+jq4vhA==",
+ "path": "tsapi/5.2.0",
+ "hashPath": "tsapi.5.2.0.nupkg.sha512"
+ },
+ "TShock/5.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dS6dxpP7kyoqoelc8QywljvG939MBH5i7VkCqwS33W8lVur+OfvAlpjm6sxPQt6x9BRi8GTOWXZ5124GieIanQ==",
+ "path": "tshock/5.2.0",
+ "hashPath": "tshock.5.2.0.nupkg.sha512"
+ },
+ "Wolfje.Plugins.SEconomy/1.0.24.0": {
+ "type": "reference",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/x64/Release/net6.0/Shop.dll b/bin/x64/Release/net6.0/Shop.dll
new file mode 100644
index 0000000..3c6e87b
Binary files /dev/null and b/bin/x64/Release/net6.0/Shop.dll differ
diff --git a/bin/x64/Release/net6.0/Shop.pdb b/bin/x64/Release/net6.0/Shop.pdb
new file mode 100644
index 0000000..f7a6b0c
Binary files /dev/null and b/bin/x64/Release/net6.0/Shop.pdb differ
diff --git a/bin/x64/Release/net6.0/Wolfje.Plugins.SEconomy.dll b/bin/x64/Release/net6.0/Wolfje.Plugins.SEconomy.dll
new file mode 100644
index 0000000..3029776
Binary files /dev/null and b/bin/x64/Release/net6.0/Wolfje.Plugins.SEconomy.dll differ
diff --git a/obj/Debug/.NETFramework,Version=v4.5.2.AssemblyAttributes.cs b/obj/Debug/.NETFramework,Version=v4.5.2.AssemblyAttributes.cs
new file mode 100644
index 0000000..f1a77a1
--- /dev/null
+++ b/obj/Debug/.NETFramework,Version=v4.5.2.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5.2", FrameworkDisplayName = ".NET Framework 4.5.2")]
diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..f14d275
Binary files /dev/null and b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/obj/Debug/Shop.csproj.AssemblyReference.cache b/obj/Debug/Shop.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..cd9a4b3
Binary files /dev/null and b/obj/Debug/Shop.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..ed92695
--- /dev/null
+++ b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
diff --git a/obj/Debug/net6.0/Shop.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0/Shop.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..a3f7208
--- /dev/null
+++ b/obj/Debug/net6.0/Shop.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,11 @@
+is_global = true
+build_property.TargetFramework = net6.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Shop
+build_property.ProjectDir = C:\Users\mcjac\Shop-plugin\
diff --git a/obj/Debug/net6.0/Shop.assets.cache b/obj/Debug/net6.0/Shop.assets.cache
new file mode 100644
index 0000000..c9b0902
Binary files /dev/null and b/obj/Debug/net6.0/Shop.assets.cache differ
diff --git a/obj/Debug/net6.0/Shop.csproj.AssemblyReference.cache b/obj/Debug/net6.0/Shop.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..949027f
Binary files /dev/null and b/obj/Debug/net6.0/Shop.csproj.AssemblyReference.cache differ
diff --git a/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..ed92695
--- /dev/null
+++ b/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
diff --git a/obj/Release/net6.0/Shop.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net6.0/Shop.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..a3f7208
--- /dev/null
+++ b/obj/Release/net6.0/Shop.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,11 @@
+is_global = true
+build_property.TargetFramework = net6.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Shop
+build_property.ProjectDir = C:\Users\mcjac\Shop-plugin\
diff --git a/obj/Release/net6.0/Shop.assets.cache b/obj/Release/net6.0/Shop.assets.cache
new file mode 100644
index 0000000..aedfe7a
Binary files /dev/null and b/obj/Release/net6.0/Shop.assets.cache differ
diff --git a/obj/Release/net6.0/Shop.csproj.AssemblyReference.cache b/obj/Release/net6.0/Shop.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..348b2ea
Binary files /dev/null and b/obj/Release/net6.0/Shop.csproj.AssemblyReference.cache differ
diff --git a/obj/Shop.csproj.nuget.dgspec.json b/obj/Shop.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..ecc3669
--- /dev/null
+++ b/obj/Shop.csproj.nuget.dgspec.json
@@ -0,0 +1,95 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\mcjac\\Shop-plugin\\Shop.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\mcjac\\Shop-plugin\\Shop.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\mcjac\\Shop-plugin\\Shop.csproj",
+ "projectName": "Shop",
+ "projectPath": "C:\\Users\\mcjac\\Shop-plugin\\Shop.csproj",
+ "packagesPath": "C:\\Users\\mcjac\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\mcjac\\Shop-plugin\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Users\\mcjac\\AppData\\Roaming\\Godot\\mono\\GodotNuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\mcjac\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Users\\mcjac\\AppData\\Roaming\\NuGet\\config\\Godot.Offline.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net6.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net6.0": {
+ "targetAlias": "net6.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net6.0": {
+ "targetAlias": "net6.0",
+ "dependencies": {
+ "Newtonsoft.Json": {
+ "target": "Package",
+ "version": "[13.0.3, )"
+ },
+ "System.Drawing.Common": {
+ "target": "Package",
+ "version": "[7.0.0, )"
+ },
+ "TShock": {
+ "target": "Package",
+ "version": "[5.2.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Ref",
+ "version": "[6.0.19, 6.0.19]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Ref",
+ "version": "[6.0.19, 6.0.19]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Ref",
+ "version": "[6.0.19, 6.0.19]"
+ }
+ ],
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.305\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/Shop.csproj.nuget.g.props b/obj/Shop.csproj.nuget.g.props
new file mode 100644
index 0000000..e204225
--- /dev/null
+++ b/obj/Shop.csproj.nuget.g.props
@@ -0,0 +1,28 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\mcjac\.nuget\packages\;C:\Users\mcjac\AppData\Roaming\Godot\mono\GodotNuGetFallbackFolder
+ PackageReference
+ 6.5.0
+
+
+
+
+
+
+
+ TShock
+ 5.2.0
+ None
+ false
+ PreserveNewest
+ HttpServer.dll
+ True
+ HttpServer.dll
+
+
+
\ No newline at end of file
diff --git a/obj/Shop.csproj.nuget.g.targets b/obj/Shop.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/obj/Shop.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/obj/project.assets.json b/obj/project.assets.json
new file mode 100644
index 0000000..9604abf
--- /dev/null
+++ b/obj/project.assets.json
@@ -0,0 +1,4221 @@
+{
+ "version": 3,
+ "targets": {
+ "net6.0": {
+ "BCrypt.Net-Next/4.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/BCrypt.Net-Next.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/BCrypt.Net-Next.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "GetText.NET/1.7.14": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/GetText.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/GetText.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Google.Protobuf/3.19.4": {
+ "type": "package",
+ "compile": {
+ "lib/net5.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "K4os.Compression.LZ4/1.2.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "K4os.Compression.LZ4.Streams/1.2.6": {
+ "type": "package",
+ "dependencies": {
+ "K4os.Compression.LZ4": "1.2.6",
+ "K4os.Hash.xxHash": "1.0.6"
+ },
+ "compile": {
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "K4os.Hash.xxHash/1.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Data.Sqlite/6.0.11": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Data.Sqlite.Core": "6.0.11",
+ "SQLitePCLRaw.bundle_e_sqlite3": "2.0.6"
+ },
+ "compile": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.Data.Sqlite.Core/6.0.11": {
+ "type": "package",
+ "dependencies": {
+ "SQLitePCLRaw.core": "2.0.6"
+ },
+ "compile": {
+ "lib/net6.0/Microsoft.Data.Sqlite.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.Data.Sqlite.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.Win32.SystemEvents/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "ModFramework/1.1.7": {
+ "type": "package",
+ "dependencies": {
+ "MonoMod": "22.5.1.1",
+ "MonoMod.RuntimeDetour.HookGen": "22.5.1.1",
+ "NuGet.Protocol": "6.3.1",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "compile": {
+ "lib/net6.0/ModFramework.dll": {}
+ },
+ "runtime": {
+ "lib/net6.0/ModFramework.dll": {}
+ }
+ },
+ "Mono.Cecil/0.11.4": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Mono.Cecil.Mdb.dll": {
+ "related": ".pdb"
+ },
+ "lib/netstandard2.0/Mono.Cecil.Pdb.dll": {
+ "related": ".pdb"
+ },
+ "lib/netstandard2.0/Mono.Cecil.Rocks.dll": {
+ "related": ".pdb"
+ },
+ "lib/netstandard2.0/Mono.Cecil.dll": {
+ "related": ".Mdb.pdb;.pdb;.Pdb.pdb;.Rocks.pdb"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Mono.Cecil.Mdb.dll": {
+ "related": ".pdb"
+ },
+ "lib/netstandard2.0/Mono.Cecil.Pdb.dll": {
+ "related": ".pdb"
+ },
+ "lib/netstandard2.0/Mono.Cecil.Rocks.dll": {
+ "related": ".pdb"
+ },
+ "lib/netstandard2.0/Mono.Cecil.dll": {
+ "related": ".Mdb.pdb;.pdb;.Pdb.pdb;.Rocks.pdb"
+ }
+ }
+ },
+ "MonoMod/22.5.1.1": {
+ "type": "package",
+ "dependencies": {
+ "Mono.Cecil": "0.11.4",
+ "MonoMod.Utils": "22.5.1.1",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.ComponentModel.TypeConverter": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.7.0",
+ "System.Reflection.Emit.Lightweight": "4.7.0",
+ "System.Reflection.TypeExtensions": "4.7.0"
+ },
+ "compile": {
+ "lib/net5.0/MonoMod.dll": {
+ "related": ".runtimeconfig.json;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/MonoMod.dll": {
+ "related": ".runtimeconfig.json;.xml"
+ }
+ }
+ },
+ "MonoMod.RuntimeDetour/22.5.1.1": {
+ "type": "package",
+ "dependencies": {
+ "Mono.Cecil": "0.11.4",
+ "MonoMod.Utils": "22.5.1.1",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.ComponentModel.TypeConverter": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.7.0",
+ "System.Reflection.Emit.Lightweight": "4.7.0",
+ "System.Reflection.TypeExtensions": "4.7.0"
+ },
+ "compile": {
+ "lib/net5.0/MonoMod.RuntimeDetour.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/MonoMod.RuntimeDetour.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "MonoMod.RuntimeDetour.HookGen/22.5.1.1": {
+ "type": "package",
+ "dependencies": {
+ "Mono.Cecil": "0.11.4",
+ "MonoMod": "22.5.1.1",
+ "MonoMod.RuntimeDetour": "22.5.1.1",
+ "MonoMod.Utils": "22.5.1.1",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.ComponentModel.TypeConverter": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.7.0",
+ "System.Reflection.Emit.Lightweight": "4.7.0",
+ "System.Reflection.TypeExtensions": "4.7.0"
+ },
+ "compile": {
+ "lib/net5.0/MonoMod.RuntimeDetour.HookGen.dll": {
+ "related": ".runtimeconfig.json;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/MonoMod.RuntimeDetour.HookGen.dll": {
+ "related": ".runtimeconfig.json;.xml"
+ }
+ }
+ },
+ "MonoMod.Utils/22.5.1.1": {
+ "type": "package",
+ "dependencies": {
+ "Mono.Cecil": "0.11.4",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.ComponentModel.TypeConverter": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.7.0",
+ "System.Reflection.Emit.Lightweight": "4.7.0",
+ "System.Reflection.TypeExtensions": "4.7.0"
+ },
+ "compile": {
+ "lib/net5.0/MonoMod.Utils.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/MonoMod.Utils.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "MySql.Data/8.0.31": {
+ "type": "package",
+ "dependencies": {
+ "Google.Protobuf": "3.19.4",
+ "K4os.Compression.LZ4.Streams": "1.2.6",
+ "Portable.BouncyCastle": "1.9.0",
+ "System.Buffers": "4.5.1",
+ "System.Configuration.ConfigurationManager": "4.4.1",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Security.Permissions": "4.7.0",
+ "System.Text.Encoding.CodePages": "4.4.0"
+ },
+ "compile": {
+ "lib/net6.0/MySql.Data.dll": {
+ "related": ".xml"
+ },
+ "lib/net6.0/ZstdNet.dll": {}
+ },
+ "runtime": {
+ "lib/net6.0/MySql.Data.dll": {
+ "related": ".xml"
+ },
+ "lib/net6.0/ZstdNet.dll": {}
+ }
+ },
+ "Newtonsoft.Json/13.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/Newtonsoft.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Newtonsoft.Json.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NuGet.Common/6.3.1": {
+ "type": "package",
+ "dependencies": {
+ "NuGet.Frameworks": "6.3.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/NuGet.Common.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/NuGet.Common.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NuGet.Configuration/6.3.1": {
+ "type": "package",
+ "dependencies": {
+ "NuGet.Common": "6.3.1",
+ "System.Security.Cryptography.ProtectedData": "4.4.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/NuGet.Configuration.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/NuGet.Configuration.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NuGet.Frameworks/6.3.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/NuGet.Frameworks.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/NuGet.Frameworks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NuGet.Packaging/6.3.1": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.1",
+ "NuGet.Configuration": "6.3.1",
+ "NuGet.Versioning": "6.3.1",
+ "System.Security.Cryptography.Cng": "5.0.0",
+ "System.Security.Cryptography.Pkcs": "5.0.0"
+ },
+ "compile": {
+ "lib/net5.0/NuGet.Packaging.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/NuGet.Packaging.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NuGet.Protocol/6.3.1": {
+ "type": "package",
+ "dependencies": {
+ "NuGet.Packaging": "6.3.1"
+ },
+ "compile": {
+ "lib/net5.0/NuGet.Protocol.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/NuGet.Protocol.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NuGet.Versioning/6.3.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/NuGet.Versioning.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/NuGet.Versioning.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "OTAPI.Upcoming/3.1.20": {
+ "type": "package",
+ "dependencies": {
+ "ModFramework": "1.1.7",
+ "MonoMod": "22.5.1.1",
+ "MonoMod.RuntimeDetour": "22.5.1.1",
+ "Newtonsoft.Json": "13.0.1",
+ "Steamworks.NET": "20.1.0"
+ },
+ "compile": {
+ "lib/net6.0/OTAPI.Runtime.dll": {},
+ "lib/net6.0/OTAPI.dll": {}
+ },
+ "runtime": {
+ "lib/net6.0/OTAPI.Runtime.dll": {},
+ "lib/net6.0/OTAPI.dll": {}
+ }
+ },
+ "Portable.BouncyCastle/1.9.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "SQLitePCLRaw.bundle_e_sqlite3/2.0.6": {
+ "type": "package",
+ "dependencies": {
+ "SQLitePCLRaw.core": "2.0.6",
+ "SQLitePCLRaw.lib.e_sqlite3": "2.0.6",
+ "SQLitePCLRaw.provider.e_sqlite3": "2.0.6"
+ },
+ "compile": {
+ "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {}
+ }
+ },
+ "SQLitePCLRaw.core/2.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
+ }
+ },
+ "SQLitePCLRaw.lib.e_sqlite3/2.0.6": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/alpine-x64/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "alpine-x64"
+ },
+ "runtimes/linux-arm/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-arm"
+ },
+ "runtimes/linux-arm64/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-arm64"
+ },
+ "runtimes/linux-armel/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-armel"
+ },
+ "runtimes/linux-mips64/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-mips64"
+ },
+ "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-musl-x64"
+ },
+ "runtimes/linux-s390x/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-s390x"
+ },
+ "runtimes/linux-x64/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-x64"
+ },
+ "runtimes/linux-x86/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-x86"
+ },
+ "runtimes/osx-arm64/native/libe_sqlite3.dylib": {
+ "assetType": "native",
+ "rid": "osx-arm64"
+ },
+ "runtimes/osx-x64/native/libe_sqlite3.dylib": {
+ "assetType": "native",
+ "rid": "osx-x64"
+ },
+ "runtimes/win-arm/native/e_sqlite3.dll": {
+ "assetType": "native",
+ "rid": "win-arm"
+ },
+ "runtimes/win-arm64/native/e_sqlite3.dll": {
+ "assetType": "native",
+ "rid": "win-arm64"
+ },
+ "runtimes/win-x64/native/e_sqlite3.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ },
+ "runtimes/win-x86/native/e_sqlite3.dll": {
+ "assetType": "native",
+ "rid": "win-x86"
+ }
+ }
+ },
+ "SQLitePCLRaw.provider.e_sqlite3/2.0.6": {
+ "type": "package",
+ "dependencies": {
+ "SQLitePCLRaw.core": "2.0.6"
+ },
+ "compile": {
+ "lib/net5.0/SQLitePCLRaw.provider.e_sqlite3.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0/SQLitePCLRaw.provider.e_sqlite3.dll": {}
+ }
+ },
+ "Steamworks.NET/20.1.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.1/Steamworks.NET.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Steamworks.NET.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/linux-x64/lib/netstandard2.1/Steamworks.NET.dll": {
+ "assetType": "runtime",
+ "rid": "linux-x64"
+ },
+ "runtimes/linux-x86/lib/netstandard2.1/Steamworks.NET.dll": {
+ "assetType": "runtime",
+ "rid": "linux-x86"
+ },
+ "runtimes/osx-x64/lib/netstandard2.1/Steamworks.NET.dll": {
+ "assetType": "runtime",
+ "rid": "osx-x64"
+ },
+ "runtimes/osx-x86/lib/netstandard2.1/Steamworks.NET.dll": {
+ "assetType": "runtime",
+ "rid": "osx-x86"
+ },
+ "runtimes/win-x64/lib/netstandard2.1/Steamworks.NET.dll": {
+ "assetType": "runtime",
+ "rid": "win-x64"
+ },
+ "runtimes/win-x86/lib/netstandard2.1/Steamworks.NET.dll": {
+ "assetType": "runtime",
+ "rid": "win-x86"
+ }
+ }
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.ComponentModel.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
+ }
+ },
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
+ }
+ },
+ "System.Configuration.ConfigurationManager/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Diagnostics.PerformanceCounter/6.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Drawing.Common/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Win32.SystemEvents": "7.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Drawing.Common.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Drawing.Common.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Formats.Asn1/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Formats.Asn1.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Globalization.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {}
+ }
+ },
+ "System.Memory/4.5.4": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/_._": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.TypeExtensions/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ },
+ "compile": {
+ "ref/netcoreapp1.1/_._": {}
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Security.AccessControl/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Security.AccessControl.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.AccessControl.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Cng/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Formats.Asn1": "5.0.0"
+ },
+ "compile": {
+ "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Pkcs/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Formats.Asn1": "5.0.0",
+ "System.Security.Cryptography.Cng": "5.0.0"
+ },
+ "compile": {
+ "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Permissions/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Windows.Extensions": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Text.Encoding.CodePages/4.4.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Windows.Extensions/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Drawing.Common": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "TSAPI/5.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.1",
+ "OTAPI.Upcoming": "3.1.20",
+ "System.Diagnostics.PerformanceCounter": "6.0.1"
+ },
+ "compile": {
+ "lib/net6.0/TerrariaServer.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/TerrariaServer.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "TShock/5.2.0": {
+ "type": "package",
+ "dependencies": {
+ "BCrypt.Net-Next": "4.0.3",
+ "GetText.NET": "1.7.14",
+ "Microsoft.Data.Sqlite": "6.0.11",
+ "MySql.Data": "8.0.31",
+ "TSAPI": "5.2.0"
+ },
+ "compile": {
+ "lib/net6.0/TShockAPI.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/TShockAPI.dll": {
+ "related": ".xml"
+ }
+ },
+ "contentFiles": {
+ "contentFiles/any/net6.0/HttpServer.dll": {
+ "buildAction": "None",
+ "codeLanguage": "any",
+ "copyToOutput": true,
+ "outputPath": "HttpServer.dll"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "BCrypt.Net-Next/4.0.3": {
+ "sha512": "W+U9WvmZQgi5cX6FS5GDtDoPzUCV4LkBLkywq/kRZhuDwcbavOzcDAr3LXJFqHUi952Yj3LEYoWW0jbEUQChsA==",
+ "type": "package",
+ "path": "bcrypt.net-next/4.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "bcrypt.net-next.4.0.3.nupkg.sha512",
+ "bcrypt.net-next.nuspec",
+ "ico.png",
+ "lib/net20/BCrypt.Net-Next.dll",
+ "lib/net20/BCrypt.Net-Next.xml",
+ "lib/net35/BCrypt.Net-Next.dll",
+ "lib/net35/BCrypt.Net-Next.xml",
+ "lib/net462/BCrypt.Net-Next.dll",
+ "lib/net462/BCrypt.Net-Next.xml",
+ "lib/net472/BCrypt.Net-Next.dll",
+ "lib/net472/BCrypt.Net-Next.xml",
+ "lib/net48/BCrypt.Net-Next.dll",
+ "lib/net48/BCrypt.Net-Next.xml",
+ "lib/net5.0/BCrypt.Net-Next.dll",
+ "lib/net5.0/BCrypt.Net-Next.xml",
+ "lib/net6.0/BCrypt.Net-Next.dll",
+ "lib/net6.0/BCrypt.Net-Next.xml",
+ "lib/netstandard2.0/BCrypt.Net-Next.dll",
+ "lib/netstandard2.0/BCrypt.Net-Next.xml",
+ "lib/netstandard2.1/BCrypt.Net-Next.dll",
+ "lib/netstandard2.1/BCrypt.Net-Next.xml",
+ "readme.md"
+ ]
+ },
+ "GetText.NET/1.7.14": {
+ "sha512": "o+XYsD5STsbIJ/IN+zntfRdIdhZpFaul+/7zgPj7GmPVGVHnVqm3YQwNKwLeKE5i3vQazq1Ov2QfXnCIY4oKqw==",
+ "type": "package",
+ "path": "gettext.net/1.7.14",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE",
+ "gettext.net.1.7.14.nupkg.sha512",
+ "gettext.net.nuspec",
+ "lib/netstandard2.0/GetText.dll",
+ "lib/netstandard2.0/GetText.xml"
+ ]
+ },
+ "Google.Protobuf/3.19.4": {
+ "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==",
+ "type": "package",
+ "path": "google.protobuf/3.19.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "google.protobuf.3.19.4.nupkg.sha512",
+ "google.protobuf.nuspec",
+ "lib/net45/Google.Protobuf.dll",
+ "lib/net45/Google.Protobuf.pdb",
+ "lib/net45/Google.Protobuf.xml",
+ "lib/net5.0/Google.Protobuf.dll",
+ "lib/net5.0/Google.Protobuf.pdb",
+ "lib/net5.0/Google.Protobuf.xml",
+ "lib/netstandard1.1/Google.Protobuf.dll",
+ "lib/netstandard1.1/Google.Protobuf.pdb",
+ "lib/netstandard1.1/Google.Protobuf.xml",
+ "lib/netstandard2.0/Google.Protobuf.dll",
+ "lib/netstandard2.0/Google.Protobuf.pdb",
+ "lib/netstandard2.0/Google.Protobuf.xml"
+ ]
+ },
+ "K4os.Compression.LZ4/1.2.6": {
+ "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
+ "type": "package",
+ "path": "k4os.compression.lz4/1.2.6",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "k4os.compression.lz4.1.2.6.nupkg.sha512",
+ "k4os.compression.lz4.nuspec",
+ "lib/net45/K4os.Compression.LZ4.dll",
+ "lib/net45/K4os.Compression.LZ4.xml",
+ "lib/net46/K4os.Compression.LZ4.dll",
+ "lib/net46/K4os.Compression.LZ4.xml",
+ "lib/netstandard1.6/K4os.Compression.LZ4.dll",
+ "lib/netstandard1.6/K4os.Compression.LZ4.xml",
+ "lib/netstandard2.0/K4os.Compression.LZ4.dll",
+ "lib/netstandard2.0/K4os.Compression.LZ4.xml"
+ ]
+ },
+ "K4os.Compression.LZ4.Streams/1.2.6": {
+ "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
+ "type": "package",
+ "path": "k4os.compression.lz4.streams/1.2.6",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
+ "k4os.compression.lz4.streams.nuspec",
+ "lib/net45/K4os.Compression.LZ4.Streams.dll",
+ "lib/net45/K4os.Compression.LZ4.Streams.xml",
+ "lib/net46/K4os.Compression.LZ4.Streams.dll",
+ "lib/net46/K4os.Compression.LZ4.Streams.xml",
+ "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
+ "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
+ "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
+ "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
+ ]
+ },
+ "K4os.Hash.xxHash/1.0.6": {
+ "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
+ "type": "package",
+ "path": "k4os.hash.xxhash/1.0.6",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "k4os.hash.xxhash.1.0.6.nupkg.sha512",
+ "k4os.hash.xxhash.nuspec",
+ "lib/net45/K4os.Hash.xxHash.dll",
+ "lib/net45/K4os.Hash.xxHash.xml",
+ "lib/net46/K4os.Hash.xxHash.dll",
+ "lib/net46/K4os.Hash.xxHash.xml",
+ "lib/netstandard1.6/K4os.Hash.xxHash.dll",
+ "lib/netstandard1.6/K4os.Hash.xxHash.xml",
+ "lib/netstandard2.0/K4os.Hash.xxHash.dll",
+ "lib/netstandard2.0/K4os.Hash.xxHash.xml"
+ ]
+ },
+ "Microsoft.Data.Sqlite/6.0.11": {
+ "sha512": "oa/UXdIRx95o46eF/RTnCw4QDZfJikH0v5vSrFiLoAWFOfLOv5/jzFmD0+EQ33e+87sUNi2mo0rfHS/1Q4WTCw==",
+ "type": "package",
+ "path": "microsoft.data.sqlite/6.0.11",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/_._",
+ "microsoft.data.sqlite.6.0.11.nupkg.sha512",
+ "microsoft.data.sqlite.nuspec"
+ ]
+ },
+ "Microsoft.Data.Sqlite.Core/6.0.11": {
+ "sha512": "xCcaePISVs3Fdy+ji1yGDp1gCjUwDJpfIKrBWXWDgyzc3R2MmNxTW5YgNmnB7dvdHoJwf0jPZ50M5TBj7noV3w==",
+ "type": "package",
+ "path": "microsoft.data.sqlite.core/6.0.11",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/net6.0/Microsoft.Data.Sqlite.dll",
+ "lib/net6.0/Microsoft.Data.Sqlite.xml",
+ "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
+ "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
+ "microsoft.data.sqlite.core.6.0.11.nupkg.sha512",
+ "microsoft.data.sqlite.core.nuspec"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/2.0.0": {
+ "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.2.0.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.Win32.SystemEvents/7.0.0": {
+ "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==",
+ "type": "package",
+ "path": "microsoft.win32.systemevents/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
+ "lib/net462/Microsoft.Win32.SystemEvents.dll",
+ "lib/net462/Microsoft.Win32.SystemEvents.xml",
+ "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
+ "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
+ "lib/net7.0/Microsoft.Win32.SystemEvents.dll",
+ "lib/net7.0/Microsoft.Win32.SystemEvents.xml",
+ "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
+ "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
+ "microsoft.win32.systemevents.7.0.0.nupkg.sha512",
+ "microsoft.win32.systemevents.nuspec",
+ "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
+ "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
+ "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll",
+ "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "ModFramework/1.1.7": {
+ "sha512": "Y+aWqispd8zqrx2PCo4IwKxMWR1C/vtVzZwhXjiPJoHdDn38GGnCCwij8DuNzOHAiucgCS0qmRFLOdfFNCt6ow==",
+ "type": "package",
+ "path": "modframework/1.1.7",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net6.0/ModFramework.dll",
+ "modframework.1.1.7.nupkg.sha512",
+ "modframework.nuspec"
+ ]
+ },
+ "Mono.Cecil/0.11.4": {
+ "sha512": "IC1h5g0NeJGHIUgzM1P82ld57knhP0IcQfrYITDPXlNpMYGUrsG5TxuaWTjaeqDNQMBDNZkB8L0rBnwsY6JHuQ==",
+ "type": "package",
+ "path": "mono.cecil/0.11.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net40/Mono.Cecil.Mdb.dll",
+ "lib/net40/Mono.Cecil.Mdb.pdb",
+ "lib/net40/Mono.Cecil.Pdb.dll",
+ "lib/net40/Mono.Cecil.Pdb.pdb",
+ "lib/net40/Mono.Cecil.Rocks.dll",
+ "lib/net40/Mono.Cecil.Rocks.pdb",
+ "lib/net40/Mono.Cecil.dll",
+ "lib/net40/Mono.Cecil.pdb",
+ "lib/netstandard2.0/Mono.Cecil.Mdb.dll",
+ "lib/netstandard2.0/Mono.Cecil.Mdb.pdb",
+ "lib/netstandard2.0/Mono.Cecil.Pdb.dll",
+ "lib/netstandard2.0/Mono.Cecil.Pdb.pdb",
+ "lib/netstandard2.0/Mono.Cecil.Rocks.dll",
+ "lib/netstandard2.0/Mono.Cecil.Rocks.pdb",
+ "lib/netstandard2.0/Mono.Cecil.dll",
+ "lib/netstandard2.0/Mono.Cecil.pdb",
+ "mono.cecil.0.11.4.nupkg.sha512",
+ "mono.cecil.nuspec"
+ ]
+ },
+ "MonoMod/22.5.1.1": {
+ "sha512": "FKU1brIbpoQ655Akbefrk+mvDStmYzUwZVFBztUdJrjbtwVVaSsn+dFIvUG15SX9ij4jx9c649MKo/p4wbYrXQ==",
+ "type": "package",
+ "path": "monomod/22.5.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/MonoMod.exe",
+ "lib/net35/MonoMod.xml",
+ "lib/net452/MonoMod.exe",
+ "lib/net452/MonoMod.xml",
+ "lib/net5.0/MonoMod.dll",
+ "lib/net5.0/MonoMod.runtimeconfig.json",
+ "lib/net5.0/MonoMod.xml",
+ "lib/netstandard2.0/MonoMod.dll",
+ "lib/netstandard2.0/MonoMod.xml",
+ "monomod.22.5.1.1.nupkg.sha512",
+ "monomod.nuspec"
+ ]
+ },
+ "MonoMod.RuntimeDetour/22.5.1.1": {
+ "sha512": "WG5zLRuAr8KJEnIkKTuIG1OJCrGIT3pjvnAD43E0FDchHf3Dp985MF/8tmIQvAzCZV87JNs6QKeGGqmwDmpXpw==",
+ "type": "package",
+ "path": "monomod.runtimedetour/22.5.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/MonoMod.RuntimeDetour.dll",
+ "lib/net35/MonoMod.RuntimeDetour.xml",
+ "lib/net452/MonoMod.RuntimeDetour.dll",
+ "lib/net452/MonoMod.RuntimeDetour.xml",
+ "lib/net5.0/MonoMod.RuntimeDetour.dll",
+ "lib/net5.0/MonoMod.RuntimeDetour.xml",
+ "lib/netstandard2.0/MonoMod.RuntimeDetour.dll",
+ "lib/netstandard2.0/MonoMod.RuntimeDetour.xml",
+ "monomod.runtimedetour.22.5.1.1.nupkg.sha512",
+ "monomod.runtimedetour.nuspec"
+ ]
+ },
+ "MonoMod.RuntimeDetour.HookGen/22.5.1.1": {
+ "sha512": "jZunQfvC0mfK99PNLCMvTYnZ3pKrPe4rHtyDqB1li29fTyYdmsGjPhgEF9TkL4xXcoPQvTqFNpfRyWZucMU9XQ==",
+ "type": "package",
+ "path": "monomod.runtimedetour.hookgen/22.5.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/MonoMod.RuntimeDetour.HookGen.exe",
+ "lib/net35/MonoMod.RuntimeDetour.HookGen.xml",
+ "lib/net452/MonoMod.RuntimeDetour.HookGen.exe",
+ "lib/net452/MonoMod.RuntimeDetour.HookGen.xml",
+ "lib/net5.0/MonoMod.RuntimeDetour.HookGen.dll",
+ "lib/net5.0/MonoMod.RuntimeDetour.HookGen.runtimeconfig.json",
+ "lib/net5.0/MonoMod.RuntimeDetour.HookGen.xml",
+ "lib/netstandard2.0/MonoMod.RuntimeDetour.HookGen.dll",
+ "lib/netstandard2.0/MonoMod.RuntimeDetour.HookGen.xml",
+ "monomod.runtimedetour.hookgen.22.5.1.1.nupkg.sha512",
+ "monomod.runtimedetour.hookgen.nuspec"
+ ]
+ },
+ "MonoMod.Utils/22.5.1.1": {
+ "sha512": "vBObO1atXxhi2C4AuC53y87Bqeogi9xIrD1Ym3YWr5uxc8Nrm8SrsFeD1i3x04R999+XQ3FdeHrbXScyWYEHqQ==",
+ "type": "package",
+ "path": "monomod.utils/22.5.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/MonoMod.Utils.dll",
+ "lib/net35/MonoMod.Utils.xml",
+ "lib/net452/MonoMod.Utils.dll",
+ "lib/net452/MonoMod.Utils.xml",
+ "lib/net5.0/MonoMod.Utils.dll",
+ "lib/net5.0/MonoMod.Utils.xml",
+ "lib/netstandard2.0/MonoMod.Utils.dll",
+ "lib/netstandard2.0/MonoMod.Utils.xml",
+ "monomod.utils.22.5.1.1.nupkg.sha512",
+ "monomod.utils.nuspec"
+ ]
+ },
+ "MySql.Data/8.0.31": {
+ "sha512": "ZVcctmag6cX0DtDxWh3fhBlSdZfGHKIUIodl7QtjZKupSgbCT0X+bO1Faw/NfUR2VfoxB/L9WzLfeCvki65qVg==",
+ "type": "package",
+ "path": "mysql.data/8.0.31",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net452/MySql.Data.dll",
+ "lib/net452/MySql.Data.xml",
+ "lib/net452/ZstdNet.dll",
+ "lib/net48/MySql.Data.dll",
+ "lib/net48/MySql.Data.xml",
+ "lib/net48/ZstdNet.dll",
+ "lib/net5.0/MySql.Data.dll",
+ "lib/net5.0/MySql.Data.xml",
+ "lib/net5.0/ZstdNet.dll",
+ "lib/net6.0/MySql.Data.dll",
+ "lib/net6.0/MySql.Data.xml",
+ "lib/net6.0/ZstdNet.dll",
+ "lib/net7.0/MySql.Data.dll",
+ "lib/net7.0/MySql.Data.xml",
+ "lib/net7.0/ZstdNet.dll",
+ "lib/netstandard2.0/MySql.Data.dll",
+ "lib/netstandard2.0/MySql.Data.xml",
+ "lib/netstandard2.0/ZstdNet.dll",
+ "lib/netstandard2.1/MySql.Data.dll",
+ "lib/netstandard2.1/MySql.Data.xml",
+ "lib/netstandard2.1/ZstdNet.dll",
+ "mysql.data.8.0.31.nupkg.sha512",
+ "mysql.data.nuspec"
+ ]
+ },
+ "Newtonsoft.Json/13.0.3": {
+ "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
+ "type": "package",
+ "path": "newtonsoft.json/13.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.md",
+ "README.md",
+ "lib/net20/Newtonsoft.Json.dll",
+ "lib/net20/Newtonsoft.Json.xml",
+ "lib/net35/Newtonsoft.Json.dll",
+ "lib/net35/Newtonsoft.Json.xml",
+ "lib/net40/Newtonsoft.Json.dll",
+ "lib/net40/Newtonsoft.Json.xml",
+ "lib/net45/Newtonsoft.Json.dll",
+ "lib/net45/Newtonsoft.Json.xml",
+ "lib/net6.0/Newtonsoft.Json.dll",
+ "lib/net6.0/Newtonsoft.Json.xml",
+ "lib/netstandard1.0/Newtonsoft.Json.dll",
+ "lib/netstandard1.0/Newtonsoft.Json.xml",
+ "lib/netstandard1.3/Newtonsoft.Json.dll",
+ "lib/netstandard1.3/Newtonsoft.Json.xml",
+ "lib/netstandard2.0/Newtonsoft.Json.dll",
+ "lib/netstandard2.0/Newtonsoft.Json.xml",
+ "newtonsoft.json.13.0.3.nupkg.sha512",
+ "newtonsoft.json.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "NuGet.Common/6.3.1": {
+ "sha512": "/WgxNyc9dXl+ZrQJDf5BXaqtMbl0CcDC5GEQITecbHZBQHApTMuxeTMMEqa0Y+PD1CIxTtbRY4jmotKS5dsLuA==",
+ "type": "package",
+ "path": "nuget.common/6.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net472/NuGet.Common.dll",
+ "lib/net472/NuGet.Common.xml",
+ "lib/netstandard2.0/NuGet.Common.dll",
+ "lib/netstandard2.0/NuGet.Common.xml",
+ "nuget.common.6.3.1.nupkg.sha512",
+ "nuget.common.nuspec"
+ ]
+ },
+ "NuGet.Configuration/6.3.1": {
+ "sha512": "ja227AmXuDVgPXi3p2VTZFTYI/4xwwLSPYtd9Y9WIfCrRqSNDa96J5hm70wXhBCOQYvoRVDjp3ufgDnnqZ0bYA==",
+ "type": "package",
+ "path": "nuget.configuration/6.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net472/NuGet.Configuration.dll",
+ "lib/net472/NuGet.Configuration.xml",
+ "lib/netstandard2.0/NuGet.Configuration.dll",
+ "lib/netstandard2.0/NuGet.Configuration.xml",
+ "nuget.configuration.6.3.1.nupkg.sha512",
+ "nuget.configuration.nuspec"
+ ]
+ },
+ "NuGet.Frameworks/6.3.1": {
+ "sha512": "Ae1vRjHDbNU7EQwQnDlxFRl+O9iQLp2H9Z/sRB/EAmO8+neUOeOfbkLClO7ZNcTcW5p1FDABrPakXICtQ0JCRw==",
+ "type": "package",
+ "path": "nuget.frameworks/6.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net472/NuGet.Frameworks.dll",
+ "lib/net472/NuGet.Frameworks.xml",
+ "lib/netstandard2.0/NuGet.Frameworks.dll",
+ "lib/netstandard2.0/NuGet.Frameworks.xml",
+ "nuget.frameworks.6.3.1.nupkg.sha512",
+ "nuget.frameworks.nuspec"
+ ]
+ },
+ "NuGet.Packaging/6.3.1": {
+ "sha512": "/GI2ujy3t00I8qFGvuLrVMNAEMFgEHfW+GNACZna2zgjADrxqrCeONStYZR2hHt3eI2/5HbiaoX4NCP17JCYzw==",
+ "type": "package",
+ "path": "nuget.packaging/6.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net472/NuGet.Packaging.dll",
+ "lib/net472/NuGet.Packaging.xml",
+ "lib/net5.0/NuGet.Packaging.dll",
+ "lib/net5.0/NuGet.Packaging.xml",
+ "lib/netstandard2.0/NuGet.Packaging.dll",
+ "lib/netstandard2.0/NuGet.Packaging.xml",
+ "nuget.packaging.6.3.1.nupkg.sha512",
+ "nuget.packaging.nuspec"
+ ]
+ },
+ "NuGet.Protocol/6.3.1": {
+ "sha512": "1x3jozJNwoECAo88hrhYNuKkRrv9V2VoVxlCntpwr9jX5h6sTV3uHnXAN7vaVQ2/NRX9LLRIiD8K0NOTCG5EmQ==",
+ "type": "package",
+ "path": "nuget.protocol/6.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net472/NuGet.Protocol.dll",
+ "lib/net472/NuGet.Protocol.xml",
+ "lib/net5.0/NuGet.Protocol.dll",
+ "lib/net5.0/NuGet.Protocol.xml",
+ "lib/netstandard2.0/NuGet.Protocol.dll",
+ "lib/netstandard2.0/NuGet.Protocol.xml",
+ "nuget.protocol.6.3.1.nupkg.sha512",
+ "nuget.protocol.nuspec"
+ ]
+ },
+ "NuGet.Versioning/6.3.1": {
+ "sha512": "T/igBDLXCd+pH3YTWgGVNvYSOwbwaT30NyyM9ONjvlHlmaUjKBJpr9kH0AeL+Ado4EJsBhU3qxXVc6lyrpRcMw==",
+ "type": "package",
+ "path": "nuget.versioning/6.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net472/NuGet.Versioning.dll",
+ "lib/net472/NuGet.Versioning.xml",
+ "lib/netstandard2.0/NuGet.Versioning.dll",
+ "lib/netstandard2.0/NuGet.Versioning.xml",
+ "nuget.versioning.6.3.1.nupkg.sha512",
+ "nuget.versioning.nuspec"
+ ]
+ },
+ "OTAPI.Upcoming/3.1.20": {
+ "sha512": "nuWBI9nLsg4VrS1BBW0TrQof4M+YQYE4ldhGSNg86YO1l6FwN6/bqc3nwkv3JRpKJUGR0F2tnLQMGrS3puRZrw==",
+ "type": "package",
+ "path": "otapi.upcoming/3.1.20",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "COPYING.txt",
+ "lib/net6.0/OTAPI.Runtime.dll",
+ "lib/net6.0/OTAPI.dll",
+ "otapi.upcoming.3.1.20.nupkg.sha512",
+ "otapi.upcoming.nuspec"
+ ]
+ },
+ "Portable.BouncyCastle/1.9.0": {
+ "sha512": "eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==",
+ "type": "package",
+ "path": "portable.bouncycastle/1.9.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net40/BouncyCastle.Crypto.dll",
+ "lib/net40/BouncyCastle.Crypto.xml",
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll",
+ "lib/netstandard2.0/BouncyCastle.Crypto.xml",
+ "portable.bouncycastle.1.9.0.nupkg.sha512",
+ "portable.bouncycastle.nuspec"
+ ]
+ },
+ "SQLitePCLRaw.bundle_e_sqlite3/2.0.6": {
+ "sha512": "zssYqiaucyGArZfg74rJuzK0ewgZiidsRVrZTmP7JLNvK806gXg6PGA46XzoJGpNPPA5uRcumwvVp6YTYxtQ5w==",
+ "type": "package",
+ "path": "sqlitepclraw.bundle_e_sqlite3/2.0.6",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
+ "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll",
+ "lib/net461/SQLitePCLRaw.batteries_v2.dll",
+ "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
+ "sqlitepclraw.bundle_e_sqlite3.2.0.6.nupkg.sha512",
+ "sqlitepclraw.bundle_e_sqlite3.nuspec"
+ ]
+ },
+ "SQLitePCLRaw.core/2.0.6": {
+ "sha512": "Vh8n0dTvwXkCGur2WqQTITvk4BUO8i8h9ucSx3wwuaej3s2S6ZC0R7vqCTf9TfS/I4QkXO6g3W2YQIRFkOcijA==",
+ "type": "package",
+ "path": "sqlitepclraw.core/2.0.6",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/SQLitePCLRaw.core.dll",
+ "sqlitepclraw.core.2.0.6.nupkg.sha512",
+ "sqlitepclraw.core.nuspec"
+ ]
+ },
+ "SQLitePCLRaw.lib.e_sqlite3/2.0.6": {
+ "sha512": "xlstskMKalKQl0H2uLNe0viBM6fvAGLWqKZUQ3twX5y1tSOZKe0+EbXopQKYdbjJytNGI6y5WSKjpI+kVr2Ckg==",
+ "type": "package",
+ "path": "sqlitepclraw.lib.e_sqlite3/2.0.6",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
+ "lib/net461/_._",
+ "lib/netstandard2.0/_._",
+ "runtimes/alpine-x64/native/libe_sqlite3.so",
+ "runtimes/linux-arm/native/libe_sqlite3.so",
+ "runtimes/linux-arm64/native/libe_sqlite3.so",
+ "runtimes/linux-armel/native/libe_sqlite3.so",
+ "runtimes/linux-mips64/native/libe_sqlite3.so",
+ "runtimes/linux-musl-x64/native/libe_sqlite3.so",
+ "runtimes/linux-s390x/native/libe_sqlite3.so",
+ "runtimes/linux-x64/native/libe_sqlite3.so",
+ "runtimes/linux-x86/native/libe_sqlite3.so",
+ "runtimes/osx-arm64/native/libe_sqlite3.dylib",
+ "runtimes/osx-x64/native/libe_sqlite3.dylib",
+ "runtimes/win-arm/native/e_sqlite3.dll",
+ "runtimes/win-arm64/native/e_sqlite3.dll",
+ "runtimes/win-x64/native/e_sqlite3.dll",
+ "runtimes/win-x86/native/e_sqlite3.dll",
+ "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
+ "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
+ "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
+ "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
+ "sqlitepclraw.lib.e_sqlite3.2.0.6.nupkg.sha512",
+ "sqlitepclraw.lib.e_sqlite3.nuspec"
+ ]
+ },
+ "SQLitePCLRaw.provider.e_sqlite3/2.0.6": {
+ "sha512": "peXLJbhU+0clVBIPirihM1NoTBqw8ouBpcUsVMlcZ4k6fcL2hwgkctVB2Nt5VsbnOJcPspQL5xQK7QvLpxkMgg==",
+ "type": "package",
+ "path": "sqlitepclraw.provider.e_sqlite3/2.0.6",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net5.0/SQLitePCLRaw.provider.e_sqlite3.dll",
+ "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll",
+ "lib/uap10.0/SQLitePCLRaw.provider.e_sqlite3.dll",
+ "sqlitepclraw.provider.e_sqlite3.2.0.6.nupkg.sha512",
+ "sqlitepclraw.provider.e_sqlite3.nuspec"
+ ]
+ },
+ "Steamworks.NET/20.1.0": {
+ "sha512": "+GntwnyJ5tCNvUIaQxv2+ehDvZJzGUqlSB5xRBk1hTj1qqBJ6s4vK/OfGD/jae7aTmXiGSm8wpJORosNtQevJQ==",
+ "type": "package",
+ "path": "steamworks.net/20.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.1/Steamworks.NET.dll",
+ "readme.md",
+ "ref/netstandard2.1/Steamworks.NET.dll",
+ "runtimes/linux-x64/lib/netstandard2.1/Steamworks.NET.dll",
+ "runtimes/linux-x86/lib/netstandard2.1/Steamworks.NET.dll",
+ "runtimes/osx-x64/lib/netstandard2.1/Steamworks.NET.dll",
+ "runtimes/osx-x86/lib/netstandard2.1/Steamworks.NET.dll",
+ "runtimes/win-x64/lib/netstandard2.1/Steamworks.NET.dll",
+ "runtimes/win-x86/lib/netstandard2.1/Steamworks.NET.dll",
+ "steamworks.net.20.1.0.nupkg.sha512",
+ "steamworks.net.nuspec"
+ ]
+ },
+ "System.Buffers/4.5.1": {
+ "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
+ "type": "package",
+ "path": "system.buffers/4.5.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Buffers.dll",
+ "lib/net461/System.Buffers.xml",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.1/System.Buffers.dll",
+ "lib/netstandard1.1/System.Buffers.xml",
+ "lib/netstandard2.0/System.Buffers.dll",
+ "lib/netstandard2.0/System.Buffers.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net45/System.Buffers.dll",
+ "ref/net45/System.Buffers.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.1/System.Buffers.dll",
+ "ref/netstandard1.1/System.Buffers.xml",
+ "ref/netstandard2.0/System.Buffers.dll",
+ "ref/netstandard2.0/System.Buffers.xml",
+ "ref/uap10.0.16299/_._",
+ "system.buffers.4.5.1.nupkg.sha512",
+ "system.buffers.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
+ "type": "package",
+ "path": "system.collections.nongeneric/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Collections.NonGeneric.dll",
+ "lib/netstandard1.3/System.Collections.NonGeneric.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Collections.NonGeneric.dll",
+ "ref/netstandard1.3/System.Collections.NonGeneric.dll",
+ "ref/netstandard1.3/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.nongeneric.4.3.0.nupkg.sha512",
+ "system.collections.nongeneric.nuspec"
+ ]
+ },
+ "System.Collections.Specialized/4.3.0": {
+ "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
+ "type": "package",
+ "path": "system.collections.specialized/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Collections.Specialized.dll",
+ "lib/netstandard1.3/System.Collections.Specialized.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Collections.Specialized.dll",
+ "ref/netstandard1.3/System.Collections.Specialized.dll",
+ "ref/netstandard1.3/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/de/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/es/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/it/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.specialized.4.3.0.nupkg.sha512",
+ "system.collections.specialized.nuspec"
+ ]
+ },
+ "System.ComponentModel/4.3.0": {
+ "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
+ "type": "package",
+ "path": "system.componentmodel/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.ComponentModel.dll",
+ "lib/netstandard1.3/System.ComponentModel.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.ComponentModel.dll",
+ "ref/netcore50/System.ComponentModel.xml",
+ "ref/netcore50/de/System.ComponentModel.xml",
+ "ref/netcore50/es/System.ComponentModel.xml",
+ "ref/netcore50/fr/System.ComponentModel.xml",
+ "ref/netcore50/it/System.ComponentModel.xml",
+ "ref/netcore50/ja/System.ComponentModel.xml",
+ "ref/netcore50/ko/System.ComponentModel.xml",
+ "ref/netcore50/ru/System.ComponentModel.xml",
+ "ref/netcore50/zh-hans/System.ComponentModel.xml",
+ "ref/netcore50/zh-hant/System.ComponentModel.xml",
+ "ref/netstandard1.0/System.ComponentModel.dll",
+ "ref/netstandard1.0/System.ComponentModel.xml",
+ "ref/netstandard1.0/de/System.ComponentModel.xml",
+ "ref/netstandard1.0/es/System.ComponentModel.xml",
+ "ref/netstandard1.0/fr/System.ComponentModel.xml",
+ "ref/netstandard1.0/it/System.ComponentModel.xml",
+ "ref/netstandard1.0/ja/System.ComponentModel.xml",
+ "ref/netstandard1.0/ko/System.ComponentModel.xml",
+ "ref/netstandard1.0/ru/System.ComponentModel.xml",
+ "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
+ "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.4.3.0.nupkg.sha512",
+ "system.componentmodel.nuspec"
+ ]
+ },
+ "System.ComponentModel.Primitives/4.3.0": {
+ "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
+ "type": "package",
+ "path": "system.componentmodel.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/System.ComponentModel.Primitives.dll",
+ "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/System.ComponentModel.Primitives.dll",
+ "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
+ "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.primitives.4.3.0.nupkg.sha512",
+ "system.componentmodel.primitives.nuspec"
+ ]
+ },
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
+ "type": "package",
+ "path": "system.componentmodel.typeconverter/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/System.ComponentModel.TypeConverter.dll",
+ "lib/net462/System.ComponentModel.TypeConverter.dll",
+ "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
+ "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/System.ComponentModel.TypeConverter.dll",
+ "ref/net462/System.ComponentModel.TypeConverter.dll",
+ "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
+ "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
+ "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
+ "system.componentmodel.typeconverter.nuspec"
+ ]
+ },
+ "System.Configuration.ConfigurationManager/6.0.0": {
+ "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",
+ "type": "package",
+ "path": "system.configuration.configurationmanager/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Configuration.ConfigurationManager.dll",
+ "lib/net461/System.Configuration.ConfigurationManager.xml",
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll",
+ "lib/net6.0/System.Configuration.ConfigurationManager.xml",
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
+ "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
+ "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
+ "system.configuration.configurationmanager.6.0.0.nupkg.sha512",
+ "system.configuration.configurationmanager.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "type": "package",
+ "path": "system.diagnostics.debug/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.0/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.3/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "system.diagnostics.debug.nuspec"
+ ]
+ },
+ "System.Diagnostics.PerformanceCounter/6.0.1": {
+ "sha512": "dDl7Gx3bmSrM2k2ZIm+ucEJnLloZRyvfQF1DvfvATcGF3jtaUBiPvChma+6ZcZzxWMirN3kCywkW7PILphXyMQ==",
+ "type": "package",
+ "path": "system.diagnostics.performancecounter/6.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Diagnostics.PerformanceCounter.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Diagnostics.PerformanceCounter.dll",
+ "lib/net461/System.Diagnostics.PerformanceCounter.xml",
+ "lib/net6.0/System.Diagnostics.PerformanceCounter.dll",
+ "lib/net6.0/System.Diagnostics.PerformanceCounter.xml",
+ "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll",
+ "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml",
+ "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
+ "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
+ "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll",
+ "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.xml",
+ "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll",
+ "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml",
+ "system.diagnostics.performancecounter.6.0.1.nupkg.sha512",
+ "system.diagnostics.performancecounter.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Drawing.Common/7.0.0": {
+ "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==",
+ "type": "package",
+ "path": "system.drawing.common/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Drawing.Common.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/System.Drawing.Common.dll",
+ "lib/net462/System.Drawing.Common.xml",
+ "lib/net6.0/System.Drawing.Common.dll",
+ "lib/net6.0/System.Drawing.Common.xml",
+ "lib/net7.0/System.Drawing.Common.dll",
+ "lib/net7.0/System.Drawing.Common.xml",
+ "lib/netstandard2.0/System.Drawing.Common.dll",
+ "lib/netstandard2.0/System.Drawing.Common.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
+ "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
+ "runtimes/win/lib/net7.0/System.Drawing.Common.dll",
+ "runtimes/win/lib/net7.0/System.Drawing.Common.xml",
+ "system.drawing.common.7.0.0.nupkg.sha512",
+ "system.drawing.common.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Formats.Asn1/5.0.0": {
+ "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
+ "type": "package",
+ "path": "system.formats.asn1/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Formats.Asn1.dll",
+ "lib/net461/System.Formats.Asn1.xml",
+ "lib/netstandard2.0/System.Formats.Asn1.dll",
+ "lib/netstandard2.0/System.Formats.Asn1.xml",
+ "system.formats.asn1.5.0.0.nupkg.sha512",
+ "system.formats.asn1.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "type": "package",
+ "path": "system.globalization.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Globalization.Extensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Globalization.Extensions.dll",
+ "ref/netstandard1.3/System.Globalization.Extensions.dll",
+ "ref/netstandard1.3/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
+ "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
+ "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
+ "system.globalization.extensions.4.3.0.nupkg.sha512",
+ "system.globalization.extensions.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "type": "package",
+ "path": "system.io.filesystem.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.Primitives.dll",
+ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.Primitives.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
+ "system.io.filesystem.primitives.nuspec"
+ ]
+ },
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "type": "package",
+ "path": "system.linq/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.dll",
+ "lib/netcore50/System.Linq.dll",
+ "lib/netstandard1.6/System.Linq.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.dll",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/netstandard1.0/System.Linq.dll",
+ "ref/netstandard1.0/System.Linq.xml",
+ "ref/netstandard1.0/de/System.Linq.xml",
+ "ref/netstandard1.0/es/System.Linq.xml",
+ "ref/netstandard1.0/fr/System.Linq.xml",
+ "ref/netstandard1.0/it/System.Linq.xml",
+ "ref/netstandard1.0/ja/System.Linq.xml",
+ "ref/netstandard1.0/ko/System.Linq.xml",
+ "ref/netstandard1.0/ru/System.Linq.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.xml",
+ "ref/netstandard1.6/System.Linq.dll",
+ "ref/netstandard1.6/System.Linq.xml",
+ "ref/netstandard1.6/de/System.Linq.xml",
+ "ref/netstandard1.6/es/System.Linq.xml",
+ "ref/netstandard1.6/fr/System.Linq.xml",
+ "ref/netstandard1.6/it/System.Linq.xml",
+ "ref/netstandard1.6/ja/System.Linq.xml",
+ "ref/netstandard1.6/ko/System.Linq.xml",
+ "ref/netstandard1.6/ru/System.Linq.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.4.3.0.nupkg.sha512",
+ "system.linq.nuspec"
+ ]
+ },
+ "System.Memory/4.5.4": {
+ "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "type": "package",
+ "path": "system.memory/4.5.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Memory.dll",
+ "lib/net461/System.Memory.xml",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.1/System.Memory.dll",
+ "lib/netstandard1.1/System.Memory.xml",
+ "lib/netstandard2.0/System.Memory.dll",
+ "lib/netstandard2.0/System.Memory.xml",
+ "ref/netcoreapp2.1/_._",
+ "system.memory.4.5.4.nupkg.sha512",
+ "system.memory.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.7.0": {
+ "sha512": "AucBYo3DSI0IDxdUjKksBcQJXPHyoPyrCXYURW1WDsLI4M65Ar/goSHjdnHOAY9MiYDNKqDlIgaYm+zL2hA1KA==",
+ "type": "package",
+ "path": "system.reflection.emit.ilgeneration/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard2.0/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard2.0/System.Reflection.Emit.ILGeneration.xml",
+ "lib/netstandard2.1/_._",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard2.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard2.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard2.1/_._",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "runtimes/aot/lib/netcore50/System.Reflection.Emit.ILGeneration.xml",
+ "system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512",
+ "system.reflection.emit.ilgeneration.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.7.0": {
+ "sha512": "a4OLB4IITxAXJeV74MDx49Oq2+PsF6Sml54XAFv+2RyWwtDBcabzoxiiJRhdhx+gaohLh4hEGCLQyBozXoQPqA==",
+ "type": "package",
+ "path": "system.reflection.emit.lightweight/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard2.0/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard2.0/System.Reflection.Emit.Lightweight.xml",
+ "lib/netstandard2.1/_._",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard2.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard2.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard2.1/_._",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.xml",
+ "system.reflection.emit.lightweight.4.7.0.nupkg.sha512",
+ "system.reflection.emit.lightweight.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "type": "package",
+ "path": "system.reflection.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/System.Reflection.Extensions.dll",
+ "ref/netstandard1.0/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.extensions.4.3.0.nupkg.sha512",
+ "system.reflection.extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.7.0": {
+ "sha512": "VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==",
+ "type": "package",
+ "path": "system.reflection.typeextensions/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "lib/net461/System.Reflection.TypeExtensions.dll",
+ "lib/net461/System.Reflection.TypeExtensions.xml",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.3/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard1.3/System.Reflection.TypeExtensions.xml",
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.xml",
+ "lib/netstandard2.0/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard2.0/System.Reflection.TypeExtensions.xml",
+ "lib/uap10.0.16299/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "ref/net461/System.Reflection.TypeExtensions.dll",
+ "ref/net461/System.Reflection.TypeExtensions.xml",
+ "ref/net472/System.Reflection.TypeExtensions.dll",
+ "ref/net472/System.Reflection.TypeExtensions.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard2.0/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard2.0/System.Reflection.TypeExtensions.xml",
+ "ref/uap10.0.16299/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "runtimes/aot/lib/uap10.0.16299/_._",
+ "system.reflection.typeextensions.4.7.0.nupkg.sha512",
+ "system.reflection.typeextensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
+ "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.0.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "type": "package",
+ "path": "system.runtime.handles/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/netstandard1.3/System.Runtime.Handles.dll",
+ "ref/netstandard1.3/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/de/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/es/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/it/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.handles.4.3.0.nupkg.sha512",
+ "system.runtime.handles.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "type": "package",
+ "path": "system.runtime.interopservices/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.xml",
+ "ref/netcore50/de/System.Runtime.InteropServices.xml",
+ "ref/netcore50/es/System.Runtime.InteropServices.xml",
+ "ref/netcore50/fr/System.Runtime.InteropServices.xml",
+ "ref/netcore50/it/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ja/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ko/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ru/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.1/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.1/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.2/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.3/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.5/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.interopservices.4.3.0.nupkg.sha512",
+ "system.runtime.interopservices.nuspec"
+ ]
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "type": "package",
+ "path": "system.runtime.loader/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/_._",
+ "lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard1.5/System.Runtime.Loader.dll",
+ "ref/netstandard1.5/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/de/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/es/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/it/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
+ "system.runtime.loader.4.3.0.nupkg.sha512",
+ "system.runtime.loader.nuspec"
+ ]
+ },
+ "System.Security.AccessControl/6.0.0": {
+ "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
+ "type": "package",
+ "path": "system.security.accesscontrol/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Security.AccessControl.dll",
+ "lib/net461/System.Security.AccessControl.xml",
+ "lib/net6.0/System.Security.AccessControl.dll",
+ "lib/net6.0/System.Security.AccessControl.xml",
+ "lib/netstandard2.0/System.Security.AccessControl.dll",
+ "lib/netstandard2.0/System.Security.AccessControl.xml",
+ "runtimes/win/lib/net461/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net461/System.Security.AccessControl.xml",
+ "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
+ "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
+ "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
+ "system.security.accesscontrol.6.0.0.nupkg.sha512",
+ "system.security.accesscontrol.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Security.Cryptography.Cng/5.0.0": {
+ "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
+ "type": "package",
+ "path": "system.security.cryptography.cng/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Cng.dll",
+ "lib/net461/System.Security.Cryptography.Cng.dll",
+ "lib/net461/System.Security.Cryptography.Cng.xml",
+ "lib/net462/System.Security.Cryptography.Cng.dll",
+ "lib/net462/System.Security.Cryptography.Cng.xml",
+ "lib/net47/System.Security.Cryptography.Cng.dll",
+ "lib/net47/System.Security.Cryptography.Cng.xml",
+ "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
+ "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
+ "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
+ "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
+ "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
+ "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
+ "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
+ "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
+ "lib/uap10.0.16299/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.Cng.dll",
+ "ref/net461/System.Security.Cryptography.Cng.dll",
+ "ref/net461/System.Security.Cryptography.Cng.xml",
+ "ref/net462/System.Security.Cryptography.Cng.dll",
+ "ref/net462/System.Security.Cryptography.Cng.xml",
+ "ref/net47/System.Security.Cryptography.Cng.dll",
+ "ref/net47/System.Security.Cryptography.Cng.xml",
+ "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
+ "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
+ "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
+ "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
+ "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
+ "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
+ "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
+ "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
+ "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
+ "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
+ "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
+ "ref/uap10.0.16299/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
+ "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
+ "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
+ "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/uap10.0.16299/_._",
+ "system.security.cryptography.cng.5.0.0.nupkg.sha512",
+ "system.security.cryptography.cng.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.Cryptography.Pkcs/5.0.0": {
+ "sha512": "9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
+ "type": "package",
+ "path": "system.security.cryptography.pkcs/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.Security.Cryptography.Pkcs.dll",
+ "lib/net461/System.Security.Cryptography.Pkcs.dll",
+ "lib/net461/System.Security.Cryptography.Pkcs.xml",
+ "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
+ "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
+ "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
+ "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
+ "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
+ "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
+ "ref/net46/System.Security.Cryptography.Pkcs.dll",
+ "ref/net461/System.Security.Cryptography.Pkcs.dll",
+ "ref/net461/System.Security.Cryptography.Pkcs.xml",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml",
+ "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
+ "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
+ "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
+ "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
+ "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
+ "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
+ "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
+ "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
+ "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
+ "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
+ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
+ "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
+ "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
+ "system.security.cryptography.pkcs.5.0.0.nupkg.sha512",
+ "system.security.cryptography.pkcs.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.Cryptography.ProtectedData/6.0.0": {
+ "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
+ "type": "package",
+ "path": "system.security.cryptography.protecteddata/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net461/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net461/System.Security.Cryptography.ProtectedData.xml",
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
+ "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
+ "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
+ "system.security.cryptography.protecteddata.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Security.Permissions/6.0.0": {
+ "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
+ "type": "package",
+ "path": "system.security.permissions/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Security.Permissions.dll",
+ "lib/net461/System.Security.Permissions.xml",
+ "lib/net5.0/System.Security.Permissions.dll",
+ "lib/net5.0/System.Security.Permissions.xml",
+ "lib/net6.0/System.Security.Permissions.dll",
+ "lib/net6.0/System.Security.Permissions.xml",
+ "lib/netcoreapp3.1/System.Security.Permissions.dll",
+ "lib/netcoreapp3.1/System.Security.Permissions.xml",
+ "lib/netstandard2.0/System.Security.Permissions.dll",
+ "lib/netstandard2.0/System.Security.Permissions.xml",
+ "runtimes/win/lib/net461/System.Security.Permissions.dll",
+ "runtimes/win/lib/net461/System.Security.Permissions.xml",
+ "system.security.permissions.6.0.0.nupkg.sha512",
+ "system.security.permissions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Text.Encoding.CodePages/4.4.0": {
+ "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
+ "type": "package",
+ "path": "system.text.encoding.codepages/4.4.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Text.Encoding.CodePages.dll",
+ "lib/net461/System.Text.Encoding.CodePages.dll",
+ "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "system.text.encoding.codepages.4.4.0.nupkg.sha512",
+ "system.text.encoding.codepages.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "System.Windows.Extensions/6.0.0": {
+ "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
+ "type": "package",
+ "path": "system.windows.extensions/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net6.0/System.Windows.Extensions.dll",
+ "lib/net6.0/System.Windows.Extensions.xml",
+ "lib/netcoreapp3.1/System.Windows.Extensions.dll",
+ "lib/netcoreapp3.1/System.Windows.Extensions.xml",
+ "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
+ "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
+ "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
+ "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
+ "system.windows.extensions.6.0.0.nupkg.sha512",
+ "system.windows.extensions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "TSAPI/5.2.0": {
+ "sha512": "Efl/r4pzsVlVGhPj/7Z+IbV+wqQpK4DdPh/M6TAFOwPf/dXPAt6KHvfwiuyvqbRT9nh7CiHvciCPZqe+jq4vhA==",
+ "type": "package",
+ "path": "tsapi/5.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net6.0/TerrariaServer.dll",
+ "lib/net6.0/TerrariaServer.xml",
+ "tsapi.5.2.0.nupkg.sha512",
+ "tsapi.nuspec"
+ ]
+ },
+ "TShock/5.2.0": {
+ "sha512": "dS6dxpP7kyoqoelc8QywljvG939MBH5i7VkCqwS33W8lVur+OfvAlpjm6sxPQt6x9BRi8GTOWXZ5124GieIanQ==",
+ "type": "package",
+ "path": "tshock/5.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "content/HttpServer.dll",
+ "contentFiles/any/net6.0/HttpServer.dll",
+ "lib/net6.0/TShockAPI.dll",
+ "lib/net6.0/TShockAPI.xml",
+ "tshock.5.2.0.nupkg.sha512",
+ "tshock.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net6.0": [
+ "Newtonsoft.Json >= 13.0.3",
+ "System.Drawing.Common >= 7.0.0",
+ "TShock >= 5.2.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\mcjac\\.nuget\\packages\\": {},
+ "C:\\Users\\mcjac\\AppData\\Roaming\\Godot\\mono\\GodotNuGetFallbackFolder": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\mcjac\\Shop-plugin\\Shop.csproj",
+ "projectName": "Shop",
+ "projectPath": "C:\\Users\\mcjac\\Shop-plugin\\Shop.csproj",
+ "packagesPath": "C:\\Users\\mcjac\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\mcjac\\Shop-plugin\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Users\\mcjac\\AppData\\Roaming\\Godot\\mono\\GodotNuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\mcjac\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Users\\mcjac\\AppData\\Roaming\\NuGet\\config\\Godot.Offline.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net6.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net6.0": {
+ "targetAlias": "net6.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net6.0": {
+ "targetAlias": "net6.0",
+ "dependencies": {
+ "Newtonsoft.Json": {
+ "target": "Package",
+ "version": "[13.0.3, )"
+ },
+ "System.Drawing.Common": {
+ "target": "Package",
+ "version": "[7.0.0, )"
+ },
+ "TShock": {
+ "target": "Package",
+ "version": "[5.2.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Ref",
+ "version": "[6.0.19, 6.0.19]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Ref",
+ "version": "[6.0.19, 6.0.19]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Ref",
+ "version": "[6.0.19, 6.0.19]"
+ }
+ ],
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.305\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
new file mode 100644
index 0000000..0a914b9
--- /dev/null
+++ b/obj/project.nuget.cache
@@ -0,0 +1,87 @@
+{
+ "version": 2,
+ "dgSpecHash": "NFWAvoQAIQE8YrrbGfiLGzT69GZsmuKEV7FICIxho6hpRecSshmopHU/ax2pWEvmMWG0sasgkk0AgdGNgD7atA==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\mcjac\\Shop-plugin\\Shop.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\mcjac\\.nuget\\packages\\bcrypt.net-next\\4.0.3\\bcrypt.net-next.4.0.3.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\gettext.net\\1.7.14\\gettext.net.1.7.14.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\google.protobuf\\3.19.4\\google.protobuf.3.19.4.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\k4os.compression.lz4\\1.2.6\\k4os.compression.lz4.1.2.6.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\k4os.compression.lz4.streams\\1.2.6\\k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\microsoft.data.sqlite\\6.0.11\\microsoft.data.sqlite.6.0.11.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\microsoft.data.sqlite.core\\6.0.11\\microsoft.data.sqlite.core.6.0.11.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\modframework\\1.1.7\\modframework.1.1.7.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\mono.cecil\\0.11.4\\mono.cecil.0.11.4.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\monomod\\22.5.1.1\\monomod.22.5.1.1.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\monomod.runtimedetour\\22.5.1.1\\monomod.runtimedetour.22.5.1.1.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\monomod.runtimedetour.hookgen\\22.5.1.1\\monomod.runtimedetour.hookgen.22.5.1.1.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\monomod.utils\\22.5.1.1\\monomod.utils.22.5.1.1.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\mysql.data\\8.0.31\\mysql.data.8.0.31.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\nuget.common\\6.3.1\\nuget.common.6.3.1.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\nuget.configuration\\6.3.1\\nuget.configuration.6.3.1.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\nuget.frameworks\\6.3.1\\nuget.frameworks.6.3.1.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\nuget.packaging\\6.3.1\\nuget.packaging.6.3.1.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\nuget.protocol\\6.3.1\\nuget.protocol.6.3.1.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\nuget.versioning\\6.3.1\\nuget.versioning.6.3.1.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\otapi.upcoming\\3.1.20\\otapi.upcoming.3.1.20.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\portable.bouncycastle\\1.9.0\\portable.bouncycastle.1.9.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.6\\sqlitepclraw.bundle_e_sqlite3.2.0.6.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\sqlitepclraw.core\\2.0.6\\sqlitepclraw.core.2.0.6.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.6\\sqlitepclraw.lib.e_sqlite3.2.0.6.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.0.6\\sqlitepclraw.provider.e_sqlite3.2.0.6.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\steamworks.net\\20.1.0\\steamworks.net.20.1.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.1\\system.diagnostics.performancecounter.6.0.1.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.formats.asn1\\5.0.0\\system.formats.asn1.5.0.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.7.0\\system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.reflection.emit.lightweight\\4.7.0\\system.reflection.emit.lightweight.4.7.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.reflection.typeextensions\\4.7.0\\system.reflection.typeextensions.4.7.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.security.cryptography.pkcs\\5.0.0\\system.security.cryptography.pkcs.5.0.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.text.encoding.codepages\\4.4.0\\system.text.encoding.codepages.4.4.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\tsapi\\5.2.0\\tsapi.5.2.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\tshock\\5.2.0\\tshock.5.2.0.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\6.0.19\\microsoft.windowsdesktop.app.ref.6.0.19.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\microsoft.netcore.app.ref\\6.0.19\\microsoft.netcore.app.ref.6.0.19.nupkg.sha512",
+ "C:\\Users\\mcjac\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\6.0.19\\microsoft.aspnetcore.app.ref.6.0.19.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/obj/x64/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/x64/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..ed92695
--- /dev/null
+++ b/obj/x64/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
diff --git a/obj/x64/Release/net6.0/Shop.GeneratedMSBuildEditorConfig.editorconfig b/obj/x64/Release/net6.0/Shop.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..a3f7208
--- /dev/null
+++ b/obj/x64/Release/net6.0/Shop.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,11 @@
+is_global = true
+build_property.TargetFramework = net6.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Shop
+build_property.ProjectDir = C:\Users\mcjac\Shop-plugin\
diff --git a/obj/x64/Release/net6.0/Shop.assets.cache b/obj/x64/Release/net6.0/Shop.assets.cache
new file mode 100644
index 0000000..efe2ea1
Binary files /dev/null and b/obj/x64/Release/net6.0/Shop.assets.cache differ
diff --git a/obj/x64/Release/net6.0/Shop.csproj.AssemblyReference.cache b/obj/x64/Release/net6.0/Shop.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..85bebcc
Binary files /dev/null and b/obj/x64/Release/net6.0/Shop.csproj.AssemblyReference.cache differ
diff --git a/obj/x64/Release/net6.0/Shop.csproj.CopyComplete b/obj/x64/Release/net6.0/Shop.csproj.CopyComplete
new file mode 100644
index 0000000..e69de29
diff --git a/obj/x64/Release/net6.0/Shop.csproj.CoreCompileInputs.cache b/obj/x64/Release/net6.0/Shop.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..3f11385
--- /dev/null
+++ b/obj/x64/Release/net6.0/Shop.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+8134cc92337913bea349a178b67ecb1e4fb5fa0f
diff --git a/obj/x64/Release/net6.0/Shop.csproj.FileListAbsolute.txt b/obj/x64/Release/net6.0/Shop.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..d75e2de
--- /dev/null
+++ b/obj/x64/Release/net6.0/Shop.csproj.FileListAbsolute.txt
@@ -0,0 +1,13 @@
+C:\Users\mcjac\Shop-plugin\bin\x64\Release\net6.0\HttpServer.dll
+C:\Users\mcjac\Shop-plugin\bin\x64\Release\net6.0\Shop.deps.json
+C:\Users\mcjac\Shop-plugin\bin\x64\Release\net6.0\Shop.dll
+C:\Users\mcjac\Shop-plugin\bin\x64\Release\net6.0\Shop.pdb
+C:\Users\mcjac\Shop-plugin\bin\x64\Release\net6.0\Wolfje.Plugins.SEconomy.dll
+C:\Users\mcjac\Shop-plugin\obj\x64\Release\net6.0\Shop.csproj.AssemblyReference.cache
+C:\Users\mcjac\Shop-plugin\obj\x64\Release\net6.0\Shop.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\mcjac\Shop-plugin\obj\x64\Release\net6.0\Shop.csproj.CoreCompileInputs.cache
+C:\Users\mcjac\Shop-plugin\obj\x64\Release\net6.0\Shop.csproj.CopyComplete
+C:\Users\mcjac\Shop-plugin\obj\x64\Release\net6.0\Shop.dll
+C:\Users\mcjac\Shop-plugin\obj\x64\Release\net6.0\refint\Shop.dll
+C:\Users\mcjac\Shop-plugin\obj\x64\Release\net6.0\Shop.pdb
+C:\Users\mcjac\Shop-plugin\obj\x64\Release\net6.0\ref\Shop.dll
diff --git a/obj/x64/Release/net6.0/Shop.dll b/obj/x64/Release/net6.0/Shop.dll
new file mode 100644
index 0000000..3c6e87b
Binary files /dev/null and b/obj/x64/Release/net6.0/Shop.dll differ
diff --git a/obj/x64/Release/net6.0/Shop.pdb b/obj/x64/Release/net6.0/Shop.pdb
new file mode 100644
index 0000000..f7a6b0c
Binary files /dev/null and b/obj/x64/Release/net6.0/Shop.pdb differ
diff --git a/obj/x64/Release/net6.0/ref/Shop.dll b/obj/x64/Release/net6.0/ref/Shop.dll
new file mode 100644
index 0000000..9e26215
Binary files /dev/null and b/obj/x64/Release/net6.0/ref/Shop.dll differ
diff --git a/obj/x64/Release/net6.0/refint/Shop.dll b/obj/x64/Release/net6.0/refint/Shop.dll
new file mode 100644
index 0000000..9e26215
Binary files /dev/null and b/obj/x64/Release/net6.0/refint/Shop.dll differ