diff --git a/.vs/Bowling/DesignTimeBuild/.dtbcache.v2 b/.vs/Bowling/DesignTimeBuild/.dtbcache.v2 index 44290a5..23681df 100644 Binary files a/.vs/Bowling/DesignTimeBuild/.dtbcache.v2 and b/.vs/Bowling/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/Bowling/FileContentIndex/044bda40-8ffb-427e-9839-6bac7ad70c8c.vsidx b/.vs/Bowling/FileContentIndex/044bda40-8ffb-427e-9839-6bac7ad70c8c.vsidx new file mode 100644 index 0000000..2fa350b Binary files /dev/null and b/.vs/Bowling/FileContentIndex/044bda40-8ffb-427e-9839-6bac7ad70c8c.vsidx differ diff --git a/.vs/Bowling/FileContentIndex/4543de32-8d2e-495f-92d0-e6ad1f4c9fa2.vsidx b/.vs/Bowling/FileContentIndex/4543de32-8d2e-495f-92d0-e6ad1f4c9fa2.vsidx new file mode 100644 index 0000000..270f926 Binary files /dev/null and b/.vs/Bowling/FileContentIndex/4543de32-8d2e-495f-92d0-e6ad1f4c9fa2.vsidx differ diff --git a/.vs/Bowling/FileContentIndex/8df22dbc-80c2-436e-8178-b170871def6a.vsidx b/.vs/Bowling/FileContentIndex/8df22dbc-80c2-436e-8178-b170871def6a.vsidx deleted file mode 100644 index 3fe816e..0000000 Binary files a/.vs/Bowling/FileContentIndex/8df22dbc-80c2-436e-8178-b170871def6a.vsidx and /dev/null differ diff --git a/.vs/Bowling/FileContentIndex/96e3527d-ebc5-42a0-8339-548af95e3384.vsidx b/.vs/Bowling/FileContentIndex/96e3527d-ebc5-42a0-8339-548af95e3384.vsidx deleted file mode 100644 index 52c55a8..0000000 Binary files a/.vs/Bowling/FileContentIndex/96e3527d-ebc5-42a0-8339-548af95e3384.vsidx and /dev/null differ diff --git a/.vs/Bowling/FileContentIndex/0d179ef8-e767-4d99-915e-83d9923cfb66.vsidx b/.vs/Bowling/FileContentIndex/bae8f6d6-7f0c-4c67-a7f1-7980f40c5933.vsidx similarity index 100% rename from .vs/Bowling/FileContentIndex/0d179ef8-e767-4d99-915e-83d9923cfb66.vsidx rename to .vs/Bowling/FileContentIndex/bae8f6d6-7f0c-4c67-a7f1-7980f40c5933.vsidx diff --git a/.vs/Bowling/v17/.futdcache.v1 b/.vs/Bowling/v17/.futdcache.v1 new file mode 100644 index 0000000..c92c4f0 Binary files /dev/null and b/.vs/Bowling/v17/.futdcache.v1 differ diff --git a/.vs/Bowling/v17/.suo b/.vs/Bowling/v17/.suo index 985f4aa..5e06854 100644 Binary files a/.vs/Bowling/v17/.suo and b/.vs/Bowling/v17/.suo differ diff --git a/.vs/ProjectEvaluation/bowling.metadata.v2 b/.vs/ProjectEvaluation/bowling.metadata.v2 index 89e73b4..fa57958 100644 Binary files a/.vs/ProjectEvaluation/bowling.metadata.v2 and b/.vs/ProjectEvaluation/bowling.metadata.v2 differ diff --git a/.vs/ProjectEvaluation/bowling.projects.v2 b/.vs/ProjectEvaluation/bowling.projects.v2 index a43b30e..d34e153 100644 Binary files a/.vs/ProjectEvaluation/bowling.projects.v2 and b/.vs/ProjectEvaluation/bowling.projects.v2 differ diff --git a/Bowling.sln b/Bowling.sln index bcc43e4..890e68d 100644 --- a/Bowling.sln +++ b/Bowling.sln @@ -9,6 +9,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bowling_Server", "Bowling_S EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetLib", "BowlingNetLib\NetLib.csproj", "{8F4FCE29-064E-45E4-AF43-87F31420EF2F}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test", "Test\Test.csproj", "{A3F442D5-C149-401F-BC5C-9BADED32E621}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -27,6 +29,10 @@ Global {8F4FCE29-064E-45E4-AF43-87F31420EF2F}.Debug|Any CPU.Build.0 = Debug|Any CPU {8F4FCE29-064E-45E4-AF43-87F31420EF2F}.Release|Any CPU.ActiveCfg = Release|Any CPU {8F4FCE29-064E-45E4-AF43-87F31420EF2F}.Release|Any CPU.Build.0 = Release|Any CPU + {A3F442D5-C149-401F-BC5C-9BADED32E621}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A3F442D5-C149-401F-BC5C-9BADED32E621}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A3F442D5-C149-401F-BC5C-9BADED32E621}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A3F442D5-C149-401F-BC5C-9BADED32E621}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Bowling/Game1.cs b/Bowling/Game1.cs index 3692b6a..a208f3d 100644 --- a/Bowling/Game1.cs +++ b/Bowling/Game1.cs @@ -114,7 +114,7 @@ namespace Bowling Connect connect = new Connect(); if (connect.ShowDialog() == DialogResult.OK) { - gameState = GameState.Game; + gameState = GameState.Menu; player1 = new Player() { Name = connect.Name, Score = new List() }; NetLib.NetLib.IP = connect.IP; NetLib.NetLib.port = connect.Port; diff --git a/Bowling/bin/Debug/netcoreapp3.1/Bowling.dll b/Bowling/bin/Debug/netcoreapp3.1/Bowling.dll index 0e607aa..e8a6ff7 100644 Binary files a/Bowling/bin/Debug/netcoreapp3.1/Bowling.dll and b/Bowling/bin/Debug/netcoreapp3.1/Bowling.dll differ diff --git a/Bowling/bin/Debug/netcoreapp3.1/Bowling.pdb b/Bowling/bin/Debug/netcoreapp3.1/Bowling.pdb index 9d742d1..2d169a2 100644 Binary files a/Bowling/bin/Debug/netcoreapp3.1/Bowling.pdb and b/Bowling/bin/Debug/netcoreapp3.1/Bowling.pdb differ diff --git a/Bowling/bin/Debug/netcoreapp3.1/NetLib.dll b/Bowling/bin/Debug/netcoreapp3.1/NetLib.dll index 22c7701..b295b4b 100644 Binary files a/Bowling/bin/Debug/netcoreapp3.1/NetLib.dll and b/Bowling/bin/Debug/netcoreapp3.1/NetLib.dll differ diff --git a/Bowling/bin/Debug/netcoreapp3.1/NetLib.pdb b/Bowling/bin/Debug/netcoreapp3.1/NetLib.pdb index 360102d..2cbf6c8 100644 Binary files a/Bowling/bin/Debug/netcoreapp3.1/NetLib.pdb and b/Bowling/bin/Debug/netcoreapp3.1/NetLib.pdb differ diff --git a/Bowling/obj/Debug/netcoreapp3.1/Bowling.csproj.AssemblyReference.cache b/Bowling/obj/Debug/netcoreapp3.1/Bowling.csproj.AssemblyReference.cache index 5c8fb32..640f763 100644 Binary files a/Bowling/obj/Debug/netcoreapp3.1/Bowling.csproj.AssemblyReference.cache and b/Bowling/obj/Debug/netcoreapp3.1/Bowling.csproj.AssemblyReference.cache differ diff --git a/Bowling/obj/Debug/netcoreapp3.1/Bowling.dll b/Bowling/obj/Debug/netcoreapp3.1/Bowling.dll index 0e607aa..e8a6ff7 100644 Binary files a/Bowling/obj/Debug/netcoreapp3.1/Bowling.dll and b/Bowling/obj/Debug/netcoreapp3.1/Bowling.dll differ diff --git a/Bowling/obj/Debug/netcoreapp3.1/Bowling.pdb b/Bowling/obj/Debug/netcoreapp3.1/Bowling.pdb index 9d742d1..2d169a2 100644 Binary files a/Bowling/obj/Debug/netcoreapp3.1/Bowling.pdb and b/Bowling/obj/Debug/netcoreapp3.1/Bowling.pdb differ diff --git a/BowlingNetLib/NetLib.cs b/BowlingNetLib/NetLib.cs index c2f64c7..b924163 100644 --- a/BowlingNetLib/NetLib.cs +++ b/BowlingNetLib/NetLib.cs @@ -15,7 +15,7 @@ namespace NetLib public static void Connect() { - IPAddress ip = IPAddress.Parse(IP); + IPAddress ip = Dns.GetHostAddresses(IP)[0]; IPEndPoint ipe = new IPEndPoint(ip, port); socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); socket.Connect(ipe); diff --git a/BowlingNetLib/bin/Debug/netcoreapp3.1/NetLib.dll b/BowlingNetLib/bin/Debug/netcoreapp3.1/NetLib.dll index 22c7701..b295b4b 100644 Binary files a/BowlingNetLib/bin/Debug/netcoreapp3.1/NetLib.dll and b/BowlingNetLib/bin/Debug/netcoreapp3.1/NetLib.dll differ diff --git a/BowlingNetLib/bin/Debug/netcoreapp3.1/NetLib.pdb b/BowlingNetLib/bin/Debug/netcoreapp3.1/NetLib.pdb index 360102d..2cbf6c8 100644 Binary files a/BowlingNetLib/bin/Debug/netcoreapp3.1/NetLib.pdb and b/BowlingNetLib/bin/Debug/netcoreapp3.1/NetLib.pdb differ diff --git a/BowlingNetLib/obj/Debug/netcoreapp3.1/NetLib.dll b/BowlingNetLib/obj/Debug/netcoreapp3.1/NetLib.dll index 22c7701..b295b4b 100644 Binary files a/BowlingNetLib/obj/Debug/netcoreapp3.1/NetLib.dll and b/BowlingNetLib/obj/Debug/netcoreapp3.1/NetLib.dll differ diff --git a/BowlingNetLib/obj/Debug/netcoreapp3.1/NetLib.pdb b/BowlingNetLib/obj/Debug/netcoreapp3.1/NetLib.pdb index 360102d..2cbf6c8 100644 Binary files a/BowlingNetLib/obj/Debug/netcoreapp3.1/NetLib.pdb and b/BowlingNetLib/obj/Debug/netcoreapp3.1/NetLib.pdb differ diff --git a/Bowling_Server/Program.cs b/Bowling_Server/Program.cs index 6dad345..c4c8b8f 100644 --- a/Bowling_Server/Program.cs +++ b/Bowling_Server/Program.cs @@ -13,7 +13,6 @@ namespace Bowling_Server { static List players = new List(); private static Socket socket; - public static Random random; static void Main(string[] args) { @@ -85,6 +84,7 @@ namespace Bowling_Server static void StartGame(List group) { + Console.WriteLine("OK"); CastOpponents(group); foreach (var player in group) @@ -92,15 +92,30 @@ namespace Bowling_Server Thread thread = new Thread(() => { byte[] data = new byte[1024]; - while (true) + player.socket.ReceiveTimeout = 60000; + try { - int dataLength = player.socket.Receive(data); - string json = Encoding.ASCII.GetString(data, 0, dataLength); - player.Deserialize(json); - CastOpponents(group); + while (true) + { + int dataLength = player.socket.Receive(data); + string json = Encoding.ASCII.GetString(data, 0, dataLength); + player.Deserialize(json); + CastOpponents(group); + } } - } - ); + catch + { + Console.WriteLine("Player disconnected"); + if (group.IndexOf(player) == 1) + { + players.Add(group[0]); + } + else + { + players.Add(group[1]); + } + } + }); thread.Start(); } } diff --git a/Bowling_Server/bin/Debug/net5.0/Bowling_Server.dll b/Bowling_Server/bin/Debug/net5.0/Bowling_Server.dll index 89bf479..1dc4656 100644 Binary files a/Bowling_Server/bin/Debug/net5.0/Bowling_Server.dll and b/Bowling_Server/bin/Debug/net5.0/Bowling_Server.dll differ diff --git a/Bowling_Server/bin/Debug/net5.0/Bowling_Server.pdb b/Bowling_Server/bin/Debug/net5.0/Bowling_Server.pdb index 047bc0e..de58c73 100644 Binary files a/Bowling_Server/bin/Debug/net5.0/Bowling_Server.pdb and b/Bowling_Server/bin/Debug/net5.0/Bowling_Server.pdb differ diff --git a/Bowling_Server/bin/Debug/net5.0/NetLib.dll b/Bowling_Server/bin/Debug/net5.0/NetLib.dll index 22c7701..b295b4b 100644 Binary files a/Bowling_Server/bin/Debug/net5.0/NetLib.dll and b/Bowling_Server/bin/Debug/net5.0/NetLib.dll differ diff --git a/Bowling_Server/bin/Debug/net5.0/NetLib.pdb b/Bowling_Server/bin/Debug/net5.0/NetLib.pdb index 360102d..2cbf6c8 100644 Binary files a/Bowling_Server/bin/Debug/net5.0/NetLib.pdb and b/Bowling_Server/bin/Debug/net5.0/NetLib.pdb differ diff --git a/Bowling_Server/obj/Debug/net5.0/Bowling_Server.csproj.AssemblyReference.cache b/Bowling_Server/obj/Debug/net5.0/Bowling_Server.csproj.AssemblyReference.cache index 1e2c5fc..b01f42b 100644 Binary files a/Bowling_Server/obj/Debug/net5.0/Bowling_Server.csproj.AssemblyReference.cache and b/Bowling_Server/obj/Debug/net5.0/Bowling_Server.csproj.AssemblyReference.cache differ diff --git a/Bowling_Server/obj/Debug/net5.0/Bowling_Server.dll b/Bowling_Server/obj/Debug/net5.0/Bowling_Server.dll index 89bf479..1dc4656 100644 Binary files a/Bowling_Server/obj/Debug/net5.0/Bowling_Server.dll and b/Bowling_Server/obj/Debug/net5.0/Bowling_Server.dll differ diff --git a/Bowling_Server/obj/Debug/net5.0/Bowling_Server.pdb b/Bowling_Server/obj/Debug/net5.0/Bowling_Server.pdb index 047bc0e..de58c73 100644 Binary files a/Bowling_Server/obj/Debug/net5.0/Bowling_Server.pdb and b/Bowling_Server/obj/Debug/net5.0/Bowling_Server.pdb differ diff --git a/Bowling_Server/obj/Debug/net5.0/ref/Bowling_Server.dll b/Bowling_Server/obj/Debug/net5.0/ref/Bowling_Server.dll index ef268a3..47e8bcf 100644 Binary files a/Bowling_Server/obj/Debug/net5.0/ref/Bowling_Server.dll and b/Bowling_Server/obj/Debug/net5.0/ref/Bowling_Server.dll differ diff --git a/Bowling_Server/obj/Debug/net5.0/refint/Bowling_Server.dll b/Bowling_Server/obj/Debug/net5.0/refint/Bowling_Server.dll index ef268a3..47e8bcf 100644 Binary files a/Bowling_Server/obj/Debug/net5.0/refint/Bowling_Server.dll and b/Bowling_Server/obj/Debug/net5.0/refint/Bowling_Server.dll differ diff --git a/Test/Program.cs b/Test/Program.cs new file mode 100644 index 0000000..925cfee --- /dev/null +++ b/Test/Program.cs @@ -0,0 +1,13 @@ +using System; +using System.Net; + +namespace Test +{ + internal class Program + { + static void Main(string[] args) + { + Console.WriteLine(Dns.GetHostAddresses("mootfrost.ru")[0]); + } + } +} diff --git a/Test/Test.csproj b/Test/Test.csproj new file mode 100644 index 0000000..c73e0d1 --- /dev/null +++ b/Test/Test.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp3.1 + + + diff --git a/Test/bin/Debug/netcoreapp3.1/Test.deps.json b/Test/bin/Debug/netcoreapp3.1/Test.deps.json new file mode 100644 index 0000000..a8acd98 --- /dev/null +++ b/Test/bin/Debug/netcoreapp3.1/Test.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Test/1.0.0": { + "runtime": { + "Test.dll": {} + } + } + } + }, + "libraries": { + "Test/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Test/bin/Debug/netcoreapp3.1/Test.dll b/Test/bin/Debug/netcoreapp3.1/Test.dll new file mode 100644 index 0000000..12e36e2 Binary files /dev/null and b/Test/bin/Debug/netcoreapp3.1/Test.dll differ diff --git a/Test/bin/Debug/netcoreapp3.1/Test.exe b/Test/bin/Debug/netcoreapp3.1/Test.exe new file mode 100644 index 0000000..ff239e4 Binary files /dev/null and b/Test/bin/Debug/netcoreapp3.1/Test.exe differ diff --git a/Test/bin/Debug/netcoreapp3.1/Test.pdb b/Test/bin/Debug/netcoreapp3.1/Test.pdb new file mode 100644 index 0000000..270306d Binary files /dev/null and b/Test/bin/Debug/netcoreapp3.1/Test.pdb differ diff --git a/Test/bin/Debug/netcoreapp3.1/Test.runtimeconfig.dev.json b/Test/bin/Debug/netcoreapp3.1/Test.runtimeconfig.dev.json new file mode 100644 index 0000000..9293ba7 --- /dev/null +++ b/Test/bin/Debug/netcoreapp3.1/Test.runtimeconfig.dev.json @@ -0,0 +1,8 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\Semejkin_AV\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Semejkin_AV\\.nuget\\packages" + ] + } +} \ No newline at end of file diff --git a/Test/bin/Debug/netcoreapp3.1/Test.runtimeconfig.json b/Test/bin/Debug/netcoreapp3.1/Test.runtimeconfig.json new file mode 100644 index 0000000..bc456d7 --- /dev/null +++ b/Test/bin/Debug/netcoreapp3.1/Test.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp3.1", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "3.1.0" + } + } +} \ No newline at end of file diff --git a/Test/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/Test/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/Test/obj/Debug/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/Test/obj/Debug/netcoreapp3.1/Test.AssemblyInfo.cs b/Test/obj/Debug/netcoreapp3.1/Test.AssemblyInfo.cs new file mode 100644 index 0000000..86b1f2b --- /dev/null +++ b/Test/obj/Debug/netcoreapp3.1/Test.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Test")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Test")] +[assembly: System.Reflection.AssemblyTitleAttribute("Test")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Создано классом WriteCodeFragment MSBuild. + diff --git a/Test/obj/Debug/netcoreapp3.1/Test.AssemblyInfoInputs.cache b/Test/obj/Debug/netcoreapp3.1/Test.AssemblyInfoInputs.cache new file mode 100644 index 0000000..98c65ce --- /dev/null +++ b/Test/obj/Debug/netcoreapp3.1/Test.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f6533ec0c338906e0f581238a326c04606b3059f diff --git a/Test/obj/Debug/netcoreapp3.1/Test.GeneratedMSBuildEditorConfig.editorconfig b/Test/obj/Debug/netcoreapp3.1/Test.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b00eb5d --- /dev/null +++ b/Test/obj/Debug/netcoreapp3.1/Test.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = Test +build_property.ProjectDir = C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\ diff --git a/Test/obj/Debug/netcoreapp3.1/Test.assets.cache b/Test/obj/Debug/netcoreapp3.1/Test.assets.cache new file mode 100644 index 0000000..04a7be1 Binary files /dev/null and b/Test/obj/Debug/netcoreapp3.1/Test.assets.cache differ diff --git a/Test/obj/Debug/netcoreapp3.1/Test.csproj.AssemblyReference.cache b/Test/obj/Debug/netcoreapp3.1/Test.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f1e1ac0 Binary files /dev/null and b/Test/obj/Debug/netcoreapp3.1/Test.csproj.AssemblyReference.cache differ diff --git a/Test/obj/Debug/netcoreapp3.1/Test.csproj.BuildWithSkipAnalyzers b/Test/obj/Debug/netcoreapp3.1/Test.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Test/obj/Debug/netcoreapp3.1/Test.csproj.CoreCompileInputs.cache b/Test/obj/Debug/netcoreapp3.1/Test.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..cc4f18e --- /dev/null +++ b/Test/obj/Debug/netcoreapp3.1/Test.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +888bf9d461a4b4d8262376cf6b207220f62a1b4f diff --git a/Test/obj/Debug/netcoreapp3.1/Test.csproj.FileListAbsolute.txt b/Test/obj/Debug/netcoreapp3.1/Test.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5ccd497 --- /dev/null +++ b/Test/obj/Debug/netcoreapp3.1/Test.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\bin\Debug\netcoreapp3.1\Test.exe +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\bin\Debug\netcoreapp3.1\Test.deps.json +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\bin\Debug\netcoreapp3.1\Test.runtimeconfig.json +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\bin\Debug\netcoreapp3.1\Test.runtimeconfig.dev.json +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\bin\Debug\netcoreapp3.1\Test.dll +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\bin\Debug\netcoreapp3.1\Test.pdb +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\obj\Debug\netcoreapp3.1\Test.csproj.AssemblyReference.cache +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\obj\Debug\netcoreapp3.1\Test.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\obj\Debug\netcoreapp3.1\Test.AssemblyInfoInputs.cache +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\obj\Debug\netcoreapp3.1\Test.AssemblyInfo.cs +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\obj\Debug\netcoreapp3.1\Test.csproj.CoreCompileInputs.cache +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\obj\Debug\netcoreapp3.1\Test.dll +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\obj\Debug\netcoreapp3.1\Test.pdb +C:\Users\Semejkin_AV\Documents\Github_repos\ProgtimeHack2022_Bowling\Test\obj\Debug\netcoreapp3.1\Test.genruntimeconfig.cache diff --git a/Test/obj/Debug/netcoreapp3.1/Test.dll b/Test/obj/Debug/netcoreapp3.1/Test.dll new file mode 100644 index 0000000..12e36e2 Binary files /dev/null and b/Test/obj/Debug/netcoreapp3.1/Test.dll differ diff --git a/Test/obj/Debug/netcoreapp3.1/Test.genruntimeconfig.cache b/Test/obj/Debug/netcoreapp3.1/Test.genruntimeconfig.cache new file mode 100644 index 0000000..41d961e --- /dev/null +++ b/Test/obj/Debug/netcoreapp3.1/Test.genruntimeconfig.cache @@ -0,0 +1 @@ +cf6a809174eb713435eea0664134528a06d2b76a diff --git a/Test/obj/Debug/netcoreapp3.1/Test.pdb b/Test/obj/Debug/netcoreapp3.1/Test.pdb new file mode 100644 index 0000000..270306d Binary files /dev/null and b/Test/obj/Debug/netcoreapp3.1/Test.pdb differ diff --git a/Test/obj/Debug/netcoreapp3.1/apphost.exe b/Test/obj/Debug/netcoreapp3.1/apphost.exe new file mode 100644 index 0000000..ff239e4 Binary files /dev/null and b/Test/obj/Debug/netcoreapp3.1/apphost.exe differ diff --git a/Test/obj/Test.csproj.nuget.dgspec.json b/Test/obj/Test.csproj.nuget.dgspec.json new file mode 100644 index 0000000..8934c68 --- /dev/null +++ b/Test/obj/Test.csproj.nuget.dgspec.json @@ -0,0 +1,68 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Semejkin_AV\\Documents\\Github_repos\\ProgtimeHack2022_Bowling\\Test\\Test.csproj": {} + }, + "projects": { + "C:\\Users\\Semejkin_AV\\Documents\\Github_repos\\ProgtimeHack2022_Bowling\\Test\\Test.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Semejkin_AV\\Documents\\Github_repos\\ProgtimeHack2022_Bowling\\Test\\Test.csproj", + "projectName": "Test", + "projectPath": "C:\\Users\\Semejkin_AV\\Documents\\Github_repos\\ProgtimeHack2022_Bowling\\Test\\Test.csproj", + "packagesPath": "C:\\Users\\Semejkin_AV\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Semejkin_AV\\Documents\\Github_repos\\ProgtimeHack2022_Bowling\\Test\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Semejkin_AV\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[3.1.23, 3.1.23]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300-preview.22204.3\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Test/obj/Test.csproj.nuget.g.props b/Test/obj/Test.csproj.nuget.g.props new file mode 100644 index 0000000..50f3dfb --- /dev/null +++ b/Test/obj/Test.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Semejkin_AV\.nuget\packages\ + PackageReference + 6.2.0 + + + + + \ No newline at end of file diff --git a/Test/obj/Test.csproj.nuget.g.targets b/Test/obj/Test.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Test/obj/Test.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Test/obj/project.assets.json b/Test/obj/project.assets.json new file mode 100644 index 0000000..8834f94 --- /dev/null +++ b/Test/obj/project.assets.json @@ -0,0 +1,73 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [] + }, + "packageFolders": { + "C:\\Users\\Semejkin_AV\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Semejkin_AV\\Documents\\Github_repos\\ProgtimeHack2022_Bowling\\Test\\Test.csproj", + "projectName": "Test", + "projectPath": "C:\\Users\\Semejkin_AV\\Documents\\Github_repos\\ProgtimeHack2022_Bowling\\Test\\Test.csproj", + "packagesPath": "C:\\Users\\Semejkin_AV\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Semejkin_AV\\Documents\\Github_repos\\ProgtimeHack2022_Bowling\\Test\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Semejkin_AV\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[3.1.23, 3.1.23]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300-preview.22204.3\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Test/obj/project.nuget.cache b/Test/obj/project.nuget.cache new file mode 100644 index 0000000..d7778e3 --- /dev/null +++ b/Test/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "BEh5d9qXk9PtQezdq/2nEVWFOsPSR1oVjwUhtMfugQxH0a54MUMI06CPnCdjxEKu0guIGIy/EiGQCb1zqwwuWw==", + "success": true, + "projectFilePath": "C:\\Users\\Semejkin_AV\\Documents\\Github_repos\\ProgtimeHack2022_Bowling\\Test\\Test.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Semejkin_AV\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\3.1.23\\microsoft.netcore.app.host.win-x64.3.1.23.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file