theme changed
This commit is contained in:
		
							
								
								
									
										23
									
								
								labs/lab7/Igra/Gamer.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								labs/lab7/Igra/Gamer.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,23 @@ | ||||
| using System; | ||||
|  | ||||
| class Gamer | ||||
| { | ||||
|     string Name; | ||||
|     IgralnayaKost seans; | ||||
|  | ||||
|     public Gamer(string name) | ||||
|     { | ||||
|         Name = name; | ||||
|         seans = new IgralnayaKost(); | ||||
|     } | ||||
|  | ||||
|     public int SeansGame() | ||||
|     { | ||||
|         return seans.random(); | ||||
|     } | ||||
|  | ||||
|     public override string ToString() | ||||
|     { | ||||
|         return Name; | ||||
|     } | ||||
| } | ||||
							
								
								
									
										10
									
								
								labs/lab7/Igra/Igra.csproj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								labs/lab7/Igra/Igra.csproj
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
|  | ||||
|   <PropertyGroup> | ||||
|     <OutputType>Exe</OutputType> | ||||
|     <TargetFramework>net9.0</TargetFramework> | ||||
|     <ImplicitUsings>enable</ImplicitUsings> | ||||
|     <Nullable>enable</Nullable> | ||||
|   </PropertyGroup> | ||||
|  | ||||
| </Project> | ||||
							
								
								
									
										17
									
								
								labs/lab7/Igra/IgralnayaKost.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								labs/lab7/Igra/IgralnayaKost.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | ||||
| using System; | ||||
|  | ||||
| class IgralnayaKost  | ||||
| { | ||||
|     Random r; | ||||
|  | ||||
|     public IgralnayaKost() | ||||
|     { | ||||
|         r = new Random(); | ||||
|     } | ||||
|  | ||||
|     public int random() | ||||
|     { | ||||
|         int res = r.Next(6) + 1; | ||||
|         return res; | ||||
|     } | ||||
| } | ||||
							
								
								
									
										14
									
								
								labs/lab7/Igra/Program.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								labs/lab7/Igra/Program.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | ||||
| using System; | ||||
|  | ||||
| public class Program | ||||
| { | ||||
|     public static void Main(string[] args) | ||||
|     { | ||||
|         Gamer g1 = new Gamer("Niko"); | ||||
|  | ||||
|         for (int i = 1; i <= 6; i++) | ||||
|         { | ||||
|             Console.WriteLine("Выпало количество очков {0} для игрока {1}", g1.SeansGame(), g1.ToString()); | ||||
|         } | ||||
|     } | ||||
| } | ||||
							
								
								
									
										
											BIN
										
									
								
								labs/lab7/Igra/bin/Debug/net9.0/Igra
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								labs/lab7/Igra/bin/Debug/net9.0/Igra
									
									
									
									
									
										Executable file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										23
									
								
								labs/lab7/Igra/bin/Debug/net9.0/Igra.deps.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								labs/lab7/Igra/bin/Debug/net9.0/Igra.deps.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,23 @@ | ||||
| { | ||||
|   "runtimeTarget": { | ||||
|     "name": ".NETCoreApp,Version=v9.0", | ||||
|     "signature": "" | ||||
|   }, | ||||
|   "compilationOptions": {}, | ||||
|   "targets": { | ||||
|     ".NETCoreApp,Version=v9.0": { | ||||
|       "Igra/1.0.0": { | ||||
|         "runtime": { | ||||
|           "Igra.dll": {} | ||||
|         } | ||||
|       } | ||||
|     } | ||||
|   }, | ||||
|   "libraries": { | ||||
|     "Igra/1.0.0": { | ||||
|       "type": "project", | ||||
|       "serviceable": false, | ||||
|       "sha512": "" | ||||
|     } | ||||
|   } | ||||
| } | ||||
							
								
								
									
										
											BIN
										
									
								
								labs/lab7/Igra/bin/Debug/net9.0/Igra.dll
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								labs/lab7/Igra/bin/Debug/net9.0/Igra.dll
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								labs/lab7/Igra/bin/Debug/net9.0/Igra.pdb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								labs/lab7/Igra/bin/Debug/net9.0/Igra.pdb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										12
									
								
								labs/lab7/Igra/bin/Debug/net9.0/Igra.runtimeconfig.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								labs/lab7/Igra/bin/Debug/net9.0/Igra.runtimeconfig.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,12 @@ | ||||
| { | ||||
|   "runtimeOptions": { | ||||
|     "tfm": "net9.0", | ||||
|     "framework": { | ||||
|       "name": "Microsoft.NETCore.App", | ||||
|       "version": "9.0.0" | ||||
|     }, | ||||
|     "configProperties": { | ||||
|       "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false | ||||
|     } | ||||
|   } | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| // <autogenerated /> | ||||
| using System; | ||||
| using System.Reflection; | ||||
| [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] | ||||
							
								
								
									
										22
									
								
								labs/lab7/Igra/obj/Debug/net9.0/Igra.AssemblyInfo.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								labs/lab7/Igra/obj/Debug/net9.0/Igra.AssemblyInfo.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,22 @@ | ||||
| //------------------------------------------------------------------------------ | ||||
| // <auto-generated> | ||||
| //     This code was generated by a tool. | ||||
| // | ||||
| //     Changes to this file may cause incorrect behavior and will be lost if | ||||
| //     the code is regenerated. | ||||
| // </auto-generated> | ||||
| //------------------------------------------------------------------------------ | ||||
|  | ||||
| using System; | ||||
| using System.Reflection; | ||||
|  | ||||
| [assembly: System.Reflection.AssemblyCompanyAttribute("Igra")] | ||||
| [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | ||||
| [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | ||||
| [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8c63118e20b76593817b5efc05943736b1cf730a")] | ||||
| [assembly: System.Reflection.AssemblyProductAttribute("Igra")] | ||||
| [assembly: System.Reflection.AssemblyTitleAttribute("Igra")] | ||||
| [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | ||||
|  | ||||
| // Generated by the MSBuild WriteCodeFragment class. | ||||
|  | ||||
| @@ -0,0 +1 @@ | ||||
| 05d5c8d28f18bf5c246094e88fc33948b0dac62f39381b4b360ad08d07b89dd2 | ||||
| @@ -0,0 +1,15 @@ | ||||
| is_global = true | ||||
| build_property.TargetFramework = net9.0 | ||||
| build_property.TargetPlatformMinVersion =  | ||||
| build_property.UsingMicrosoftNETSdkWeb =  | ||||
| build_property.ProjectTypeGuids =  | ||||
| build_property.InvariantGlobalization =  | ||||
| build_property.PlatformNeutralAssembly =  | ||||
| build_property.EnforceExtendedAnalyzerRules =  | ||||
| build_property._SupportedPlatformList = Linux,macOS,Windows | ||||
| build_property.RootNamespace = Igra | ||||
| build_property.ProjectDir = /home/nik/oop/labs/lab7/Igra/ | ||||
| build_property.EnableComHosting =  | ||||
| build_property.EnableGeneratedComInterfaceComImportInterop =  | ||||
| build_property.EffectiveAnalysisLevelStyle = 9.0 | ||||
| build_property.EnableCodeStyleSeverity =  | ||||
							
								
								
									
										8
									
								
								labs/lab7/Igra/obj/Debug/net9.0/Igra.GlobalUsings.g.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								labs/lab7/Igra/obj/Debug/net9.0/Igra.GlobalUsings.g.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | ||||
| // <auto-generated/> | ||||
| global using global::System; | ||||
| global using global::System.Collections.Generic; | ||||
| global using global::System.IO; | ||||
| global using global::System.Linq; | ||||
| global using global::System.Net.Http; | ||||
| global using global::System.Threading; | ||||
| global using global::System.Threading.Tasks; | ||||
							
								
								
									
										
											BIN
										
									
								
								labs/lab7/Igra/obj/Debug/net9.0/Igra.assets.cache
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								labs/lab7/Igra/obj/Debug/net9.0/Igra.assets.cache
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| @@ -0,0 +1 @@ | ||||
| 965f402a393a8b3c3615bdffcb747854f7dda4ef84f8cdb7176cc338c3ebeb3f | ||||
| @@ -0,0 +1,14 @@ | ||||
| /home/nik/oop/labs/lab7/Igra/bin/Debug/net9.0/Igra | ||||
| /home/nik/oop/labs/lab7/Igra/bin/Debug/net9.0/Igra.deps.json | ||||
| /home/nik/oop/labs/lab7/Igra/bin/Debug/net9.0/Igra.runtimeconfig.json | ||||
| /home/nik/oop/labs/lab7/Igra/bin/Debug/net9.0/Igra.dll | ||||
| /home/nik/oop/labs/lab7/Igra/bin/Debug/net9.0/Igra.pdb | ||||
| /home/nik/oop/labs/lab7/Igra/obj/Debug/net9.0/Igra.GeneratedMSBuildEditorConfig.editorconfig | ||||
| /home/nik/oop/labs/lab7/Igra/obj/Debug/net9.0/Igra.AssemblyInfoInputs.cache | ||||
| /home/nik/oop/labs/lab7/Igra/obj/Debug/net9.0/Igra.AssemblyInfo.cs | ||||
| /home/nik/oop/labs/lab7/Igra/obj/Debug/net9.0/Igra.csproj.CoreCompileInputs.cache | ||||
| /home/nik/oop/labs/lab7/Igra/obj/Debug/net9.0/Igra.dll | ||||
| /home/nik/oop/labs/lab7/Igra/obj/Debug/net9.0/refint/Igra.dll | ||||
| /home/nik/oop/labs/lab7/Igra/obj/Debug/net9.0/Igra.pdb | ||||
| /home/nik/oop/labs/lab7/Igra/obj/Debug/net9.0/Igra.genruntimeconfig.cache | ||||
| /home/nik/oop/labs/lab7/Igra/obj/Debug/net9.0/ref/Igra.dll | ||||
							
								
								
									
										
											BIN
										
									
								
								labs/lab7/Igra/obj/Debug/net9.0/Igra.dll
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								labs/lab7/Igra/obj/Debug/net9.0/Igra.dll
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| @@ -0,0 +1 @@ | ||||
| 59af8060a39fe66547924f2ecd51abdbe7484d6060668c2551dae0c99bc6f070 | ||||
							
								
								
									
										
											BIN
										
									
								
								labs/lab7/Igra/obj/Debug/net9.0/Igra.pdb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								labs/lab7/Igra/obj/Debug/net9.0/Igra.pdb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								labs/lab7/Igra/obj/Debug/net9.0/apphost
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								labs/lab7/Igra/obj/Debug/net9.0/apphost
									
									
									
									
									
										Executable file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								labs/lab7/Igra/obj/Debug/net9.0/ref/Igra.dll
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								labs/lab7/Igra/obj/Debug/net9.0/ref/Igra.dll
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								labs/lab7/Igra/obj/Debug/net9.0/refint/Igra.dll
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								labs/lab7/Igra/obj/Debug/net9.0/refint/Igra.dll
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										73
									
								
								labs/lab7/Igra/obj/Igra.csproj.nuget.dgspec.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										73
									
								
								labs/lab7/Igra/obj/Igra.csproj.nuget.dgspec.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,73 @@ | ||||
| { | ||||
|   "format": 1, | ||||
|   "restore": { | ||||
|     "/home/nik/oop/labs/lab7/Igra/Igra.csproj": {} | ||||
|   }, | ||||
|   "projects": { | ||||
|     "/home/nik/oop/labs/lab7/Igra/Igra.csproj": { | ||||
|       "version": "1.0.0", | ||||
|       "restore": { | ||||
|         "projectUniqueName": "/home/nik/oop/labs/lab7/Igra/Igra.csproj", | ||||
|         "projectName": "Igra", | ||||
|         "projectPath": "/home/nik/oop/labs/lab7/Igra/Igra.csproj", | ||||
|         "packagesPath": "/home/nik/.nuget/packages/", | ||||
|         "outputPath": "/home/nik/oop/labs/lab7/Igra/obj/", | ||||
|         "projectStyle": "PackageReference", | ||||
|         "configFilePaths": [ | ||||
|           "/home/nik/.nuget/NuGet/NuGet.Config" | ||||
|         ], | ||||
|         "originalTargetFrameworks": [ | ||||
|           "net9.0" | ||||
|         ], | ||||
|         "sources": { | ||||
|           "https://api.nuget.org/v3/index.json": {} | ||||
|         }, | ||||
|         "frameworks": { | ||||
|           "net9.0": { | ||||
|             "targetAlias": "net9.0", | ||||
|             "projectReferences": {} | ||||
|           } | ||||
|         }, | ||||
|         "warningProperties": { | ||||
|           "warnAsError": [ | ||||
|             "NU1605" | ||||
|           ] | ||||
|         }, | ||||
|         "restoreAuditProperties": { | ||||
|           "enableAudit": "true", | ||||
|           "auditLevel": "low", | ||||
|           "auditMode": "direct" | ||||
|         }, | ||||
|         "SdkAnalysisLevel": "9.0.100" | ||||
|       }, | ||||
|       "frameworks": { | ||||
|         "net9.0": { | ||||
|           "targetAlias": "net9.0", | ||||
|           "imports": [ | ||||
|             "net461", | ||||
|             "net462", | ||||
|             "net47", | ||||
|             "net471", | ||||
|             "net472", | ||||
|             "net48", | ||||
|             "net481" | ||||
|           ], | ||||
|           "assetTargetFallback": true, | ||||
|           "warn": true, | ||||
|           "downloadDependencies": [ | ||||
|             { | ||||
|               "name": "Microsoft.AspNetCore.App.Ref", | ||||
|               "version": "[9.0.9, 9.0.9]" | ||||
|             } | ||||
|           ], | ||||
|           "frameworkReferences": { | ||||
|             "Microsoft.NETCore.App": { | ||||
|               "privateAssets": "all" | ||||
|             } | ||||
|           }, | ||||
|           "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.110/PortableRuntimeIdentifierGraph.json" | ||||
|         } | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| } | ||||
							
								
								
									
										15
									
								
								labs/lab7/Igra/obj/Igra.csproj.nuget.g.props
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								labs/lab7/Igra/obj/Igra.csproj.nuget.g.props
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,15 @@ | ||||
| <?xml version="1.0" encoding="utf-8" standalone="no"?> | ||||
| <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||
|   <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | ||||
|     <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> | ||||
|     <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> | ||||
|     <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> | ||||
|     <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/nik/.nuget/packages/</NuGetPackageRoot> | ||||
|     <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/nik/.nuget/packages/</NuGetPackageFolders> | ||||
|     <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> | ||||
|     <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.4</NuGetToolVersion> | ||||
|   </PropertyGroup> | ||||
|   <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | ||||
|     <SourceRoot Include="/home/nik/.nuget/packages/" /> | ||||
|   </ItemGroup> | ||||
| </Project> | ||||
							
								
								
									
										2
									
								
								labs/lab7/Igra/obj/Igra.csproj.nuget.g.targets
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								labs/lab7/Igra/obj/Igra.csproj.nuget.g.targets
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,2 @@ | ||||
| <?xml version="1.0" encoding="utf-8" standalone="no"?> | ||||
| <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" /> | ||||
							
								
								
									
										78
									
								
								labs/lab7/Igra/obj/project.assets.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										78
									
								
								labs/lab7/Igra/obj/project.assets.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,78 @@ | ||||
| { | ||||
|   "version": 3, | ||||
|   "targets": { | ||||
|     "net9.0": {} | ||||
|   }, | ||||
|   "libraries": {}, | ||||
|   "projectFileDependencyGroups": { | ||||
|     "net9.0": [] | ||||
|   }, | ||||
|   "packageFolders": { | ||||
|     "/home/nik/.nuget/packages/": {} | ||||
|   }, | ||||
|   "project": { | ||||
|     "version": "1.0.0", | ||||
|     "restore": { | ||||
|       "projectUniqueName": "/home/nik/oop/labs/lab7/Igra/Igra.csproj", | ||||
|       "projectName": "Igra", | ||||
|       "projectPath": "/home/nik/oop/labs/lab7/Igra/Igra.csproj", | ||||
|       "packagesPath": "/home/nik/.nuget/packages/", | ||||
|       "outputPath": "/home/nik/oop/labs/lab7/Igra/obj/", | ||||
|       "projectStyle": "PackageReference", | ||||
|       "configFilePaths": [ | ||||
|         "/home/nik/.nuget/NuGet/NuGet.Config" | ||||
|       ], | ||||
|       "originalTargetFrameworks": [ | ||||
|         "net9.0" | ||||
|       ], | ||||
|       "sources": { | ||||
|         "https://api.nuget.org/v3/index.json": {} | ||||
|       }, | ||||
|       "frameworks": { | ||||
|         "net9.0": { | ||||
|           "targetAlias": "net9.0", | ||||
|           "projectReferences": {} | ||||
|         } | ||||
|       }, | ||||
|       "warningProperties": { | ||||
|         "warnAsError": [ | ||||
|           "NU1605" | ||||
|         ] | ||||
|       }, | ||||
|       "restoreAuditProperties": { | ||||
|         "enableAudit": "true", | ||||
|         "auditLevel": "low", | ||||
|         "auditMode": "direct" | ||||
|       }, | ||||
|       "SdkAnalysisLevel": "9.0.100" | ||||
|     }, | ||||
|     "frameworks": { | ||||
|       "net9.0": { | ||||
|         "targetAlias": "net9.0", | ||||
|         "imports": [ | ||||
|           "net461", | ||||
|           "net462", | ||||
|           "net47", | ||||
|           "net471", | ||||
|           "net472", | ||||
|           "net48", | ||||
|           "net481" | ||||
|         ], | ||||
|         "assetTargetFallback": true, | ||||
|         "warn": true, | ||||
|         "downloadDependencies": [ | ||||
|           { | ||||
|             "name": "Microsoft.AspNetCore.App.Ref", | ||||
|             "version": "[9.0.9, 9.0.9]" | ||||
|           } | ||||
|         ], | ||||
|         "frameworkReferences": { | ||||
|           "Microsoft.NETCore.App": { | ||||
|             "privateAssets": "all" | ||||
|           } | ||||
|         }, | ||||
|         "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.110/PortableRuntimeIdentifierGraph.json" | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| } | ||||
							
								
								
									
										10
									
								
								labs/lab7/Igra/obj/project.nuget.cache
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								labs/lab7/Igra/obj/project.nuget.cache
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | ||||
| { | ||||
|   "version": 2, | ||||
|   "dgSpecHash": "DiS1VZPvPF4=", | ||||
|   "success": true, | ||||
|   "projectFilePath": "/home/nik/oop/labs/lab7/Igra/Igra.csproj", | ||||
|   "expectedPackageFiles": [ | ||||
|     "/home/nik/.nuget/packages/microsoft.aspnetcore.app.ref/9.0.9/microsoft.aspnetcore.app.ref.9.0.9.nupkg.sha512" | ||||
|   ], | ||||
|   "logs": [] | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 nik
					nik