diff --git a/.vs/Pacman/DesignTimeBuild/.dtbcache.v2 b/.vs/Pacman/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..cb960ef Binary files /dev/null and b/.vs/Pacman/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/Pacman/FileContentIndex/1595d1f0-77b1-4ad4-98f9-a8ef491055d2.vsidx b/.vs/Pacman/FileContentIndex/1595d1f0-77b1-4ad4-98f9-a8ef491055d2.vsidx new file mode 100644 index 0000000..f972605 Binary files /dev/null and b/.vs/Pacman/FileContentIndex/1595d1f0-77b1-4ad4-98f9-a8ef491055d2.vsidx differ diff --git a/.vs/Pacman/FileContentIndex/5a9a3270-f6b6-4d97-aebe-299d956cafe3.vsidx b/.vs/Pacman/FileContentIndex/5a9a3270-f6b6-4d97-aebe-299d956cafe3.vsidx new file mode 100644 index 0000000..a2084b3 Binary files /dev/null and b/.vs/Pacman/FileContentIndex/5a9a3270-f6b6-4d97-aebe-299d956cafe3.vsidx differ diff --git a/.vs/Pacman/FileContentIndex/8bd16de2-ee0f-44bd-b928-b78d3349d9d1.vsidx b/.vs/Pacman/FileContentIndex/8bd16de2-ee0f-44bd-b928-b78d3349d9d1.vsidx new file mode 100644 index 0000000..b73653f Binary files /dev/null and b/.vs/Pacman/FileContentIndex/8bd16de2-ee0f-44bd-b928-b78d3349d9d1.vsidx differ diff --git a/.vs/Pacman/FileContentIndex/c197ef25-1f59-4d8f-9dbe-98f8ce1a6b49.vsidx b/.vs/Pacman/FileContentIndex/c197ef25-1f59-4d8f-9dbe-98f8ce1a6b49.vsidx new file mode 100644 index 0000000..490b8af Binary files /dev/null and b/.vs/Pacman/FileContentIndex/c197ef25-1f59-4d8f-9dbe-98f8ce1a6b49.vsidx differ diff --git a/.vs/Pacman/FileContentIndex/read.lock b/.vs/Pacman/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 diff --git a/.vs/Pacman/v16/.suo b/.vs/Pacman/v16/.suo index 0797550..4cb7846 100644 Binary files a/.vs/Pacman/v16/.suo and b/.vs/Pacman/v16/.suo differ diff --git a/.vs/Pacman/v17/.suo b/.vs/Pacman/v17/.suo new file mode 100644 index 0000000..5e65cae Binary files /dev/null and b/.vs/Pacman/v17/.suo differ diff --git a/.vs/ProjectEvaluation/pacman.metadata.v3 b/.vs/ProjectEvaluation/pacman.metadata.v3 new file mode 100644 index 0000000..ecc6e9a Binary files /dev/null and b/.vs/ProjectEvaluation/pacman.metadata.v3 differ diff --git a/.vs/ProjectEvaluation/pacman.projects.v3 b/.vs/ProjectEvaluation/pacman.projects.v3 new file mode 100644 index 0000000..7b8af89 Binary files /dev/null and b/.vs/ProjectEvaluation/pacman.projects.v3 differ diff --git a/.vs/ProjectSettings.json b/.vs/ProjectSettings.json new file mode 100644 index 0000000..f8b4888 --- /dev/null +++ b/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": null +} \ No newline at end of file diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000..c06ae12 Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/Pacman/Classes/Map.cs b/Pacman/Classes/Map.cs new file mode 100644 index 0000000..b5b1170 --- /dev/null +++ b/Pacman/Classes/Map.cs @@ -0,0 +1,106 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework.Content; +using Microsoft.Xna.Framework.Graphics; +using System.IO; +using System.Linq; + +namespace Pacman.Classes +{ + public class Map + { + private static List textures = new List(); + + private string[,] map; + private int[,] dirs = { { -1, 0 }, { 0, -1 }, { 1, 0 }, { 0, 1 } }; + + private void ScanMap() + { + Queue toVisit = new Queue(); + List visited = new List(); + + + } + + private Tuple GetCellType(int[] cords) + { + bool[] walls = new bool[4]; + for (int i = 0; i < dirs.GetLength(0); i++) + { + if (map[cords[0] + dirs[i, 0], + cords[1] + dirs[i, 1]] + == "#") + { + walls[i] = true; + } + } + + if (walls[0] == walls[2] && walls[0] == true) + { + return new Tuple("transit", { { cords[0] + dirs[1, 0], cords[1] + dirs[1, 1] }, + } + } + } + + + public static void LoadContent(ContentManager Content) + { + textures.Add(Content.Load("wall")); + textures.Add(Content.Load("food")); + textures.Add(Content.Load("energizer")); + textures.Add(Content.Load("floor")); + textures.Add(Content.Load("graph")); + } + + public void LoadMap() + { + string file = File.ReadAllText("map.txt").Replace("\r", ""); + string[] rows = file.Split('\n'); + map = new string[rows.Length, rows[0].Length]; + + for (int i = 0; i < rows.Length; i++) + { + for (int j = 0; j < rows[i].Length; j++) + { + map[i, j] = rows[i][j].ToString(); + } + } + } + + public void Draw(SpriteBatch spriteBatch) + { + for (int i = 0; i < map.GetLength(0); i++) + { + for (int j = 0; j < map.GetLength(1); j++) + { + Texture2D texture; + if (map[i, j] == "*") + { + texture = textures[1]; + } + else if (map[i, j] == "#") + { + texture = textures[0]; + } + else if (map[i, j] == "@") + { + texture = textures[2]; + } + else if (map[i, j] == "&") + { + texture = textures[4]; + } + else + { + texture = textures[3]; + } + Rectangle rectangle = new Rectangle(new Point(j * 24, i * 24), new Point(24, 24)); + spriteBatch.Draw(texture, rectangle, Color.White); + + } + } + } + } +} diff --git a/Pacman/Content/Content.mgcb b/Pacman/Content/Content.mgcb index 3c42606..91061e0 100644 --- a/Pacman/Content/Content.mgcb +++ b/Pacman/Content/Content.mgcb @@ -13,3 +13,63 @@ #---------------------------------- Content ---------------------------------# +#begin energizer.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:energizer.png + +#begin floor.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:floor.png + +#begin food.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:food.png + +#begin graph.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:graph.png + +#begin wall.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:wall.png + diff --git a/Pacman/Content/bin/Windows/Content/energizer.xnb b/Pacman/Content/bin/Windows/Content/energizer.xnb new file mode 100644 index 0000000..f4d9c53 Binary files /dev/null and b/Pacman/Content/bin/Windows/Content/energizer.xnb differ diff --git a/Pacman/Content/bin/Windows/Content/floor.xnb b/Pacman/Content/bin/Windows/Content/floor.xnb new file mode 100644 index 0000000..53f280d Binary files /dev/null and b/Pacman/Content/bin/Windows/Content/floor.xnb differ diff --git a/Pacman/Content/bin/Windows/Content/food.xnb b/Pacman/Content/bin/Windows/Content/food.xnb new file mode 100644 index 0000000..09f8ec4 Binary files /dev/null and b/Pacman/Content/bin/Windows/Content/food.xnb differ diff --git a/Pacman/Content/bin/Windows/Content/graph.xnb b/Pacman/Content/bin/Windows/Content/graph.xnb new file mode 100644 index 0000000..7214372 Binary files /dev/null and b/Pacman/Content/bin/Windows/Content/graph.xnb differ diff --git a/Pacman/Content/bin/Windows/Content/wall.xnb b/Pacman/Content/bin/Windows/Content/wall.xnb new file mode 100644 index 0000000..ad53454 Binary files /dev/null and b/Pacman/Content/bin/Windows/Content/wall.xnb differ diff --git a/Pacman/Content/bin/Windows/energizer.xnb b/Pacman/Content/bin/Windows/energizer.xnb new file mode 100644 index 0000000..f4d9c53 Binary files /dev/null and b/Pacman/Content/bin/Windows/energizer.xnb differ diff --git a/Pacman/Content/bin/Windows/floor.xnb b/Pacman/Content/bin/Windows/floor.xnb new file mode 100644 index 0000000..53f280d Binary files /dev/null and b/Pacman/Content/bin/Windows/floor.xnb differ diff --git a/Pacman/Content/bin/Windows/food.xnb b/Pacman/Content/bin/Windows/food.xnb new file mode 100644 index 0000000..09f8ec4 Binary files /dev/null and b/Pacman/Content/bin/Windows/food.xnb differ diff --git a/Pacman/Content/bin/Windows/graph.xnb b/Pacman/Content/bin/Windows/graph.xnb new file mode 100644 index 0000000..7214372 Binary files /dev/null and b/Pacman/Content/bin/Windows/graph.xnb differ diff --git a/Pacman/Content/bin/Windows/wall.xnb b/Pacman/Content/bin/Windows/wall.xnb new file mode 100644 index 0000000..ad53454 Binary files /dev/null and b/Pacman/Content/bin/Windows/wall.xnb differ diff --git a/Pacman/Content/energizer.png b/Pacman/Content/energizer.png new file mode 100644 index 0000000..f8db49b Binary files /dev/null and b/Pacman/Content/energizer.png differ diff --git a/Pacman/Content/floor.png b/Pacman/Content/floor.png new file mode 100644 index 0000000..21b7d76 Binary files /dev/null and b/Pacman/Content/floor.png differ diff --git a/Pacman/Content/food.png b/Pacman/Content/food.png new file mode 100644 index 0000000..dd6decf Binary files /dev/null and b/Pacman/Content/food.png differ diff --git a/Pacman/Content/graph.png b/Pacman/Content/graph.png new file mode 100644 index 0000000..ca141ef Binary files /dev/null and b/Pacman/Content/graph.png differ diff --git a/Pacman/Content/obj/Windows/.mgcontent b/Pacman/Content/obj/Windows/.mgcontent new file mode 100644 index 0000000..bf0c67e --- /dev/null +++ b/Pacman/Content/obj/Windows/.mgcontent @@ -0,0 +1,20 @@ + + + Reach + Windows + + + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/energizer.png + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/floor.png + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/food.png + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/graph.png + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/wall.png + + + + + + + + + \ No newline at end of file diff --git a/Pacman/Content/obj/Windows/.mgstats b/Pacman/Content/obj/Windows/.mgstats new file mode 100644 index 0000000..ddd8734 --- /dev/null +++ b/Pacman/Content/obj/Windows/.mgstats @@ -0,0 +1,6 @@ +Source File,Dest File,Processor Type,Content Type,Source File Size,Dest File Size,Build Seconds +"C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/energizer.png","C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/energizer.xnb","TextureProcessor","Texture2DContent",173,4181,0.2723272 +"C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/floor.png","C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/floor.xnb","TextureProcessor","Texture2DContent",133,4181,0.0095367 +"C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/food.png","C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/food.xnb","TextureProcessor","Texture2DContent",158,4181,0.0143045 +"C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/graph.png","C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/graph.xnb","TextureProcessor","Texture2DContent",138,4181,0.6631775 +"C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/wall.png","C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/wall.xnb","TextureProcessor","Texture2DContent",138,4181,0.0145956 diff --git a/Pacman/Content/obj/Windows/Content/.mgcontent b/Pacman/Content/obj/Windows/Content/.mgcontent new file mode 100644 index 0000000..bf0c67e --- /dev/null +++ b/Pacman/Content/obj/Windows/Content/.mgcontent @@ -0,0 +1,20 @@ + + + Reach + Windows + + + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/energizer.png + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/floor.png + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/food.png + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/graph.png + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/wall.png + + + + + + + + + \ No newline at end of file diff --git a/Pacman/Content/obj/Windows/Content/.mgstats b/Pacman/Content/obj/Windows/Content/.mgstats index eab26b3..7e1b2b2 100644 --- a/Pacman/Content/obj/Windows/Content/.mgstats +++ b/Pacman/Content/obj/Windows/Content/.mgstats @@ -1 +1,6 @@ Source File,Dest File,Processor Type,Content Type,Source File Size,Dest File Size,Build Seconds +"C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/energizer.png","C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/Content/energizer.xnb","TextureProcessor","Texture2DContent",173,4181,0.2493217 +"C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/floor.png","C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/Content/floor.xnb","TextureProcessor","Texture2DContent",133,4181,0.017288 +"C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/food.png","C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/Content/food.xnb","TextureProcessor","Texture2DContent",158,4181,0.0096496 +"C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/graph.png","C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/Content/graph.xnb","TextureProcessor","Texture2DContent",138,4181,0.3421807 +"C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/wall.png","C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/Content/wall.xnb","TextureProcessor","Texture2DContent",138,4181,0.0136216 diff --git a/Pacman/Content/obj/Windows/Content/energizer.mgcontent b/Pacman/Content/obj/Windows/Content/energizer.mgcontent new file mode 100644 index 0000000..b0fced6 --- /dev/null +++ b/Pacman/Content/obj/Windows/Content/energizer.mgcontent @@ -0,0 +1,42 @@ + + + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/energizer.png + 2022-06-28T15:08:01.8828706+03:00 + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/Content/energizer.xnb + 2022-06-28T15:16:37.7600981+03:00 + TextureImporter + 2020-08-10T16:17:54+03:00 + TextureProcessor + 2020-08-10T16:17:54+03:00 + + ColorKeyColor + 255,0,255,255 + + + ColorKeyEnabled + True + + + GenerateMipmaps + False + + + PremultiplyAlpha + True + + + ResizeToPowerOfTwo + False + + + MakeSquare + False + + + TextureFormat + Color + + + + + \ No newline at end of file diff --git a/Pacman/Content/obj/Windows/Content/floor.mgcontent b/Pacman/Content/obj/Windows/Content/floor.mgcontent new file mode 100644 index 0000000..4f0b566 --- /dev/null +++ b/Pacman/Content/obj/Windows/Content/floor.mgcontent @@ -0,0 +1,42 @@ + + + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/floor.png + 2022-06-28T15:04:53.1875172+03:00 + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/Content/floor.xnb + 2022-06-28T15:16:37.7940916+03:00 + TextureImporter + 2020-08-10T16:17:54+03:00 + TextureProcessor + 2020-08-10T16:17:54+03:00 + + ColorKeyColor + 255,0,255,255 + + + ColorKeyEnabled + True + + + GenerateMipmaps + False + + + PremultiplyAlpha + True + + + ResizeToPowerOfTwo + False + + + MakeSquare + False + + + TextureFormat + Color + + + + + \ No newline at end of file diff --git a/Pacman/Content/obj/Windows/Content/food.mgcontent b/Pacman/Content/obj/Windows/Content/food.mgcontent new file mode 100644 index 0000000..d001dc8 --- /dev/null +++ b/Pacman/Content/obj/Windows/Content/food.mgcontent @@ -0,0 +1,42 @@ + + + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/food.png + 2022-06-28T15:06:38.4441725+03:00 + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/Content/food.xnb + 2022-06-28T15:16:37.8090943+03:00 + TextureImporter + 2020-08-10T16:17:54+03:00 + TextureProcessor + 2020-08-10T16:17:54+03:00 + + ColorKeyColor + 255,0,255,255 + + + ColorKeyEnabled + True + + + GenerateMipmaps + False + + + PremultiplyAlpha + True + + + ResizeToPowerOfTwo + False + + + MakeSquare + False + + + TextureFormat + Color + + + + + \ No newline at end of file diff --git a/Pacman/Content/obj/Windows/Content/graph.mgcontent b/Pacman/Content/obj/Windows/Content/graph.mgcontent new file mode 100644 index 0000000..a4c0b23 --- /dev/null +++ b/Pacman/Content/obj/Windows/Content/graph.mgcontent @@ -0,0 +1,42 @@ + + + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/graph.png + 2022-06-28T16:06:19.2221759+03:00 + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/Content/graph.xnb + 2022-06-28T16:06:28.895402+03:00 + TextureImporter + 2020-08-10T16:17:54+03:00 + TextureProcessor + 2020-08-10T16:17:54+03:00 + + ColorKeyColor + 255,0,255,255 + + + ColorKeyEnabled + True + + + GenerateMipmaps + False + + + PremultiplyAlpha + True + + + ResizeToPowerOfTwo + False + + + MakeSquare + False + + + TextureFormat + Color + + + + + \ No newline at end of file diff --git a/Pacman/Content/obj/Windows/Content/wall.mgcontent b/Pacman/Content/obj/Windows/Content/wall.mgcontent new file mode 100644 index 0000000..87588e2 --- /dev/null +++ b/Pacman/Content/obj/Windows/Content/wall.mgcontent @@ -0,0 +1,42 @@ + + + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/wall.png + 2022-06-28T15:08:18.2137875+03:00 + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/Content/wall.xnb + 2022-06-28T15:16:37.8230924+03:00 + TextureImporter + 2020-08-10T16:17:54+03:00 + TextureProcessor + 2020-08-10T16:17:54+03:00 + + ColorKeyColor + 255,0,255,255 + + + ColorKeyEnabled + True + + + GenerateMipmaps + False + + + PremultiplyAlpha + True + + + ResizeToPowerOfTwo + False + + + MakeSquare + False + + + TextureFormat + Color + + + + + \ No newline at end of file diff --git a/Pacman/Content/obj/Windows/energizer.mgcontent b/Pacman/Content/obj/Windows/energizer.mgcontent new file mode 100644 index 0000000..f901a45 --- /dev/null +++ b/Pacman/Content/obj/Windows/energizer.mgcontent @@ -0,0 +1,42 @@ + + + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/energizer.png + 2022-06-28T15:08:01.8828706+03:00 + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/energizer.xnb + 2022-06-28T15:16:35.7461052+03:00 + TextureImporter + 2020-08-10T16:17:54+03:00 + TextureProcessor + 2020-08-10T16:17:54+03:00 + + ColorKeyColor + 255,0,255,255 + + + ColorKeyEnabled + True + + + GenerateMipmaps + False + + + PremultiplyAlpha + True + + + ResizeToPowerOfTwo + False + + + MakeSquare + False + + + TextureFormat + Color + + + + + \ No newline at end of file diff --git a/Pacman/Content/obj/Windows/floor.mgcontent b/Pacman/Content/obj/Windows/floor.mgcontent new file mode 100644 index 0000000..a352e7f --- /dev/null +++ b/Pacman/Content/obj/Windows/floor.mgcontent @@ -0,0 +1,42 @@ + + + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/floor.png + 2022-06-28T15:04:53.1875172+03:00 + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/floor.xnb + 2022-06-28T15:16:35.7690929+03:00 + TextureImporter + 2020-08-10T16:17:54+03:00 + TextureProcessor + 2020-08-10T16:17:54+03:00 + + ColorKeyColor + 255,0,255,255 + + + ColorKeyEnabled + True + + + GenerateMipmaps + False + + + PremultiplyAlpha + True + + + ResizeToPowerOfTwo + False + + + MakeSquare + False + + + TextureFormat + Color + + + + + \ No newline at end of file diff --git a/Pacman/Content/obj/Windows/food.mgcontent b/Pacman/Content/obj/Windows/food.mgcontent new file mode 100644 index 0000000..2e3bfe0 --- /dev/null +++ b/Pacman/Content/obj/Windows/food.mgcontent @@ -0,0 +1,42 @@ + + + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/food.png + 2022-06-28T15:06:38.4441725+03:00 + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/food.xnb + 2022-06-28T15:16:35.7780997+03:00 + TextureImporter + 2020-08-10T16:17:54+03:00 + TextureProcessor + 2020-08-10T16:17:54+03:00 + + ColorKeyColor + 255,0,255,255 + + + ColorKeyEnabled + True + + + GenerateMipmaps + False + + + PremultiplyAlpha + True + + + ResizeToPowerOfTwo + False + + + MakeSquare + False + + + TextureFormat + Color + + + + + \ No newline at end of file diff --git a/Pacman/Content/obj/Windows/graph.mgcontent b/Pacman/Content/obj/Windows/graph.mgcontent new file mode 100644 index 0000000..bb1af0e --- /dev/null +++ b/Pacman/Content/obj/Windows/graph.mgcontent @@ -0,0 +1,42 @@ + + + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/graph.png + 2022-06-28T16:06:19.2221759+03:00 + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/graph.xnb + 2022-06-28T16:06:27.3493973+03:00 + TextureImporter + 2020-08-10T16:17:54+03:00 + TextureProcessor + 2020-08-10T16:17:54+03:00 + + ColorKeyColor + 255,0,255,255 + + + ColorKeyEnabled + True + + + GenerateMipmaps + False + + + PremultiplyAlpha + True + + + ResizeToPowerOfTwo + False + + + MakeSquare + False + + + TextureFormat + Color + + + + + \ No newline at end of file diff --git a/Pacman/Content/obj/Windows/wall.mgcontent b/Pacman/Content/obj/Windows/wall.mgcontent new file mode 100644 index 0000000..51b12e0 --- /dev/null +++ b/Pacman/Content/obj/Windows/wall.mgcontent @@ -0,0 +1,42 @@ + + + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/wall.png + 2022-06-28T15:08:18.2137875+03:00 + C:/Users/Semejkin_AV/Documents/Github_repos/Pacman/Pacman/Content/bin/Windows/wall.xnb + 2022-06-28T15:16:35.7921079+03:00 + TextureImporter + 2020-08-10T16:17:54+03:00 + TextureProcessor + 2020-08-10T16:17:54+03:00 + + ColorKeyColor + 255,0,255,255 + + + ColorKeyEnabled + True + + + GenerateMipmaps + False + + + PremultiplyAlpha + True + + + ResizeToPowerOfTwo + False + + + MakeSquare + False + + + TextureFormat + Color + + + + + \ No newline at end of file diff --git a/Pacman/Content/wall.png b/Pacman/Content/wall.png new file mode 100644 index 0000000..5975947 Binary files /dev/null and b/Pacman/Content/wall.png differ diff --git a/Pacman/Content/walls/K.png b/Pacman/Content/walls/K.png new file mode 100644 index 0000000..87a987a Binary files /dev/null and b/Pacman/Content/walls/K.png differ diff --git a/Pacman/Game1.cs b/Pacman/Game1.cs index cec8fb4..8dca846 100644 --- a/Pacman/Game1.cs +++ b/Pacman/Game1.cs @@ -2,6 +2,8 @@ using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; +using Pacman.Classes; + namespace Pacman { public class Game1 : Game @@ -9,16 +11,22 @@ namespace Pacman private GraphicsDeviceManager _graphics; private SpriteBatch _spriteBatch; + public Map _map; + public Game1() { _graphics = new GraphicsDeviceManager(this); Content.RootDirectory = "Content"; IsMouseVisible = true; + _map = new Map(); } protected override void Initialize() { // TODO: Add your initialization logic here + _graphics.PreferredBackBufferWidth = 552; + _graphics.PreferredBackBufferHeight = 600; + _graphics.ApplyChanges(); base.Initialize(); } @@ -28,6 +36,7 @@ namespace Pacman _spriteBatch = new SpriteBatch(GraphicsDevice); // TODO: use this.Content to load your game content here + Map.LoadContent(Content); } protected override void Update(GameTime gameTime) @@ -45,6 +54,9 @@ namespace Pacman GraphicsDevice.Clear(Color.CornflowerBlue); // TODO: Add your drawing code here + _spriteBatch.Begin(); + _map.Draw(_spriteBatch); + _spriteBatch.End(); base.Draw(gameTime); } diff --git a/Pacman/bin/Debug/netcoreapp3.1/Content/energizer.xnb b/Pacman/bin/Debug/netcoreapp3.1/Content/energizer.xnb new file mode 100644 index 0000000..f4d9c53 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/Content/energizer.xnb differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/Content/floor.xnb b/Pacman/bin/Debug/netcoreapp3.1/Content/floor.xnb new file mode 100644 index 0000000..53f280d Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/Content/floor.xnb differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/Content/food.xnb b/Pacman/bin/Debug/netcoreapp3.1/Content/food.xnb new file mode 100644 index 0000000..09f8ec4 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/Content/food.xnb differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/Content/graph.xnb b/Pacman/bin/Debug/netcoreapp3.1/Content/graph.xnb new file mode 100644 index 0000000..7214372 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/Content/graph.xnb differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/Content/wall.xnb b/Pacman/bin/Debug/netcoreapp3.1/Content/wall.xnb new file mode 100644 index 0000000..ad53454 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/Content/wall.xnb differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll b/Pacman/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..d9ac0e2 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.dll b/Pacman/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.dll new file mode 100644 index 0000000..25fbe7e Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll b/Pacman/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..6e4775e Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/Microsoft.VisualBasic.dll b/Pacman/bin/Debug/netcoreapp3.1/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..f04420d Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/Microsoft.VisualBasic.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/MonoGame.Framework.dll b/Pacman/bin/Debug/netcoreapp3.1/MonoGame.Framework.dll new file mode 100644 index 0000000..17d3ebf Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/MonoGame.Framework.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/Pacman.deps.json b/Pacman/bin/Debug/netcoreapp3.1/Pacman.deps.json new file mode 100644 index 0000000..bfc6768 --- /dev/null +++ b/Pacman/bin/Debug/netcoreapp3.1/Pacman.deps.json @@ -0,0 +1,2340 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Pacman/1.0.0": { + "dependencies": { + "MonoGame.Content.Builder.Task": "3.8.0.1641", + "MonoGame.Framework.WindowsDX": "3.8.0.1641" + }, + "runtime": { + "Pacman.dll": {} + } + }, + "Libuv/1.9.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2" + }, + "runtimeTargets": { + "runtimes/debian-x64/native/libuv.so": { + "rid": "debian-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/fedora-x64/native/libuv.so": { + "rid": "fedora-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/opensuse-x64/native/libuv.so": { + "rid": "opensuse-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libuv.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/rhel-x64/native/libuv.so": { + "rid": "rhel-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win7-arm/native/libuv.dll": { + "rid": "win7-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win7-x64/native/libuv.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win7-x86/native/libuv.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": {}, + "Microsoft.CodeAnalysis.Common/1.3.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.FileVersionInfo": "4.0.0", + "System.Diagnostics.StackTrace": "4.0.1", + "System.Diagnostics.Tools": "4.0.1", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.1", + "System.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath.XDocument": "4.0.1", + "System.Xml.XmlDocument": "4.0.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "1.3.0.0", + "fileVersion": "1.3.0.60613" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/1.3.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "1.3.0.0", + "fileVersion": "1.3.0.60613" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": { + "assemblyVersion": "1.3.0.0", + "fileVersion": "1.3.0.60613" + } + } + }, + "Microsoft.CSharp/4.0.1": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.1", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "Microsoft.NETCore.App/1.0.5": { + "dependencies": { + "Libuv": "1.9.1", + "Microsoft.CSharp": "4.0.1", + "Microsoft.CodeAnalysis.CSharp": "1.3.0", + "Microsoft.CodeAnalysis.VisualBasic": "1.3.0", + "Microsoft.NETCore.DotNetHostPolicy": "1.0.5", + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.7", + "Microsoft.VisualBasic": "10.0.1", + "NETStandard.Library": "1.6.0", + "System.Buffers": "4.0.0", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Process": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO.FileSystem.Watcher": "4.0.0", + "System.IO.MemoryMappedFiles": "4.0.0", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq.Expressions": "4.1.1", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.2", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Security": "4.0.1", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Numerics.Vectors": "4.1.1", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.Reader": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Extensions": "4.0.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System.Security.Cryptography": "4.0.1" + } + }, + "Microsoft.NETCore.DotNetHost/1.0.1": {}, + "Microsoft.NETCore.DotNetHostPolicy/1.0.5": { + "dependencies": { + "Microsoft.NETCore.DotNetHostResolver": "1.0.1" + } + }, + "Microsoft.NETCore.DotNetHostResolver/1.0.1": { + "dependencies": { + "Microsoft.NETCore.DotNetHost": "1.0.1" + } + }, + "Microsoft.NETCore.Jit/1.0.7": {}, + "Microsoft.NETCore.Platforms/1.0.2": {}, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.7": { + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.7", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1" + } + }, + "Microsoft.NETCore.Targets/1.0.3": {}, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, + "Microsoft.VisualBasic/10.0.1": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.1", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.1.0", + "fileVersion": "1.0.24212.1" + } + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0" + } + }, + "Microsoft.Win32.Registry/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0" + } + }, + "MonoGame.Content.Builder.Task/3.8.0.1641": {}, + "MonoGame.Framework.WindowsDX/3.8.0.1641": { + "dependencies": { + "SharpDX": "4.0.1", + "SharpDX.DXGI": "4.0.1", + "SharpDX.Direct2D1": "4.0.1", + "SharpDX.Direct3D11": "4.0.1", + "SharpDX.MediaFoundation": "4.0.1", + "SharpDX.XAudio2": "4.0.1", + "SharpDX.XInput": "4.0.1" + }, + "runtime": { + "lib/netcoreapp3.1/MonoGame.Framework.dll": { + "assemblyVersion": "3.8.0.1641", + "fileVersion": "3.8.0.1641" + } + } + }, + "NETStandard.Library/1.6.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.Win32.Primitives": "4.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.1", + "System.Net.Http": "4.1.2", + "System.Net.Primitives": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "runtime.native.System/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3" + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3" + } + }, + "runtime.native.System.Net.Http/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3" + } + }, + "runtime.native.System.Net.Security/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3" + } + }, + "runtime.native.System.Security.Cryptography/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3" + } + }, + "SharpDX/4.0.1": { + "dependencies": { + "Microsoft.NETCore.App": "1.0.5" + }, + "runtime": { + "lib/netcoreapp1.0/SharpDX.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "SharpDX.Direct2D1/4.0.1": { + "dependencies": { + "Microsoft.NETCore.App": "1.0.5", + "SharpDX": "4.0.1", + "SharpDX.DXGI": "4.0.1" + }, + "runtime": { + "lib/netcoreapp1.0/SharpDX.Direct2D1.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "SharpDX.Direct3D11/4.0.1": { + "dependencies": { + "Microsoft.NETCore.App": "1.0.5", + "SharpDX": "4.0.1", + "SharpDX.DXGI": "4.0.1" + }, + "runtime": { + "lib/netcoreapp1.0/SharpDX.Direct3D11.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "SharpDX.Direct3D9/4.0.1": { + "dependencies": { + "Microsoft.NETCore.App": "1.0.5", + "SharpDX": "4.0.1" + }, + "runtime": { + "lib/netcoreapp1.0/SharpDX.Direct3D9.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "SharpDX.DXGI/4.0.1": { + "dependencies": { + "Microsoft.NETCore.App": "1.0.5", + "SharpDX": "4.0.1" + }, + "runtime": { + "lib/netcoreapp1.0/SharpDX.DXGI.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "SharpDX.Mathematics/4.0.1": { + "dependencies": { + "Microsoft.NETCore.App": "1.0.5", + "SharpDX": "4.0.1" + }, + "runtime": { + "lib/netcoreapp1.0/SharpDX.Mathematics.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "SharpDX.MediaFoundation/4.0.1": { + "dependencies": { + "Microsoft.NETCore.App": "1.0.5", + "SharpDX": "4.0.1", + "SharpDX.DXGI": "4.0.1", + "SharpDX.Direct3D9": "4.0.1", + "SharpDX.Mathematics": "4.0.1" + }, + "runtime": { + "lib/netcoreapp1.0/SharpDX.MediaFoundation.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "SharpDX.XAudio2/4.0.1": { + "dependencies": { + "Microsoft.NETCore.App": "1.0.5", + "SharpDX": "4.0.1" + }, + "runtime": { + "lib/netcoreapp1.0/SharpDX.XAudio2.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "SharpDX.XInput/4.0.1": { + "dependencies": { + "Microsoft.NETCore.App": "1.0.5", + "SharpDX": "4.0.1" + }, + "runtime": { + "lib/netcoreapp1.0/SharpDX.XInput.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "System.AppContext/4.1.0": { + "dependencies": { + "System.Runtime": "4.1.0" + } + }, + "System.Buffers/4.0.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Collections/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0" + } + }, + "System.Collections.Concurrent/4.0.12": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Collections.Immutable/1.2.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.ComponentModel/4.0.1": { + "dependencies": { + "System.Runtime": "4.1.0" + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Console/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.IO": "4.1.0", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + } + }, + "System.Diagnostics.Debug/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Diagnostics.FileVersionInfo/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + } + }, + "System.Diagnostics.Process/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.0.0", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" + } + }, + "System.Diagnostics.StackTrace/4.0.1": { + "dependencies": { + "System.Collections.Immutable": "1.2.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + } + }, + "System.Diagnostics.Tools/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0" + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0" + } + }, + "System.Dynamic.Runtime/4.0.11": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.1", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Globalization/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0" + } + }, + "System.Globalization.Calendars/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0" + } + }, + "System.Globalization.Extensions/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + } + }, + "System.IO/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.IO.Compression/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.IO.Compression": "4.1.0" + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + } + }, + "System.IO.FileSystem/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "dependencies": { + "System.Runtime": "4.1.0" + } + }, + "System.IO.FileSystem.Watcher/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "runtime.native.System": "4.0.0" + } + }, + "System.IO.MemoryMappedFiles/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Linq/4.1.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + } + }, + "System.Linq.Expressions/4.1.1": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Linq.Parallel/4.0.1": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Linq.Queryable/4.0.1": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.1", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Net.Http/4.1.2": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.1" + } + }, + "System.Net.NameResolution/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Principal.Windows": "4.0.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + } + }, + "System.Net.Primitives/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + } + }, + "System.Net.Requests/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Http": "4.1.2", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Net.Security/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Security": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.1" + } + }, + "System.Net.Sockets/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + } + }, + "System.Numerics.Vectors/4.1.1": { + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + } + }, + "System.ObjectModel/4.0.12": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Reflection/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Reflection.Emit/4.0.1": { + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Reflection.Extensions/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + } + }, + "System.Reflection.Metadata/1.3.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Immutable": "1.2.0", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "System.Reflection.Primitives/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0" + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + } + }, + "System.Resources.Reader/4.0.0": { + "dependencies": { + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "System.Resources.ResourceManager/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + } + }, + "System.Runtime/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3" + } + }, + "System.Runtime.Extensions/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0" + } + }, + "System.Runtime.Handles/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0" + } + }, + "System.Runtime.InteropServices/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + } + }, + "System.Runtime.Loader/4.0.0": { + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + } + }, + "System.Runtime.Numerics/4.0.1": { + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + } + }, + "System.Security.Claims/4.0.1": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.1" + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + } + }, + "System.Security.Cryptography.Csp/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.1" + } + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.1" + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Csp": "4.0.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.1" + } + }, + "System.Security.Principal/4.0.1": { + "dependencies": { + "System.Runtime": "4.1.0" + } + }, + "System.Security.Principal.Windows/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "System.Text.Encoding/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0" + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + } + }, + "System.Text.RegularExpressions/4.1.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Threading/4.0.11": { + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Threading.Overlapped/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + } + }, + "System.Threading.Tasks/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0" + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Threading.Thread/4.0.0": { + "dependencies": { + "System.Runtime": "4.1.0" + } + }, + "System.Threading.ThreadPool/4.0.10": { + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + } + }, + "System.Threading.Timer/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "Microsoft.NETCore.Targets": "1.0.3", + "System.Runtime": "4.1.0" + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + } + }, + "System.Xml.XDocument/4.0.11": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + } + }, + "System.Xml.XmlDocument/4.0.1": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + } + }, + "System.Xml.XPath/4.0.1": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + } + }, + "System.Xml.XPath.XDocument/4.0.1": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath": "4.0.1" + } + } + } + }, + "libraries": { + "Pacman/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Libuv/1.9.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uqX2Frwf9PW8MaY7PRNY6HM5BpW1D8oj1EdqzrmbEFD5nH63Yat3aEjN/tws6Tw6Fk7LwmLBvtUh32tTeTaHiA==", + "path": "libuv/1.9.1", + "hashPath": "libuv.1.9.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "path": "microsoft.codeanalysis.analyzers/1.1.0", + "hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==", + "path": "microsoft.codeanalysis.common/1.3.0", + "hashPath": "microsoft.codeanalysis.common.1.3.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==", + "path": "microsoft.codeanalysis.csharp/1.3.0", + "hashPath": "microsoft.codeanalysis.csharp.1.3.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==", + "path": "microsoft.codeanalysis.visualbasic/1.3.0", + "hashPath": "microsoft.codeanalysis.visualbasic.1.3.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", + "path": "microsoft.csharp/4.0.1", + "hashPath": "microsoft.csharp.4.0.1.nupkg.sha512" + }, + "Microsoft.NETCore.App/1.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rqd+4QNUIdrauKaP8KVo2Ut5OeEGoyOsAMZr7u1IEtSRx5LeA1omVCLpY0TJ5Z47jfMm/MRuD/RG5Ahg8WwX2w==", + "path": "microsoft.netcore.app/1.0.5", + "hashPath": "microsoft.netcore.app.1.0.5.nupkg.sha512" + }, + "Microsoft.NETCore.DotNetHost/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uaMgykq6AckP3hZW4dsD6zjocxyXPz0tcTl8OX7mlSUWsyFXdtf45sjdwI0JIHxt3gnI6GihAlOAwYK8HE4niQ==", + "path": "microsoft.netcore.dotnethost/1.0.1", + "hashPath": "microsoft.netcore.dotnethost.1.0.1.nupkg.sha512" + }, + "Microsoft.NETCore.DotNetHostPolicy/1.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KR8e8+lh/YnhD0wDCMBRUjn0/VnryxHbu6I61U6m7PAyz9HbRr+iX3BYL925OHMFuFmk1atc/RRGjGtVOVrvrg==", + "path": "microsoft.netcore.dotnethostpolicy/1.0.5", + "hashPath": "microsoft.netcore.dotnethostpolicy.1.0.5.nupkg.sha512" + }, + "Microsoft.NETCore.DotNetHostResolver/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GEXgpAHB9E0OhfcmNJ664Xcd2bJkz2qkGIAFmCgEI5ANlQy4qEEmBVfUqA+Z9HB85ZwWxZc1eIJ6fxdxcjrctg==", + "path": "microsoft.netcore.dotnethostresolver/1.0.1", + "hashPath": "microsoft.netcore.dotnethostresolver.1.0.1.nupkg.sha512" + }, + "Microsoft.NETCore.Jit/1.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pNYSZFvX14x4ubToTLxj9O9xNIEg1kHaL6gkMr8urWKIY65cu8272KRlT3cgJCKLbzFO0XZDjvPlRBCFrbJm7Q==", + "path": "microsoft.netcore.jit/1.0.7", + "hashPath": "microsoft.netcore.jit.1.0.7.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fRHBvQs9Z/ZSUAqaSotK1UPol/lwybTgdeTXR4eVw3rVDgzUnWGTUsK0A418oR7NrimNL1TQu/IM0RDa26s0qg==", + "path": "microsoft.netcore.platforms/1.0.2", + "hashPath": "microsoft.netcore.platforms.1.0.2.nupkg.sha512" + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t81co+R1xDubSQDDYP+zddd1Eya7xGeN2XlJMSsNFUCKRm35/5u8knnXOQTdfE1nf6bYqPROt18WlhdZui1FLA==", + "path": "microsoft.netcore.runtime.coreclr/1.0.7", + "hashPath": "microsoft.netcore.runtime.coreclr.1.0.7.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IRUVJ1jXkdvxokYfxw5o2+QCcWWVxLMzcwsRSpmNboslZR0WYhFgJihT53R/tkEDiBjlhb99XxYMWfb9Q6nyVw==", + "path": "microsoft.netcore.targets/1.0.3", + "hashPath": "microsoft.netcore.targets.1.0.3.nupkg.sha512" + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==", + "path": "microsoft.visualbasic/10.0.1", + "hashPath": "microsoft.visualbasic.10.0.1.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "path": "microsoft.win32.primitives/4.0.1", + "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==", + "path": "microsoft.win32.registry/4.0.0", + "hashPath": "microsoft.win32.registry.4.0.0.nupkg.sha512" + }, + "MonoGame.Content.Builder.Task/3.8.0.1641": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oHA60q9MhkqGnSiJlXosdynD400sQ/j1Ef+0XkJYIQT4Io9RQ6Zk8i0vjpnIbQ0PgsoaQN3IRYjNzkhqq3uUGA==", + "path": "monogame.content.builder.task/3.8.0.1641", + "hashPath": "monogame.content.builder.task.3.8.0.1641.nupkg.sha512" + }, + "MonoGame.Framework.WindowsDX/3.8.0.1641": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uWPGugWXe0eqrA5KgKc38z2K+RNgh8DmIDjIDdc7JX8m7azYDkNapHwIOANkEj5ZYAr7uqxjoqGcU4VS+ayl1g==", + "path": "monogame.framework.windowsdx/3.8.0.1641", + "hashPath": "monogame.framework.windowsdx.3.8.0.1641.nupkg.sha512" + }, + "NETStandard.Library/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", + "path": "netstandard.library/1.6.0", + "hashPath": "netstandard.library.1.6.0.nupkg.sha512" + }, + "runtime.native.System/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", + "path": "runtime.native.system/4.0.0", + "hashPath": "runtime.native.system.4.0.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", + "path": "runtime.native.system.io.compression/4.1.0", + "hashPath": "runtime.native.system.io.compression.4.1.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", + "path": "runtime.native.system.net.http/4.0.1", + "hashPath": "runtime.native.system.net.http.4.0.1.nupkg.sha512" + }, + "runtime.native.System.Net.Security/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==", + "path": "runtime.native.system.net.security/4.0.1", + "hashPath": "runtime.native.system.net.security.4.0.1.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6Z4SIheH5ziCRoMnLBE+fmcAPfyewKbteJQGTT86+dsBRSYZNuUmLS3Qg+rzo1nPdiK19VmOBne54j9kI7sI4Q==", + "path": "runtime.native.system.security.cryptography/4.0.1", + "hashPath": "runtime.native.system.security.cryptography.4.0.1.nupkg.sha512" + }, + "SharpDX/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8YA1VFg1/K8Emb8FEZDobojcv1BLuppVo7CRJQEgA1V748VIMPBru0i0OnsCjLSThzTn7juOvH85qjFL9Grl1w==", + "path": "sharpdx/4.0.1", + "hashPath": "sharpdx.4.0.1.nupkg.sha512" + }, + "SharpDX.Direct2D1/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EDBYa9kAG+gaMB4cCH7WNpxS8WijSCejNz/SERs2P1sWEPZZdUiUIruQMjPCdW3lXxT508aYiH2UXHAaZtk00g==", + "path": "sharpdx.direct2d1/4.0.1", + "hashPath": "sharpdx.direct2d1.4.0.1.nupkg.sha512" + }, + "SharpDX.Direct3D11/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7xIfeAhxPhbPgSiREfFbOOwIWonUt2GHR7XZN5p2DJMWuqjl0+h1oo2/sF+SH/c6D6APjdbt0J+dYSzoV0PA/w==", + "path": "sharpdx.direct3d11/4.0.1", + "hashPath": "sharpdx.direct3d11.4.0.1.nupkg.sha512" + }, + "SharpDX.Direct3D9/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xUgVtuy3UGljCjzPe1d0yndNI+htHnpCUcMk1QpmXZHwxudUGtes1iz18JD2Zy5Xx7VzFp2+guOGWkNrJmIgEA==", + "path": "sharpdx.direct3d9/4.0.1", + "hashPath": "sharpdx.direct3d9.4.0.1.nupkg.sha512" + }, + "SharpDX.DXGI/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Av/kToUkVR1tDtIP9zmDGwCuCtyL04+PP7kes6aABzky1Y9vT03kR7mDeE83gl+E8GUmMMbVXbQ4AG2CVb66sg==", + "path": "sharpdx.dxgi/4.0.1", + "hashPath": "sharpdx.dxgi.4.0.1.nupkg.sha512" + }, + "SharpDX.Mathematics/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-txMROd5A4mICHRRPf5KHA5MVNEqFUdOg2ZYfqNqjQM1n2jfe+sxDG3Xs+aO5zAShJAZFD6xO5R7yGfn9CzHckQ==", + "path": "sharpdx.mathematics/4.0.1", + "hashPath": "sharpdx.mathematics.4.0.1.nupkg.sha512" + }, + "SharpDX.MediaFoundation/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/po30bqI6n14db6eHirTLJYEVV8/Wi0DGn2OJGtEnf5/++jUOhMR5Z1Xi84wOldXgf+7WKXOML2BhpqCPWVC2g==", + "path": "sharpdx.mediafoundation/4.0.1", + "hashPath": "sharpdx.mediafoundation.4.0.1.nupkg.sha512" + }, + "SharpDX.XAudio2/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Kok1XdV2vEKSdr+EcGf0xFNBAd1tcjp/TZeRNBNVgB5YYoUGASoNO2decCBi7vh9qdocN+pmuuOiZCtDOd9DgQ==", + "path": "sharpdx.xaudio2/4.0.1", + "hashPath": "sharpdx.xaudio2.4.0.1.nupkg.sha512" + }, + "SharpDX.XInput/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vDnp6CTVC9dKQHwLVF4GLNdCJqGMUuxyZLLlorDjgnVOOO7koPR20/tqt1A53gnNy/Id93Nzq7K2ILLvBQWvGQ==", + "path": "sharpdx.xinput/4.0.1", + "hashPath": "sharpdx.xinput.4.0.1.nupkg.sha512" + }, + "System.AppContext/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", + "path": "system.appcontext/4.1.0", + "hashPath": "system.appcontext.4.1.0.nupkg.sha512" + }, + "System.Buffers/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", + "path": "system.buffers/4.0.0", + "hashPath": "system.buffers.4.0.0.nupkg.sha512" + }, + "System.Collections/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", + "path": "system.collections/4.0.11", + "hashPath": "system.collections.4.0.11.nupkg.sha512" + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", + "path": "system.collections.concurrent/4.0.12", + "hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512" + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", + "path": "system.collections.immutable/1.2.0", + "hashPath": "system.collections.immutable.1.2.0.nupkg.sha512" + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", + "path": "system.componentmodel/4.0.1", + "hashPath": "system.componentmodel.4.0.1.nupkg.sha512" + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==", + "path": "system.componentmodel.annotations/4.1.0", + "hashPath": "system.componentmodel.annotations.4.1.0.nupkg.sha512" + }, + "System.Console/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", + "path": "system.console/4.0.0", + "hashPath": "system.console.4.0.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", + "path": "system.diagnostics.debug/4.0.11", + "hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", + "path": "system.diagnostics.diagnosticsource/4.0.0", + "hashPath": "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512" + }, + "System.Diagnostics.FileVersionInfo/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==", + "path": "system.diagnostics.fileversioninfo/4.0.0", + "hashPath": "system.diagnostics.fileversioninfo.4.0.0.nupkg.sha512" + }, + "System.Diagnostics.Process/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", + "path": "system.diagnostics.process/4.1.0", + "hashPath": "system.diagnostics.process.4.1.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==", + "path": "system.diagnostics.stacktrace/4.0.1", + "hashPath": "system.diagnostics.stacktrace.4.0.1.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "path": "system.diagnostics.tools/4.0.1", + "hashPath": "system.diagnostics.tools.4.0.1.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", + "path": "system.diagnostics.tracing/4.1.0", + "hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "path": "system.dynamic.runtime/4.0.11", + "hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512" + }, + "System.Globalization/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", + "path": "system.globalization/4.0.11", + "hashPath": "system.globalization.4.0.11.nupkg.sha512" + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", + "path": "system.globalization.calendars/4.0.1", + "hashPath": "system.globalization.calendars.4.0.1.nupkg.sha512" + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "path": "system.globalization.extensions/4.0.1", + "hashPath": "system.globalization.extensions.4.0.1.nupkg.sha512" + }, + "System.IO/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", + "path": "system.io/4.1.0", + "hashPath": "system.io.4.1.0.nupkg.sha512" + }, + "System.IO.Compression/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", + "path": "system.io.compression/4.1.0", + "hashPath": "system.io.compression.4.1.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", + "path": "system.io.compression.zipfile/4.0.1", + "hashPath": "system.io.compression.zipfile.4.0.1.nupkg.sha512" + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", + "path": "system.io.filesystem/4.0.1", + "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", + "path": "system.io.filesystem.primitives/4.0.1", + "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512" + }, + "System.IO.FileSystem.Watcher/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==", + "path": "system.io.filesystem.watcher/4.0.0", + "hashPath": "system.io.filesystem.watcher.4.0.0.nupkg.sha512" + }, + "System.IO.MemoryMappedFiles/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==", + "path": "system.io.memorymappedfiles/4.0.0", + "hashPath": "system.io.memorymappedfiles.4.0.0.nupkg.sha512" + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==", + "path": "system.io.unmanagedmemorystream/4.0.1", + "hashPath": "system.io.unmanagedmemorystream.4.0.1.nupkg.sha512" + }, + "System.Linq/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", + "path": "system.linq/4.1.0", + "hashPath": "system.linq.4.1.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXwi8FrK/XIGPvtk1ZnawffhqLPyacj7dZnbFaV52YGaQigNqGEzNAByAIvL9FlEe3TCzoInorHF91IK//Q3Xg==", + "path": "system.linq.expressions/4.1.1", + "hashPath": "system.linq.expressions.4.1.1.nupkg.sha512" + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==", + "path": "system.linq.parallel/4.0.1", + "hashPath": "system.linq.parallel.4.0.1.nupkg.sha512" + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", + "path": "system.linq.queryable/4.0.1", + "hashPath": "system.linq.queryable.4.0.1.nupkg.sha512" + }, + "System.Net.Http/4.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oBRfZyr1bN5zm2N3cvL+z5zwXi6vr4BJLfqTD0QNGL/O/OOobG0CsdT1wx4DUrsy8wv/XorY9Ue1c6BSf4KeOQ==", + "path": "system.net.http/4.1.2", + "hashPath": "system.net.http.4.1.2.nupkg.sha512" + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==", + "path": "system.net.nameresolution/4.0.0", + "hashPath": "system.net.nameresolution.4.0.0.nupkg.sha512" + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", + "path": "system.net.primitives/4.0.11", + "hashPath": "system.net.primitives.4.0.11.nupkg.sha512" + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==", + "path": "system.net.requests/4.0.11", + "hashPath": "system.net.requests.4.0.11.nupkg.sha512" + }, + "System.Net.Security/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nMs9dUDrJFr18+wgUB3lUpaMcJDqutsuO1C4g3OTuQYZJdnszgmHtjvBAI6eNXK0ZPLIA6sp8axMkd2T2dlzgg==", + "path": "system.net.security/4.0.1", + "hashPath": "system.net.security.4.0.1.nupkg.sha512" + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", + "path": "system.net.sockets/4.1.0", + "hashPath": "system.net.sockets.4.1.0.nupkg.sha512" + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==", + "path": "system.net.webheadercollection/4.0.1", + "hashPath": "system.net.webheadercollection.4.0.1.nupkg.sha512" + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==", + "path": "system.numerics.vectors/4.1.1", + "hashPath": "system.numerics.vectors.4.1.1.nupkg.sha512" + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", + "path": "system.objectmodel/4.0.12", + "hashPath": "system.objectmodel.4.0.12.nupkg.sha512" + }, + "System.Reflection/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", + "path": "system.reflection/4.1.0", + "hashPath": "system.reflection.4.1.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==", + "path": "system.reflection.dispatchproxy/4.0.1", + "hashPath": "system.reflection.dispatchproxy.4.0.1.nupkg.sha512" + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", + "path": "system.reflection.emit/4.0.1", + "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "path": "system.reflection.emit.ilgeneration/4.0.1", + "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", + "path": "system.reflection.emit.lightweight/4.0.1", + "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512" + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", + "path": "system.reflection.extensions/4.0.1", + "hashPath": "system.reflection.extensions.4.0.1.nupkg.sha512" + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", + "path": "system.reflection.metadata/1.3.0", + "hashPath": "system.reflection.metadata.1.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", + "path": "system.reflection.primitives/4.0.1", + "hashPath": "system.reflection.primitives.4.0.1.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", + "path": "system.reflection.typeextensions/4.1.0", + "hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512" + }, + "System.Resources.Reader/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==", + "path": "system.resources.reader/4.0.0", + "hashPath": "system.resources.reader.4.0.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", + "path": "system.resources.resourcemanager/4.0.1", + "hashPath": "system.resources.resourcemanager.4.0.1.nupkg.sha512" + }, + "System.Runtime/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", + "path": "system.runtime/4.1.0", + "hashPath": "system.runtime.4.1.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", + "path": "system.runtime.extensions/4.1.0", + "hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", + "path": "system.runtime.handles/4.0.1", + "hashPath": "system.runtime.handles.4.0.1.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", + "path": "system.runtime.interopservices/4.1.0", + "hashPath": "system.runtime.interopservices.4.1.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", + "path": "system.runtime.interopservices.runtimeinformation/4.0.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512" + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "path": "system.runtime.loader/4.0.0", + "hashPath": "system.runtime.loader.4.0.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", + "path": "system.runtime.numerics/4.0.1", + "hashPath": "system.runtime.numerics.4.0.1.nupkg.sha512" + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==", + "path": "system.security.claims/4.0.1", + "hashPath": "system.security.claims.4.0.1.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", + "path": "system.security.cryptography.algorithms/4.2.0", + "hashPath": "system.security.cryptography.algorithms.4.2.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", + "path": "system.security.cryptography.cng/4.2.0", + "hashPath": "system.security.cryptography.cng.4.2.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", + "path": "system.security.cryptography.csp/4.0.0", + "hashPath": "system.security.cryptography.csp.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", + "path": "system.security.cryptography.encoding/4.0.0", + "hashPath": "system.security.cryptography.encoding.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", + "path": "system.security.cryptography.openssl/4.0.0", + "hashPath": "system.security.cryptography.openssl.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", + "path": "system.security.cryptography.primitives/4.0.0", + "hashPath": "system.security.cryptography.primitives.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", + "path": "system.security.cryptography.x509certificates/4.1.0", + "hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512" + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==", + "path": "system.security.principal/4.0.1", + "hashPath": "system.security.principal.4.0.1.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==", + "path": "system.security.principal.windows/4.0.0", + "hashPath": "system.security.principal.windows.4.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", + "path": "system.text.encoding/4.0.11", + "hashPath": "system.text.encoding.4.0.11.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", + "path": "system.text.encoding.codepages/4.0.1", + "hashPath": "system.text.encoding.codepages.4.0.1.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", + "path": "system.text.encoding.extensions/4.0.11", + "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", + "path": "system.text.regularexpressions/4.1.0", + "hashPath": "system.text.regularexpressions.4.1.0.nupkg.sha512" + }, + "System.Threading/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "path": "system.threading/4.0.11", + "hashPath": "system.threading.4.0.11.nupkg.sha512" + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==", + "path": "system.threading.overlapped/4.0.1", + "hashPath": "system.threading.overlapped.4.0.1.nupkg.sha512" + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", + "path": "system.threading.tasks/4.0.11", + "hashPath": "system.threading.tasks.4.0.11.nupkg.sha512" + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==", + "path": "system.threading.tasks.dataflow/4.6.0", + "hashPath": "system.threading.tasks.dataflow.4.6.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", + "path": "system.threading.tasks.extensions/4.0.0", + "hashPath": "system.threading.tasks.extensions.4.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==", + "path": "system.threading.tasks.parallel/4.0.1", + "hashPath": "system.threading.tasks.parallel.4.0.1.nupkg.sha512" + }, + "System.Threading.Thread/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==", + "path": "system.threading.thread/4.0.0", + "hashPath": "system.threading.thread.4.0.0.nupkg.sha512" + }, + "System.Threading.ThreadPool/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", + "path": "system.threading.threadpool/4.0.10", + "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512" + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", + "path": "system.threading.timer/4.0.1", + "hashPath": "system.threading.timer.4.0.1.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", + "path": "system.xml.readerwriter/4.0.11", + "hashPath": "system.xml.readerwriter.4.0.11.nupkg.sha512" + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "path": "system.xml.xdocument/4.0.11", + "hashPath": "system.xml.xdocument.4.0.11.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", + "path": "system.xml.xmldocument/4.0.1", + "hashPath": "system.xml.xmldocument.4.0.1.nupkg.sha512" + }, + "System.Xml.XPath/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==", + "path": "system.xml.xpath/4.0.1", + "hashPath": "system.xml.xpath.4.0.1.nupkg.sha512" + }, + "System.Xml.XPath.XDocument/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==", + "path": "system.xml.xpath.xdocument/4.0.1", + "hashPath": "system.xml.xpath.xdocument.4.0.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Pacman/bin/Debug/netcoreapp3.1/Pacman.dll b/Pacman/bin/Debug/netcoreapp3.1/Pacman.dll new file mode 100644 index 0000000..d2b21f8 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/Pacman.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/Pacman.exe b/Pacman/bin/Debug/netcoreapp3.1/Pacman.exe new file mode 100644 index 0000000..60734a9 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/Pacman.exe differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/Pacman.pdb b/Pacman/bin/Debug/netcoreapp3.1/Pacman.pdb new file mode 100644 index 0000000..8aae311 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/Pacman.pdb differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/Pacman.runtimeconfig.dev.json b/Pacman/bin/Debug/netcoreapp3.1/Pacman.runtimeconfig.dev.json new file mode 100644 index 0000000..38bf00e --- /dev/null +++ b/Pacman/bin/Debug/netcoreapp3.1/Pacman.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\Semejkin_AV\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Semejkin_AV\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ] + } +} \ No newline at end of file diff --git a/Pacman/bin/Debug/netcoreapp3.1/Pacman.runtimeconfig.json b/Pacman/bin/Debug/netcoreapp3.1/Pacman.runtimeconfig.json new file mode 100644 index 0000000..2b4cfe3 --- /dev/null +++ b/Pacman/bin/Debug/netcoreapp3.1/Pacman.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp3.1", + "framework": { + "name": "Microsoft.WindowsDesktop.App", + "version": "3.1.0" + }, + "configProperties": { + "System.Runtime.TieredCompilation": false + } + } +} \ No newline at end of file diff --git a/Pacman/bin/Debug/netcoreapp3.1/SharpDX.DXGI.dll b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.DXGI.dll new file mode 100644 index 0000000..08a8b8f Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.DXGI.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/SharpDX.Direct2D1.dll b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.Direct2D1.dll new file mode 100644 index 0000000..4efb7ea Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.Direct2D1.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/SharpDX.Direct3D11.dll b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.Direct3D11.dll new file mode 100644 index 0000000..2ca4bcd Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.Direct3D11.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/SharpDX.Direct3D9.dll b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.Direct3D9.dll new file mode 100644 index 0000000..b2ef2ec Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.Direct3D9.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/SharpDX.Mathematics.dll b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.Mathematics.dll new file mode 100644 index 0000000..eca092b Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.Mathematics.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/SharpDX.MediaFoundation.dll b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.MediaFoundation.dll new file mode 100644 index 0000000..12b48bb Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.MediaFoundation.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/SharpDX.XAudio2.dll b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.XAudio2.dll new file mode 100644 index 0000000..585456a Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.XAudio2.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/SharpDX.XInput.dll b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.XInput.dll new file mode 100644 index 0000000..8e91294 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.XInput.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/SharpDX.dll b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.dll new file mode 100644 index 0000000..7850dc0 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/SharpDX.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/map.txt b/Pacman/bin/Debug/netcoreapp3.1/map.txt new file mode 100644 index 0000000..fcff70e --- /dev/null +++ b/Pacman/bin/Debug/netcoreapp3.1/map.txt @@ -0,0 +1,25 @@ +####################### +#**********#**********# +#@###*####*#*####*###@# +#*###*####*#*####*###*# +#*********************# +#*###*#*#######*#*###*# +#*****#*#######*#*****# +#####*#****#****#*##### +#####*####-#-####*##### +#####*#---------#*##### +#####*#-###-###-#*##### +-----*--#MM-MM#--*----- +#####*#-#######-#*##### +#####*#---------#*##### +#####*#-#######-#*##### +#####*#-#######-#*##### +#**********#**********# +#*###*####*#*####*###*# +#@**#******C******#**@# +###*#*#*#######*#*#*### +#*****#****#****#*****# +#*########*#*########*# +#*########*#*########*# +#*********************# +####################### \ No newline at end of file diff --git a/Pacman/bin/Debug/netcoreapp3.1/runtimes/debian-x64/native/libuv.so b/Pacman/bin/Debug/netcoreapp3.1/runtimes/debian-x64/native/libuv.so new file mode 100644 index 0000000..ee70aa0 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/runtimes/debian-x64/native/libuv.so differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/runtimes/fedora-x64/native/libuv.so b/Pacman/bin/Debug/netcoreapp3.1/runtimes/fedora-x64/native/libuv.so new file mode 100644 index 0000000..ee70aa0 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/runtimes/fedora-x64/native/libuv.so differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/runtimes/opensuse-x64/native/libuv.so b/Pacman/bin/Debug/netcoreapp3.1/runtimes/opensuse-x64/native/libuv.so new file mode 100644 index 0000000..ee70aa0 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/runtimes/opensuse-x64/native/libuv.so differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/runtimes/osx/native/libuv.dylib b/Pacman/bin/Debug/netcoreapp3.1/runtimes/osx/native/libuv.dylib new file mode 100644 index 0000000..abbf24d Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/runtimes/osx/native/libuv.dylib differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/runtimes/rhel-x64/native/libuv.so b/Pacman/bin/Debug/netcoreapp3.1/runtimes/rhel-x64/native/libuv.so new file mode 100644 index 0000000..ee70aa0 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/runtimes/rhel-x64/native/libuv.so differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/runtimes/win7-arm/native/libuv.dll b/Pacman/bin/Debug/netcoreapp3.1/runtimes/win7-arm/native/libuv.dll new file mode 100644 index 0000000..6cbb46e Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/runtimes/win7-arm/native/libuv.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/runtimes/win7-x64/native/libuv.dll b/Pacman/bin/Debug/netcoreapp3.1/runtimes/win7-x64/native/libuv.dll new file mode 100644 index 0000000..5e02949 Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/runtimes/win7-x64/native/libuv.dll differ diff --git a/Pacman/bin/Debug/netcoreapp3.1/runtimes/win7-x86/native/libuv.dll b/Pacman/bin/Debug/netcoreapp3.1/runtimes/win7-x86/native/libuv.dll new file mode 100644 index 0000000..906bc6d Binary files /dev/null and b/Pacman/bin/Debug/netcoreapp3.1/runtimes/win7-x86/native/libuv.dll differ diff --git a/Pacman/obj/Debug/netcoreapp3.1/Pacman.GeneratedMSBuildEditorConfig.editorconfig b/Pacman/obj/Debug/netcoreapp3.1/Pacman.GeneratedMSBuildEditorConfig.editorconfig index 5040371..ff0e3a0 100644 --- a/Pacman/obj/Debug/netcoreapp3.1/Pacman.GeneratedMSBuildEditorConfig.editorconfig +++ b/Pacman/obj/Debug/netcoreapp3.1/Pacman.GeneratedMSBuildEditorConfig.editorconfig @@ -1,3 +1,9 @@ is_global = true +build_property.ApplicationManifest = app.manifest +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = build_property.RootNamespace = Pacman build_property.ProjectDir = C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\ diff --git a/Pacman/obj/Debug/netcoreapp3.1/Pacman.assets.cache b/Pacman/obj/Debug/netcoreapp3.1/Pacman.assets.cache index b0379e1..32a5107 100644 Binary files a/Pacman/obj/Debug/netcoreapp3.1/Pacman.assets.cache and b/Pacman/obj/Debug/netcoreapp3.1/Pacman.assets.cache differ diff --git a/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.AssemblyReference.cache b/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.AssemblyReference.cache index 0a89807..571f59e 100644 Binary files a/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.AssemblyReference.cache and b/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.AssemblyReference.cache differ diff --git a/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.BuildWithSkipAnalyzers b/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.CopyComplete b/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.CoreCompileInputs.cache b/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..916f339 --- /dev/null +++ b/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +9decbe0d7391156d6300689225fe8c5e76b65e5a diff --git a/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.FileListAbsolute.txt b/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..8943432 --- /dev/null +++ b/Pacman/obj/Debug/netcoreapp3.1/Pacman.csproj.FileListAbsolute.txt @@ -0,0 +1,42 @@ +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Pacman.exe +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Pacman.deps.json +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Pacman.runtimeconfig.json +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Pacman.runtimeconfig.dev.json +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Pacman.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Pacman.pdb +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.VisualBasic.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Microsoft.VisualBasic.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\MonoGame.Framework.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\SharpDX.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\SharpDX.Direct2D1.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\SharpDX.Direct3D11.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\SharpDX.Direct3D9.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\SharpDX.DXGI.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\SharpDX.Mathematics.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\SharpDX.MediaFoundation.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\SharpDX.XAudio2.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\SharpDX.XInput.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\runtimes\debian-x64\native\libuv.so +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\runtimes\fedora-x64\native\libuv.so +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\runtimes\opensuse-x64\native\libuv.so +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\runtimes\osx\native\libuv.dylib +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\runtimes\rhel-x64\native\libuv.so +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\runtimes\win7-arm\native\libuv.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\runtimes\win7-x64\native\libuv.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\runtimes\win7-x86\native\libuv.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\obj\Debug\netcoreapp3.1\Pacman.csproj.AssemblyReference.cache +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\obj\Debug\netcoreapp3.1\Pacman.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\obj\Debug\netcoreapp3.1\Pacman.AssemblyInfoInputs.cache +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\obj\Debug\netcoreapp3.1\Pacman.AssemblyInfo.cs +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\obj\Debug\netcoreapp3.1\Pacman.csproj.CoreCompileInputs.cache +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\obj\Debug\netcoreapp3.1\Pacman.csproj.CopyComplete +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\obj\Debug\netcoreapp3.1\Pacman.dll +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\obj\Debug\netcoreapp3.1\Pacman.pdb +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\obj\Debug\netcoreapp3.1\Pacman.genruntimeconfig.cache +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Content\energizer.xnb +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Content\floor.xnb +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Content\food.xnb +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Content\wall.xnb +C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\bin\Debug\netcoreapp3.1\Content\graph.xnb diff --git a/Pacman/obj/Debug/netcoreapp3.1/Pacman.dll b/Pacman/obj/Debug/netcoreapp3.1/Pacman.dll new file mode 100644 index 0000000..d2b21f8 Binary files /dev/null and b/Pacman/obj/Debug/netcoreapp3.1/Pacman.dll differ diff --git a/Pacman/obj/Debug/netcoreapp3.1/Pacman.genruntimeconfig.cache b/Pacman/obj/Debug/netcoreapp3.1/Pacman.genruntimeconfig.cache new file mode 100644 index 0000000..ce59544 --- /dev/null +++ b/Pacman/obj/Debug/netcoreapp3.1/Pacman.genruntimeconfig.cache @@ -0,0 +1 @@ +e7743d7bef698f92267206ca26f899b8763e7a4e diff --git a/Pacman/obj/Debug/netcoreapp3.1/Pacman.pdb b/Pacman/obj/Debug/netcoreapp3.1/Pacman.pdb new file mode 100644 index 0000000..8aae311 Binary files /dev/null and b/Pacman/obj/Debug/netcoreapp3.1/Pacman.pdb differ diff --git a/Pacman/obj/Debug/netcoreapp3.1/_IsIncrementalBuild b/Pacman/obj/Debug/netcoreapp3.1/_IsIncrementalBuild new file mode 100644 index 0000000..a932779 --- /dev/null +++ b/Pacman/obj/Debug/netcoreapp3.1/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Debug\netcoreapp3.1\\_IsIncrementalBuild diff --git a/Pacman/obj/Debug/netcoreapp3.1/apphost.exe b/Pacman/obj/Debug/netcoreapp3.1/apphost.exe new file mode 100644 index 0000000..60734a9 Binary files /dev/null and b/Pacman/obj/Debug/netcoreapp3.1/apphost.exe differ diff --git a/Pacman/obj/Pacman.csproj.nuget.dgspec.json b/Pacman/obj/Pacman.csproj.nuget.dgspec.json index af2f429..22673de 100644 --- a/Pacman/obj/Pacman.csproj.nuget.dgspec.json +++ b/Pacman/obj/Pacman.csproj.nuget.dgspec.json @@ -60,10 +60,17 @@ "net47", "net471", "net472", - "net48" + "net48", + "net481" ], "assetTargetFallback": true, "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[3.1.25, 3.1.25]" + } + ], "frameworkReferences": { "Microsoft.NETCore.App": { "privateAssets": "all" @@ -72,7 +79,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.407\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400-preview.22301.10\\RuntimeIdentifierGraph.json" } } } diff --git a/Pacman/obj/Pacman.csproj.nuget.g.props b/Pacman/obj/Pacman.csproj.nuget.g.props index 89f103f..9743b03 100644 --- a/Pacman/obj/Pacman.csproj.nuget.g.props +++ b/Pacman/obj/Pacman.csproj.nuget.g.props @@ -7,15 +7,12 @@ $(UserProfile)\.nuget\packages\ C:\Users\Semejkin_AV\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 5.11.1 + 6.3.0 - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - diff --git a/Pacman/obj/Pacman.csproj.nuget.g.targets b/Pacman/obj/Pacman.csproj.nuget.g.targets index 26d5faf..66ee49a 100644 --- a/Pacman/obj/Pacman.csproj.nuget.g.targets +++ b/Pacman/obj/Pacman.csproj.nuget.g.targets @@ -1,8 +1,5 @@  - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - diff --git a/Pacman/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/Pacman/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/Pacman/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/Pacman/obj/Release/netcoreapp3.1/Pacman.AssemblyInfo.cs b/Pacman/obj/Release/netcoreapp3.1/Pacman.AssemblyInfo.cs new file mode 100644 index 0000000..950bff9 --- /dev/null +++ b/Pacman/obj/Release/netcoreapp3.1/Pacman.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Pacman")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Pacman")] +[assembly: System.Reflection.AssemblyTitleAttribute("Pacman")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Создано классом WriteCodeFragment MSBuild. + diff --git a/Pacman/obj/Release/netcoreapp3.1/Pacman.AssemblyInfoInputs.cache b/Pacman/obj/Release/netcoreapp3.1/Pacman.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6fc7456 --- /dev/null +++ b/Pacman/obj/Release/netcoreapp3.1/Pacman.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a1969ef0557ebef872a6cf269b6d7d4f09d585b9 diff --git a/Pacman/obj/Release/netcoreapp3.1/Pacman.GeneratedMSBuildEditorConfig.editorconfig b/Pacman/obj/Release/netcoreapp3.1/Pacman.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ff0e3a0 --- /dev/null +++ b/Pacman/obj/Release/netcoreapp3.1/Pacman.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,9 @@ +is_global = true +build_property.ApplicationManifest = app.manifest +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.RootNamespace = Pacman +build_property.ProjectDir = C:\Users\Semejkin_AV\Documents\Github_repos\Pacman\Pacman\ diff --git a/Pacman/obj/Release/netcoreapp3.1/Pacman.assets.cache b/Pacman/obj/Release/netcoreapp3.1/Pacman.assets.cache new file mode 100644 index 0000000..558d42c Binary files /dev/null and b/Pacman/obj/Release/netcoreapp3.1/Pacman.assets.cache differ diff --git a/Pacman/obj/Release/netcoreapp3.1/Pacman.csproj.AssemblyReference.cache b/Pacman/obj/Release/netcoreapp3.1/Pacman.csproj.AssemblyReference.cache new file mode 100644 index 0000000..571f59e Binary files /dev/null and b/Pacman/obj/Release/netcoreapp3.1/Pacman.csproj.AssemblyReference.cache differ diff --git a/Pacman/obj/project.assets.json b/Pacman/obj/project.assets.json index 26fadd0..3e6a2d6 100644 --- a/Pacman/obj/project.assets.json +++ b/Pacman/obj/project.assets.json @@ -7439,10 +7439,17 @@ "net47", "net471", "net472", - "net48" + "net48", + "net481" ], "assetTargetFallback": true, "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[3.1.25, 3.1.25]" + } + ], "frameworkReferences": { "Microsoft.NETCore.App": { "privateAssets": "all" @@ -7451,7 +7458,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.407\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400-preview.22301.10\\RuntimeIdentifierGraph.json" } } } diff --git a/Pacman/obj/project.nuget.cache b/Pacman/obj/project.nuget.cache index b1ba3ff..e537f18 100644 --- a/Pacman/obj/project.nuget.cache +++ b/Pacman/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "mUY5J9vSukuVeNvdp2z7DADF4xX0Xt41yvvMHr6+NfWvwgtCz4laNM1grYCGnu2WzNtz2FZqmVVt1AG4iZFg5A==", + "dgSpecHash": "GF41MSlyYZNU6802So6LFKzR+x9x/UdLHWarJV1NSBH9d9/KBxII+tmaEhdT3jH7TJon0nGAEv6QXRiNKVAMog==", "success": true, "projectFilePath": "C:\\Users\\Semejkin_AV\\Documents\\Github_repos\\Pacman\\Pacman\\Pacman.csproj", "expectedPackageFiles": [ @@ -124,7 +124,8 @@ "C:\\Users\\Semejkin_AV\\.nuget\\packages\\system.xml.xdocument\\4.0.11\\system.xml.xdocument.4.0.11.nupkg.sha512", "C:\\Users\\Semejkin_AV\\.nuget\\packages\\system.xml.xmldocument\\4.0.1\\system.xml.xmldocument.4.0.1.nupkg.sha512", "C:\\Users\\Semejkin_AV\\.nuget\\packages\\system.xml.xpath\\4.0.1\\system.xml.xpath.4.0.1.nupkg.sha512", - "C:\\Users\\Semejkin_AV\\.nuget\\packages\\system.xml.xpath.xdocument\\4.0.1\\system.xml.xpath.xdocument.4.0.1.nupkg.sha512" + "C:\\Users\\Semejkin_AV\\.nuget\\packages\\system.xml.xpath.xdocument\\4.0.1\\system.xml.xpath.xdocument.4.0.1.nupkg.sha512", + "C:\\Users\\Semejkin_AV\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\3.1.25\\microsoft.netcore.app.host.win-x64.3.1.25.nupkg.sha512" ], "logs": [] } \ No newline at end of file