parent
7640df5cc8
commit
fedfec2a4c
@ -0,0 +1,66 @@
|
|||||||
|
*.o
|
||||||
|
*.a
|
||||||
|
*.dSYM
|
||||||
|
*.csv
|
||||||
|
*.out
|
||||||
|
*.png
|
||||||
|
*.so
|
||||||
|
*.exe
|
||||||
|
*.dll
|
||||||
|
*.lib
|
||||||
|
*.dylib
|
||||||
|
*.pyc
|
||||||
|
mnist/
|
||||||
|
data/
|
||||||
|
caffe/
|
||||||
|
grasp/
|
||||||
|
images/
|
||||||
|
opencv/
|
||||||
|
convnet/
|
||||||
|
decaf/
|
||||||
|
submission/
|
||||||
|
cfg/
|
||||||
|
temp/
|
||||||
|
build/darknet/*
|
||||||
|
build_*/
|
||||||
|
ninja/
|
||||||
|
ninja.zip
|
||||||
|
vcpkg_installed/
|
||||||
|
!build/darknet/YoloWrapper.cs
|
||||||
|
.fuse*
|
||||||
|
*.weights
|
||||||
|
build/*.cmake
|
||||||
|
build/*.ninja
|
||||||
|
build/*.txt
|
||||||
|
build/*.json
|
||||||
|
build/CMakeFiles/
|
||||||
|
build/detect_cuda_compute_capabilities.cu
|
||||||
|
build/.ninja_deps
|
||||||
|
build/.ninja_log
|
||||||
|
build/Makefile
|
||||||
|
*/vcpkg-manifest-install.log
|
||||||
|
build.log
|
||||||
|
__pycache__/
|
||||||
|
|
||||||
|
# OS Generated #
|
||||||
|
.DS_Store*
|
||||||
|
ehthumbs.db
|
||||||
|
Icon?
|
||||||
|
Thumbs.db
|
||||||
|
*.swp
|
||||||
|
|
||||||
|
# IDE generated #
|
||||||
|
.vs/
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
# Managed by CMake
|
||||||
|
src/version.h
|
||||||
|
|
||||||
|
# Build artifacts
|
||||||
|
lib/
|
||||||
|
share/
|
||||||
|
include/darknet/
|
||||||
|
uselib
|
||||||
|
uselib_track
|
||||||
|
darknet
|
||||||
|
vcpkg/
|
@ -0,0 +1,33 @@
|
|||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
|
||||||
|
namespace Sleopok.App.Controllers
|
||||||
|
{
|
||||||
|
[ApiController]
|
||||||
|
[Route("[controller]")]
|
||||||
|
public class WeatherForecastController : ControllerBase
|
||||||
|
{
|
||||||
|
private static readonly string[] Summaries = new[]
|
||||||
|
{
|
||||||
|
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
|
||||||
|
};
|
||||||
|
|
||||||
|
private readonly ILogger<WeatherForecastController> _logger;
|
||||||
|
|
||||||
|
public WeatherForecastController(ILogger<WeatherForecastController> logger)
|
||||||
|
{
|
||||||
|
_logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet]
|
||||||
|
public IEnumerable<WeatherForecast> Get()
|
||||||
|
{
|
||||||
|
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
|
||||||
|
{
|
||||||
|
Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
|
||||||
|
TemperatureC = Random.Shared.Next(-20, 55),
|
||||||
|
Summary = Summaries[Random.Shared.Next(Summaries.Length)]
|
||||||
|
})
|
||||||
|
.ToArray();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
namespace Sleopok.App
|
||||||
|
{
|
||||||
|
public class Program
|
||||||
|
{
|
||||||
|
public static void Main(string[] args)
|
||||||
|
{
|
||||||
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
|
// Add services to the container.
|
||||||
|
|
||||||
|
builder.Services.AddControllers();
|
||||||
|
|
||||||
|
var app = builder.Build();
|
||||||
|
|
||||||
|
// Configure the HTTP request pipeline.
|
||||||
|
|
||||||
|
app.UseAuthorization();
|
||||||
|
|
||||||
|
|
||||||
|
app.MapControllers();
|
||||||
|
|
||||||
|
app.Run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Sleopok.Engine\Sleopok.Engine.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
@ -0,0 +1,6 @@
|
|||||||
|
@Sleopok.App_HostAddress = http://localhost:5147
|
||||||
|
|
||||||
|
GET {{Sleopok.App_HostAddress}}/weatherforecast/
|
||||||
|
Accept: application/json
|
||||||
|
|
||||||
|
###
|
@ -0,0 +1,13 @@
|
|||||||
|
namespace Sleopok.App
|
||||||
|
{
|
||||||
|
public class WeatherForecast
|
||||||
|
{
|
||||||
|
public DateOnly Date { get; set; }
|
||||||
|
|
||||||
|
public int TemperatureC { get; set; }
|
||||||
|
|
||||||
|
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
||||||
|
|
||||||
|
public string? Summary { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v8.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v8.0": {
|
||||||
|
"Sleopok.App/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"Sleopok.App.dll": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Sleopok.App/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net8.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "8.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.AspNetCore.App",
|
||||||
|
"version": "8.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"System.GC.Server": true,
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 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("Sleopok.App")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7640df5cc809fe8cc6f1d9b9a6217212fefaed1f")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Sleopok.App")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Sleopok.App")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
d8b06ec6e68c19fe6706483b922cb556bc7a89a968b82d3f71aad430a8fb84fb
|
@ -0,0 +1,19 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net8.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb = true
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = Sleopok.App
|
||||||
|
build_property.RootNamespace = Sleopok.App
|
||||||
|
build_property.ProjectDir = G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.RazorLangVersion = 8.0
|
||||||
|
build_property.SupportLocalizedComponentNames =
|
||||||
|
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||||
|
build_property.MSBuildProjectDirectory = G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App
|
||||||
|
build_property._RazorSourceGeneratorDebug =
|
@ -0,0 +1,17 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::Microsoft.AspNetCore.Builder;
|
||||||
|
global using global::Microsoft.AspNetCore.Hosting;
|
||||||
|
global using global::Microsoft.AspNetCore.Http;
|
||||||
|
global using global::Microsoft.AspNetCore.Routing;
|
||||||
|
global using global::Microsoft.Extensions.Configuration;
|
||||||
|
global using global::Microsoft.Extensions.DependencyInjection;
|
||||||
|
global using global::Microsoft.Extensions.Hosting;
|
||||||
|
global using global::Microsoft.Extensions.Logging;
|
||||||
|
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.Net.Http.Json;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
a2e308b4ff36099adb277b73d1c52b3408af94527cd7ccc25e5a636640e0c29e
|
@ -0,0 +1,25 @@
|
|||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\bin\Debug\net8.0\appsettings.Development.json
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\bin\Debug\net8.0\appsettings.json
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\bin\Debug\net8.0\Sleopok.App.exe
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\bin\Debug\net8.0\Sleopok.App.deps.json
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\bin\Debug\net8.0\Sleopok.App.runtimeconfig.json
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\bin\Debug\net8.0\Sleopok.App.dll
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\bin\Debug\net8.0\Sleopok.App.pdb
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\Sleopok.App.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\Sleopok.App.AssemblyInfoInputs.cache
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\Sleopok.App.AssemblyInfo.cs
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\Sleopok.App.csproj.CoreCompileInputs.cache
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\Sleopok.App.MvcApplicationPartsAssemblyInfo.cache
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\staticwebassets.build.json
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\staticwebassets.development.json
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\staticwebassets\msbuild.Sleopok.App.Microsoft.AspNetCore.StaticWebAssets.props
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\staticwebassets\msbuild.build.Sleopok.App.props
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.Sleopok.App.props
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.Sleopok.App.props
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\staticwebassets.pack.json
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\scopedcss\bundle\Sleopok.App.styles.css
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\Sleopok.App.dll
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\refint\Sleopok.App.dll
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\Sleopok.App.pdb
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\Sleopok.App.genruntimeconfig.cache
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.App\obj\Debug\net8.0\ref\Sleopok.App.dll
|
@ -0,0 +1 @@
|
|||||||
|
1497d687baca6732f9a81855a6c6e48df6dff34652a14f516a07871b8f820803
|
Binary file not shown.
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"Version": 1,
|
||||||
|
"Hash": "hhlSA0HX0QJwsuEKchBzzVjIOfE9sM0jEaOGPJcDjCs=",
|
||||||
|
"Source": "Sleopok.App",
|
||||||
|
"BasePath": "_content/Sleopok.App",
|
||||||
|
"Mode": "Default",
|
||||||
|
"ManifestType": "Build",
|
||||||
|
"ReferencedProjectsConfiguration": [],
|
||||||
|
"DiscoveryPatterns": [],
|
||||||
|
"Assets": []
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
<Project>
|
||||||
|
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
||||||
|
</Project>
|
@ -0,0 +1,3 @@
|
|||||||
|
<Project>
|
||||||
|
<Import Project="..\build\Sleopok.App.props" />
|
||||||
|
</Project>
|
@ -0,0 +1,3 @@
|
|||||||
|
<Project>
|
||||||
|
<Import Project="..\buildMultiTargeting\Sleopok.App.props" />
|
||||||
|
</Project>
|
@ -0,0 +1,151 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.App\\Sleopok.App.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.App\\Sleopok.App.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.App\\Sleopok.App.csproj",
|
||||||
|
"projectName": "Sleopok.App",
|
||||||
|
"projectPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.App\\Sleopok.App.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Ogoun\\.nuget\\packages\\",
|
||||||
|
"outputPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.App\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Ogoun\\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": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {
|
||||||
|
"G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj": {
|
||||||
|
"projectPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.AspNetCore.App": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj",
|
||||||
|
"projectName": "Sleopok.Engine",
|
||||||
|
"projectPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Ogoun\\.nuget\\packages\\",
|
||||||
|
"outputPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Ogoun\\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": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"dependencies": {
|
||||||
|
"ZeroLevel": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[3.4.0.8, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -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\Ogoun\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.1</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\Ogoun\.nuget\packages\" />
|
||||||
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
@ -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" />
|
@ -0,0 +1,139 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net8.0": {
|
||||||
|
"ZeroLevel/3.4.0.8": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/net6.0/ZeroLevel.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/ZeroLevel.dll": {}
|
||||||
|
},
|
||||||
|
"contentFiles": {
|
||||||
|
"contentFiles/any/any/_._": {
|
||||||
|
"buildAction": "None",
|
||||||
|
"codeLanguage": "any",
|
||||||
|
"copyToOutput": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Sleopok.Engine/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"framework": ".NETCoreApp,Version=v8.0",
|
||||||
|
"dependencies": {
|
||||||
|
"ZeroLevel": "3.4.0.8"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"bin/placeholder/Sleopok.Engine.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"bin/placeholder/Sleopok.Engine.dll": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"ZeroLevel/3.4.0.8": {
|
||||||
|
"sha512": "zPyHKeeX9M96BPqXcS+MKnUbF1EWPUusz4i2Ij9UiF+HTU85MtCKW3MQZx2O6vVtRtRbD20OoKGwn7/vvXFTgw==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "zerolevel/3.4.0.8",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"content/zero.ico",
|
||||||
|
"contentFiles/any/net6.0/zero.ico",
|
||||||
|
"lib/net6.0/ZeroLevel.dll",
|
||||||
|
"zero.png",
|
||||||
|
"zerolevel.3.4.0.8.nupkg.sha512",
|
||||||
|
"zerolevel.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Sleopok.Engine/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"path": "../Sleopok.Engine/Sleopok.Engine.csproj",
|
||||||
|
"msbuildProject": "../Sleopok.Engine/Sleopok.Engine.csproj"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net8.0": [
|
||||||
|
"Sleopok.Engine >= 1.0.0"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"C:\\Users\\Ogoun\\.nuget\\packages\\": {},
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.App\\Sleopok.App.csproj",
|
||||||
|
"projectName": "Sleopok.App",
|
||||||
|
"projectPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.App\\Sleopok.App.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Ogoun\\.nuget\\packages\\",
|
||||||
|
"outputPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.App\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Ogoun\\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": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {
|
||||||
|
"G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj": {
|
||||||
|
"projectPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.AspNetCore.App": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "QszXmS4jTB4/g81c5S0k5kmgKnYAstc+y85p97SGB7JZRRsitubhahL4kk4pmvMhw3dptCd7nB0TUequ444V3w==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.App\\Sleopok.App.csproj",
|
||||||
|
"expectedPackageFiles": [
|
||||||
|
"C:\\Users\\Ogoun\\.nuget\\packages\\zerolevel\\3.4.0.8\\zerolevel.3.4.0.8.nupkg.sha512"
|
||||||
|
],
|
||||||
|
"logs": []
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v8.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v8.0": {
|
||||||
|
"Sleopok.Engine/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"Sleopok.Engine.dll": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Sleopok.Engine/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 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("Sleopok.Engine")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7640df5cc809fe8cc6f1d9b9a6217212fefaed1f")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Sleopok.Engine")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Sleopok.Engine")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
f426e6a434a2fc8387e3d537276d02f6cf81d1a9ad7d6c180ee6ed07027c56e6
|
@ -0,0 +1,13 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net8.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 = Sleopok.Engine
|
||||||
|
build_property.ProjectDir = G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Engine\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
@ -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;
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
5da1357c9eefef2d7ad7c9bb0c603c0f7ef9b42dc2cecea34ee721a98d798d52
|
@ -0,0 +1,11 @@
|
|||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Engine\bin\Debug\net8.0\Sleopok.Engine.deps.json
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Engine\bin\Debug\net8.0\Sleopok.Engine.dll
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Engine\bin\Debug\net8.0\Sleopok.Engine.pdb
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Engine\obj\Debug\net8.0\Sleopok.Engine.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Engine\obj\Debug\net8.0\Sleopok.Engine.AssemblyInfoInputs.cache
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Engine\obj\Debug\net8.0\Sleopok.Engine.AssemblyInfo.cs
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Engine\obj\Debug\net8.0\Sleopok.Engine.csproj.CoreCompileInputs.cache
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Engine\obj\Debug\net8.0\Sleopok.Engine.dll
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Engine\obj\Debug\net8.0\refint\Sleopok.Engine.dll
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Engine\obj\Debug\net8.0\Sleopok.Engine.pdb
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Engine\obj\Debug\net8.0\ref\Sleopok.Engine.dll
|
Binary file not shown.
@ -0,0 +1,79 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj",
|
||||||
|
"projectName": "Sleopok.Engine",
|
||||||
|
"projectPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Ogoun\\.nuget\\packages\\",
|
||||||
|
"outputPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Ogoun\\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": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"dependencies": {
|
||||||
|
"ZeroLevel": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[3.4.0.8, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
<?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\Ogoun\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.1</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\Ogoun\.nuget\packages\" />
|
||||||
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<Content Include="$(NuGetPackageRoot)zerolevel\3.4.0.8\contentFiles\any\net6.0\zero.ico" Condition="Exists('$(NuGetPackageRoot)zerolevel\3.4.0.8\contentFiles\any\net6.0\zero.ico')">
|
||||||
|
<NuGetPackageId>ZeroLevel</NuGetPackageId>
|
||||||
|
<NuGetPackageVersion>3.4.0.8</NuGetPackageVersion>
|
||||||
|
<NuGetItemType>Content</NuGetItemType>
|
||||||
|
<Pack>false</Pack>
|
||||||
|
<Private>False</Private>
|
||||||
|
<Link>zero.ico</Link>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
@ -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" />
|
@ -0,0 +1,120 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net8.0": {
|
||||||
|
"ZeroLevel/3.4.0.8": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/net6.0/ZeroLevel.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/ZeroLevel.dll": {}
|
||||||
|
},
|
||||||
|
"contentFiles": {
|
||||||
|
"contentFiles/any/net6.0/zero.ico": {
|
||||||
|
"buildAction": "Content",
|
||||||
|
"codeLanguage": "any",
|
||||||
|
"copyToOutput": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"ZeroLevel/3.4.0.8": {
|
||||||
|
"sha512": "zPyHKeeX9M96BPqXcS+MKnUbF1EWPUusz4i2Ij9UiF+HTU85MtCKW3MQZx2O6vVtRtRbD20OoKGwn7/vvXFTgw==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "zerolevel/3.4.0.8",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"content/zero.ico",
|
||||||
|
"contentFiles/any/net6.0/zero.ico",
|
||||||
|
"lib/net6.0/ZeroLevel.dll",
|
||||||
|
"zero.png",
|
||||||
|
"zerolevel.3.4.0.8.nupkg.sha512",
|
||||||
|
"zerolevel.nuspec"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net8.0": [
|
||||||
|
"ZeroLevel >= 3.4.0.8"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"C:\\Users\\Ogoun\\.nuget\\packages\\": {},
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj",
|
||||||
|
"projectName": "Sleopok.Engine",
|
||||||
|
"projectPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Ogoun\\.nuget\\packages\\",
|
||||||
|
"outputPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Ogoun\\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": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"dependencies": {
|
||||||
|
"ZeroLevel": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[3.4.0.8, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "880PzxH53Ahr72uy6Pp63ie2s9+KLoxGS6Fer5K7TH4n18bLP8oxr0T3yuxBfSUzk6KjY9S0DRwHSzjW2hcO9g==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj",
|
||||||
|
"expectedPackageFiles": [
|
||||||
|
"C:\\Users\\Ogoun\\.nuget\\packages\\zerolevel\\3.4.0.8\\zerolevel.3.4.0.8.nupkg.sha512"
|
||||||
|
],
|
||||||
|
"logs": []
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v8.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v8.0": {
|
||||||
|
"Sleopok.Tests/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"Sleopok.Tests.dll": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Sleopok.Tests/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net8.0",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "8.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=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 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("Sleopok.Tests")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7640df5cc809fe8cc6f1d9b9a6217212fefaed1f")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Sleopok.Tests")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Sleopok.Tests")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
d17f9dca864c4d8df026d969f5b6ea99b9c64210522de05cbf223c73c87241f4
|
@ -0,0 +1,13 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net8.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 = Sleopok.Tests
|
||||||
|
build_property.ProjectDir = G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
@ -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;
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
41452b14e8c8ea81ab536b55333608fe5ea90183b89453bd74806e2add53c90c
|
@ -0,0 +1,14 @@
|
|||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\bin\Debug\net8.0\Sleopok.Tests.exe
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\bin\Debug\net8.0\Sleopok.Tests.deps.json
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\bin\Debug\net8.0\Sleopok.Tests.runtimeconfig.json
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\bin\Debug\net8.0\Sleopok.Tests.dll
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\bin\Debug\net8.0\Sleopok.Tests.pdb
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\obj\Debug\net8.0\Sleopok.Tests.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\obj\Debug\net8.0\Sleopok.Tests.AssemblyInfoInputs.cache
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\obj\Debug\net8.0\Sleopok.Tests.AssemblyInfo.cs
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\obj\Debug\net8.0\Sleopok.Tests.csproj.CoreCompileInputs.cache
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\obj\Debug\net8.0\Sleopok.Tests.dll
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\obj\Debug\net8.0\refint\Sleopok.Tests.dll
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\obj\Debug\net8.0\Sleopok.Tests.pdb
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\obj\Debug\net8.0\Sleopok.Tests.genruntimeconfig.cache
|
||||||
|
G:\Documents\GitHub\sleopok\src\Sleopok\Sleopok.Tests\obj\Debug\net8.0\ref\Sleopok.Tests.dll
|
@ -0,0 +1 @@
|
|||||||
|
abc338fc03fe2939eb8e98c67a8a6dbeadd705cca57311ea058dc1226ecac923
|
Binary file not shown.
@ -0,0 +1,148 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Tests\\Sleopok.Tests.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj",
|
||||||
|
"projectName": "Sleopok.Engine",
|
||||||
|
"projectPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Ogoun\\.nuget\\packages\\",
|
||||||
|
"outputPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Ogoun\\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": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"dependencies": {
|
||||||
|
"ZeroLevel": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[3.4.0.8, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Tests\\Sleopok.Tests.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Tests\\Sleopok.Tests.csproj",
|
||||||
|
"projectName": "Sleopok.Tests",
|
||||||
|
"projectPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Tests\\Sleopok.Tests.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Ogoun\\.nuget\\packages\\",
|
||||||
|
"outputPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Tests\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Ogoun\\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": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {
|
||||||
|
"G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj": {
|
||||||
|
"projectPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -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\Ogoun\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.1</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\Ogoun\.nuget\packages\" />
|
||||||
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
@ -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" />
|
@ -0,0 +1,136 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net8.0": {
|
||||||
|
"ZeroLevel/3.4.0.8": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/net6.0/ZeroLevel.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/ZeroLevel.dll": {}
|
||||||
|
},
|
||||||
|
"contentFiles": {
|
||||||
|
"contentFiles/any/any/_._": {
|
||||||
|
"buildAction": "None",
|
||||||
|
"codeLanguage": "any",
|
||||||
|
"copyToOutput": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Sleopok.Engine/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"framework": ".NETCoreApp,Version=v8.0",
|
||||||
|
"dependencies": {
|
||||||
|
"ZeroLevel": "3.4.0.8"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"bin/placeholder/Sleopok.Engine.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"bin/placeholder/Sleopok.Engine.dll": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"ZeroLevel/3.4.0.8": {
|
||||||
|
"sha512": "zPyHKeeX9M96BPqXcS+MKnUbF1EWPUusz4i2Ij9UiF+HTU85MtCKW3MQZx2O6vVtRtRbD20OoKGwn7/vvXFTgw==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "zerolevel/3.4.0.8",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"content/zero.ico",
|
||||||
|
"contentFiles/any/net6.0/zero.ico",
|
||||||
|
"lib/net6.0/ZeroLevel.dll",
|
||||||
|
"zero.png",
|
||||||
|
"zerolevel.3.4.0.8.nupkg.sha512",
|
||||||
|
"zerolevel.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Sleopok.Engine/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"path": "../Sleopok.Engine/Sleopok.Engine.csproj",
|
||||||
|
"msbuildProject": "../Sleopok.Engine/Sleopok.Engine.csproj"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net8.0": [
|
||||||
|
"Sleopok.Engine >= 1.0.0"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"C:\\Users\\Ogoun\\.nuget\\packages\\": {},
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Tests\\Sleopok.Tests.csproj",
|
||||||
|
"projectName": "Sleopok.Tests",
|
||||||
|
"projectPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Tests\\Sleopok.Tests.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Ogoun\\.nuget\\packages\\",
|
||||||
|
"outputPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Tests\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Ogoun\\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": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {
|
||||||
|
"G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj": {
|
||||||
|
"projectPath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Engine\\Sleopok.Engine.csproj"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "mNch86pkkquYXfThFypfi+NUSdjLFWRy/cWmm5ynS4AfjyGh5yLz4bEpOhkRNzjA0l4q7HWTuyu2fAYV2lockw==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "G:\\Documents\\GitHub\\sleopok\\src\\Sleopok\\Sleopok.Tests\\Sleopok.Tests.csproj",
|
||||||
|
"expectedPackageFiles": [
|
||||||
|
"C:\\Users\\Ogoun\\.nuget\\packages\\zerolevel\\3.4.0.8\\zerolevel.3.4.0.8.nupkg.sha512"
|
||||||
|
],
|
||||||
|
"logs": []
|
||||||
|
}
|
Loading…
Reference in new issue