complete project with 4x4 table function
This commit is contained in:
parent
ae3370ac44
commit
9cb42200f3
130 changed files with 3706 additions and 2 deletions
32
Chaser/ChaserLibrary/Beast.cs
Normal file
32
Chaser/ChaserLibrary/Beast.cs
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ChaserLibrary
|
||||
{
|
||||
public class Beast : Entity
|
||||
{
|
||||
private Player PlayerToKill;
|
||||
|
||||
public Beast(double x, double) : base(x, y)
|
||||
{
|
||||
|
||||
}
|
||||
public void ChangeVelocity()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public override void Update()
|
||||
{
|
||||
ChangeVelocity();
|
||||
Move();
|
||||
}
|
||||
public override void Draw()
|
||||
{
|
||||
Painter?.PaintCross(X, Y);
|
||||
}
|
||||
}
|
||||
}
|
||||
13
Chaser/ChaserLibrary/ChaserLibrary.csproj
Normal file
13
Chaser/ChaserLibrary/ChaserLibrary.csproj
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="System.Drawing.Common" Version="9.0.9" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
25
Chaser/ChaserLibrary/Entity.cs
Normal file
25
Chaser/ChaserLibrary/Entity.cs
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
namespace ChaserLibrary
|
||||
{
|
||||
public abstract class Entity
|
||||
{
|
||||
|
||||
public IPaintable? Painter { get; set; }
|
||||
public double X { get; private set; }
|
||||
public double Y { get; private set; }
|
||||
public double VelocityX { get; set; }
|
||||
public double VelocityY { get; set; }
|
||||
|
||||
public Entity(double x, double y)
|
||||
{
|
||||
X = x;
|
||||
Y = y;
|
||||
}
|
||||
public void Move()
|
||||
{
|
||||
X += VelocityX;
|
||||
Y += VelocityY;
|
||||
}
|
||||
public abstract void Update();
|
||||
public abstract void Draw();
|
||||
}
|
||||
}
|
||||
16
Chaser/ChaserLibrary/IPaintable.cs
Normal file
16
Chaser/ChaserLibrary/IPaintable.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ChaserLibrary
|
||||
{
|
||||
public interface IPaintable
|
||||
{
|
||||
public void PaintCircle(double X, double Y, int radius);
|
||||
|
||||
public void PaintCross(double X, double Y);
|
||||
|
||||
}
|
||||
}
|
||||
34
Chaser/ChaserLibrary/PainterWinform.cs
Normal file
34
Chaser/ChaserLibrary/PainterWinform.cs
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ChaserLibrary
|
||||
{
|
||||
public class PainterWinform : IPaintable
|
||||
{
|
||||
Graphics PainterG { get; set; }
|
||||
static Pen PenG { get; set; } = new Pen(Color.Black);
|
||||
|
||||
public PainterWinform(Graphics painterG)
|
||||
{
|
||||
PainterG = painterG;
|
||||
}
|
||||
|
||||
public void PaintCircle(double X, double Y, int radius)
|
||||
{
|
||||
PainterG.DrawEllipse(PenG, new Rectangle((int) X, (int) Y, radius, radius));
|
||||
}
|
||||
|
||||
public void PaintCross(double X, double Y)
|
||||
{
|
||||
int x = (int) X;
|
||||
int y = (int) Y;
|
||||
PainterG.DrawLine(PenG, x - 5, y - 5, x + 5, y + 5);
|
||||
PainterG.DrawLine(PenG, x + 5, y - 5, x - 5, y + 5);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
22
Chaser/ChaserLibrary/Player.cs
Normal file
22
Chaser/ChaserLibrary/Player.cs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ChaserLibrary
|
||||
{
|
||||
public class Player : Entity
|
||||
{
|
||||
public override void Update()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void Draw()
|
||||
{
|
||||
Painter?.PaintCircle(X, Y, 10);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,94 @@
|
|||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"R:\\PRG\\4E\\Chaser\\ChaserLibrary\\ChaserLibrary.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"R:\\PRG\\4E\\Chaser\\ChaserLibrary\\ChaserLibrary.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "R:\\PRG\\4E\\Chaser\\ChaserLibrary\\ChaserLibrary.csproj",
|
||||
"projectName": "ChaserLibrary",
|
||||
"projectPath": "R:\\PRG\\4E\\Chaser\\ChaserLibrary\\ChaserLibrary.csproj",
|
||||
"packagesPath": "C:\\Users\\dominik.zatko\\.nuget\\packages\\",
|
||||
"outputPath": "R:\\PRG\\4E\\Chaser\\ChaserLibrary\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\dominik.zatko\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "9.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"dependencies": {
|
||||
"System.Drawing.Common": {
|
||||
"target": "Package",
|
||||
"version": "[9.0.9, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Ref",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App.Ref",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
16
Chaser/ChaserLibrary/obj/ChaserLibrary.csproj.nuget.g.props
Normal file
16
Chaser/ChaserLibrary/obj/ChaserLibrary.csproj.nuget.g.props
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?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)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\dominik.zatko\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.3</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\dominik.zatko\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)system.drawing.common\9.0.9\buildTransitive\netcoreapp2.0\System.Drawing.Common.targets" Condition="Exists('$(NuGetPackageRoot)system.drawing.common\9.0.9\buildTransitive\netcoreapp2.0\System.Drawing.Common.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Tento kód byl generován nástrojem.
|
||||
// Verze modulu runtime:4.0.30319.42000
|
||||
//
|
||||
// Změny tohoto souboru mohou způsobit nesprávné chování a budou ztraceny,
|
||||
// dojde-li k novému generování kódu.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("ChaserLibrary")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("ChaserLibrary")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("ChaserLibrary")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Vygenerované třídou WriteCodeFragment nástroje MSBuild
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
07bbe709d57155b0bbdd9e387974ccc0dbab9cce5f1ad7ffa4a5254f7eaeb34d
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
is_global = true
|
||||
build_property.TargetFramework = net6.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = ChaserLibrary
|
||||
build_property.ProjectDir = R:\PRG\4E\Chaser\ChaserLibrary\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 6.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
|
|
@ -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
Chaser/ChaserLibrary/obj/Debug/net6.0/ChaserLibrary.assets.cache
Normal file
BIN
Chaser/ChaserLibrary/obj/Debug/net6.0/ChaserLibrary.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
162
Chaser/ChaserLibrary/obj/project.assets.json
Normal file
162
Chaser/ChaserLibrary/obj/project.assets.json
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net6.0": {
|
||||
"System.Drawing.Common/9.0.9": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/System.Drawing.Common.dll": {
|
||||
"related": ".pdb;.xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Drawing.Common.dll": {
|
||||
"related": ".pdb;.xml"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/netcoreapp2.0/System.Drawing.Common.targets": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"System.Drawing.Common/9.0.9": {
|
||||
"sha512": "BS17VFUf4RS9G/JoA6br+79jAjyTj0UaomgXCVNJJn9EWIvmHkn0ZCqAynxwloO00yPIvWgXBF9SBjcM06bl1w==",
|
||||
"type": "package",
|
||||
"path": "system.drawing.common/9.0.9",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"PACKAGE.md",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"buildTransitive/net461/System.Drawing.Common.targets",
|
||||
"buildTransitive/net462/_._",
|
||||
"buildTransitive/net8.0/_._",
|
||||
"buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
|
||||
"lib/MonoAndroid10/_._",
|
||||
"lib/MonoTouch10/_._",
|
||||
"lib/net462/System.Drawing.Common.dll",
|
||||
"lib/net462/System.Drawing.Common.pdb",
|
||||
"lib/net462/System.Drawing.Common.xml",
|
||||
"lib/net8.0/System.Drawing.Common.dll",
|
||||
"lib/net8.0/System.Drawing.Common.pdb",
|
||||
"lib/net8.0/System.Drawing.Common.xml",
|
||||
"lib/net8.0/System.Private.Windows.Core.dll",
|
||||
"lib/net8.0/System.Private.Windows.Core.xml",
|
||||
"lib/net9.0/System.Drawing.Common.dll",
|
||||
"lib/net9.0/System.Drawing.Common.pdb",
|
||||
"lib/net9.0/System.Drawing.Common.xml",
|
||||
"lib/net9.0/System.Private.Windows.Core.dll",
|
||||
"lib/net9.0/System.Private.Windows.Core.xml",
|
||||
"lib/netstandard2.0/System.Drawing.Common.dll",
|
||||
"lib/netstandard2.0/System.Drawing.Common.pdb",
|
||||
"lib/netstandard2.0/System.Drawing.Common.xml",
|
||||
"lib/xamarinios10/_._",
|
||||
"lib/xamarinmac20/_._",
|
||||
"lib/xamarintvos10/_._",
|
||||
"lib/xamarinwatchos10/_._",
|
||||
"system.drawing.common.9.0.9.nupkg.sha512",
|
||||
"system.drawing.common.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
"net6.0": [
|
||||
"System.Drawing.Common >= 9.0.9"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\dominik.zatko\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "R:\\PRG\\4E\\Chaser\\ChaserLibrary\\ChaserLibrary.csproj",
|
||||
"projectName": "ChaserLibrary",
|
||||
"projectPath": "R:\\PRG\\4E\\Chaser\\ChaserLibrary\\ChaserLibrary.csproj",
|
||||
"packagesPath": "C:\\Users\\dominik.zatko\\.nuget\\packages\\",
|
||||
"outputPath": "R:\\PRG\\4E\\Chaser\\ChaserLibrary\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\dominik.zatko\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "9.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"dependencies": {
|
||||
"System.Drawing.Common": {
|
||||
"target": "Package",
|
||||
"version": "[9.0.9, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Ref",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App.Ref",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
13
Chaser/ChaserLibrary/obj/project.nuget.cache
Normal file
13
Chaser/ChaserLibrary/obj/project.nuget.cache
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "dJuFmX9oU5k=",
|
||||
"success": true,
|
||||
"projectFilePath": "R:\\PRG\\4E\\Chaser\\ChaserLibrary\\ChaserLibrary.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\dominik.zatko\\.nuget\\packages\\system.drawing.common\\9.0.9\\system.drawing.common.9.0.9.nupkg.sha512",
|
||||
"C:\\Users\\dominik.zatko\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\6.0.36\\microsoft.windowsdesktop.app.ref.6.0.36.nupkg.sha512",
|
||||
"C:\\Users\\dominik.zatko\\.nuget\\packages\\microsoft.netcore.app.ref\\6.0.36\\microsoft.netcore.app.ref.6.0.36.nupkg.sha512",
|
||||
"C:\\Users\\dominik.zatko\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\6.0.36\\microsoft.aspnetcore.app.ref.6.0.36.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue