Reworked MloFinder
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
**/.dockerignore
|
||||
**/.env
|
||||
**/.git
|
||||
**/.gitignore
|
||||
**/.project
|
||||
**/.settings
|
||||
**/.toolstarget
|
||||
**/.vs
|
||||
**/.vscode
|
||||
**/.idea
|
||||
**/*.*proj.user
|
||||
**/*.dbmdl
|
||||
**/*.jfm
|
||||
**/azds.yaml
|
||||
**/bin
|
||||
**/charts
|
||||
**/docker-compose*
|
||||
**/Dockerfile*
|
||||
**/node_modules
|
||||
**/npm-debug.log
|
||||
**/obj
|
||||
**/secrets.dev.yaml
|
||||
**/values.dev.yaml
|
||||
LICENSE
|
||||
README.md
|
||||
@@ -1,46 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using CodeWalker.GameFiles;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace MloFinder.Controllers {
|
||||
[ApiController]
|
||||
public class FinderController : Controller {
|
||||
|
||||
private readonly ILogger<FinderController> _logger;
|
||||
|
||||
public FinderController(ILogger<FinderController> logger) => _logger = logger;
|
||||
|
||||
[HttpPost]
|
||||
[Route("unpack")]
|
||||
public async Task<IActionResult> GetLocation([FromQuery] string name) {
|
||||
try {
|
||||
if (!name.EndsWith("ymap"))
|
||||
return Conflict("This api only accepts ymaps!");
|
||||
|
||||
using var stream = new MemoryStream();
|
||||
await Request.Body.CopyToAsync(stream);
|
||||
byte[] data = stream.ToArray();
|
||||
|
||||
var existingFiles = new List<RpfFileEntry>();
|
||||
Program.Rpf.ScanStructure(log => { }, log => _logger.LogError(log));
|
||||
Program.Rpf.GetFiles(Program.Rpf.Root, existingFiles, false);
|
||||
if (existingFiles.Any(f => f.Name == name))
|
||||
RpfFile.DeleteEntry(existingFiles.SingleOrDefault(f => f.Name == name));
|
||||
var file = RpfFile.CreateFile(Program.Rpf.Root, name, data);
|
||||
data = Program.Rpf.ExtractFile(file);
|
||||
|
||||
var xml = MetaXml.GetXml(file, data, out name);
|
||||
return Ok(xml);
|
||||
}
|
||||
catch (Exception e) {
|
||||
_logger.LogError(e, "Error tying to process file");
|
||||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS base
|
||||
WORKDIR /app
|
||||
EXPOSE 80
|
||||
EXPOSE 443
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
|
||||
WORKDIR /src
|
||||
COPY ["MloFinder/MloFinder.csproj", "MloFinder/"]
|
||||
RUN dotnet restore "MloFinder/MloFinder.csproj"
|
||||
COPY . .
|
||||
WORKDIR "/src/MloFinder"
|
||||
RUN dotnet build "MloFinder.csproj" -c Release -o /app/build
|
||||
|
||||
FROM build AS publish
|
||||
RUN dotnet publish "MloFinder.csproj" -c Release -o /app/publish
|
||||
|
||||
FROM base AS final
|
||||
WORKDIR /app
|
||||
COPY --from=publish /app/publish .
|
||||
ENTRYPOINT ["dotnet", "MloFinder.dll"]
|
||||
76
MloFinder/Log.cs
Normal file
76
MloFinder/Log.cs
Normal file
@@ -0,0 +1,76 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace CarCombiner {
|
||||
public static class Log {
|
||||
|
||||
public static bool EnableLogging { get; set; } = true;
|
||||
|
||||
private static bool OpenWrite = false;
|
||||
|
||||
private static void WriteScaffolding(string text, ConsoleColor color, TextWriter stream) {
|
||||
Console.ForegroundColor = ConsoleColor.Gray;
|
||||
Console.Write("[");
|
||||
Console.ForegroundColor = color;
|
||||
Console.Write(text);
|
||||
Console.ForegroundColor = ConsoleColor.Gray;
|
||||
Console.Write("] >> ");
|
||||
}
|
||||
|
||||
public static void WriteLine(object message, ConsoleColor color = ConsoleColor.Gray) {
|
||||
if (!EnableLogging) return;
|
||||
if (OpenWrite) Console.WriteLine();
|
||||
WriteScaffolding("INFO", ConsoleColor.Cyan, Console.Out);
|
||||
Console.ForegroundColor = color;
|
||||
Console.WriteLine(message);
|
||||
Console.ResetColor();
|
||||
OpenWrite = false;
|
||||
}
|
||||
|
||||
public static void Write(object message, ConsoleColor color = ConsoleColor.Gray) {
|
||||
if (!EnableLogging) return;
|
||||
if (OpenWrite) Console.WriteLine();
|
||||
WriteScaffolding("INFO", ConsoleColor.Cyan, Console.Out);
|
||||
Console.ForegroundColor = color;
|
||||
Console.Write(message);
|
||||
OpenWrite = true;
|
||||
}
|
||||
|
||||
public static void CompleteWrite(object message) {
|
||||
if (!EnableLogging || !OpenWrite) return;
|
||||
Console.WriteLine(message);
|
||||
Console.ResetColor();
|
||||
OpenWrite = false;
|
||||
}
|
||||
|
||||
public static void WriteWarning(object message, ConsoleColor color = ConsoleColor.Gray) {
|
||||
if (!EnableLogging) return;
|
||||
if (OpenWrite) Console.WriteLine();
|
||||
WriteScaffolding("WARNING", ConsoleColor.Yellow, Console.Out);
|
||||
Console.ForegroundColor = color;
|
||||
Console.WriteLine(message);
|
||||
Console.ResetColor();
|
||||
OpenWrite = false;
|
||||
}
|
||||
|
||||
public static void WriteError(object message, ConsoleColor color = ConsoleColor.Red) {
|
||||
if (OpenWrite) Console.WriteLine();
|
||||
WriteScaffolding("ERROR", ConsoleColor.Red, Console.Error);
|
||||
Console.ForegroundColor = color;
|
||||
Console.WriteLine(message);
|
||||
Console.ResetColor();
|
||||
OpenWrite = false;
|
||||
}
|
||||
|
||||
public static string RequestInput(string text) {
|
||||
if (OpenWrite) Console.WriteLine();
|
||||
Console.WriteLine("\n" + text);
|
||||
Console.Write("> ");
|
||||
string answer = Console.ReadLine();
|
||||
Console.WriteLine();
|
||||
OpenWrite = false;
|
||||
return answer;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,21 +1,18 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.3" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="CodeWalker.Core">
|
||||
<HintPath>..\..\C#\CodeWalker.Core\bin\Debug\netstandard2.0\CodeWalker.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="SharpDX.Mathematics">
|
||||
<HintPath>..\..\.Librarys\GTA Toolkit\SharpDX.Mathematics.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="SharpDX.Mathematics" Version="4.2.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -1,28 +1,102 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Numerics;
|
||||
using System.Xml;
|
||||
using CarCombiner;
|
||||
using CodeWalker.GameFiles;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
|
||||
namespace MloFinder {
|
||||
public class Program {
|
||||
public static RpfFile Rpf { get; private set; }
|
||||
public static RpfManager Manager { get; private set; }
|
||||
|
||||
public static void Main(string[] args) {
|
||||
// Create temporarily dlc.rpf file
|
||||
if (File.Exists("dlc.rpf"))
|
||||
File.Delete("dlc.rpf");
|
||||
Rpf = RpfFile.CreateNew(Environment.CurrentDirectory, "dlc.rpf");
|
||||
Manager = new RpfManager();
|
||||
Manager.Init(new List<RpfFile> {Rpf});
|
||||
class Program {
|
||||
static void Main(string[] args) {
|
||||
string ymapFile = null;
|
||||
|
||||
CreateHostBuilder(args).Build().Run();
|
||||
if (args.Length == 0) {
|
||||
ymapFile = Log.RequestInput("Specify the ymap file to find the MLO.");
|
||||
}
|
||||
else ymapFile = args[0];
|
||||
|
||||
if (!File.Exists(ymapFile)) {
|
||||
Log.WriteError("The specified ymap file does not exist!");
|
||||
Console.ReadKey();
|
||||
}
|
||||
|
||||
if (File.Exists(Path.GetTempPath() + "dlc.rpf"))
|
||||
File.Delete(Path.GetTempPath() + "dlc.rpf");
|
||||
var rpf = RpfFile.CreateNew(Path.GetTempPath(), "dlc.rpf");
|
||||
|
||||
var manager = new RpfManager();
|
||||
manager.Init(new List<RpfFile> {rpf});
|
||||
|
||||
byte[] data = File.ReadAllBytes(ymapFile);
|
||||
var file = RpfFile.CreateFile(rpf.Root, "mlo.ymap", data);
|
||||
data = rpf.ExtractFile(file);
|
||||
|
||||
var xml = MetaXml.GetXml(file, data, out _);
|
||||
var doc = new XmlDocument();
|
||||
doc.LoadXml(xml);
|
||||
|
||||
var entities = doc.GetElementsByTagName("entities")[0];
|
||||
|
||||
List<Vector3d> positions = new List<Vector3d>();
|
||||
foreach (XmlNode entity in entities.ChildNodes) {
|
||||
var pos = entity.FindChild("position");
|
||||
if (pos == null) continue;
|
||||
|
||||
var x = Convert.ToDouble(pos.Attributes.GetNamedItem("x").Value.Replace('.', ','));
|
||||
var y = Convert.ToDouble(pos.Attributes.GetNamedItem("y").Value.Replace('.', ','));
|
||||
var z = Convert.ToDouble(pos.Attributes.GetNamedItem("z").Value.Replace('.', ','));
|
||||
positions.Add(new Vector3d(x, y, z));
|
||||
}
|
||||
|
||||
var decision = Log.RequestInput("How do you want to display the result?\n[1] Display all positions\n[2] Display the first 10 positions\n[3] Display the center of the positions");
|
||||
|
||||
if (decision.Equals("1")) {
|
||||
Log.WriteLine(string.Join("\n", positions));
|
||||
}
|
||||
|
||||
if (decision.Equals("2")) {
|
||||
if (positions.Count < 10) Log.WriteLine(string.Join("\n", positions));
|
||||
Log.WriteLine(string.Join("\n", positions.Take(10)));
|
||||
}
|
||||
|
||||
if (decision.Equals("3")) {
|
||||
Log.WriteLine(CalculateCenterPoint(positions));
|
||||
}
|
||||
|
||||
Console.ReadKey();
|
||||
}
|
||||
|
||||
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
||||
Host.CreateDefaultBuilder(args)
|
||||
.ConfigureWebHostDefaults(webBuilder => { webBuilder.UseStartup<Startup>(); });
|
||||
private static Vector3d CalculateCenterPoint(List<Vector3d> points) {
|
||||
double sx = 0;
|
||||
double sy = 0;
|
||||
double sz = 0;
|
||||
|
||||
for (int i = 0; i < points.Count; i++) {
|
||||
sx += points[i].x;
|
||||
sy += points[i].y;
|
||||
sz += points[i].z;
|
||||
}
|
||||
|
||||
double size = points.Count;
|
||||
return new Vector3d(sx / size, sy / size, sz / size);
|
||||
}
|
||||
}
|
||||
|
||||
struct Vector3d {
|
||||
public double x;
|
||||
public double y;
|
||||
public double z;
|
||||
|
||||
public Vector3d(double x, double y, double z) {
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
this.z = z;
|
||||
}
|
||||
|
||||
public override string ToString() {
|
||||
return $"{x.ToString().Replace(',', '.')}, {y.ToString().Replace(',', '.')}, {z.ToString().Replace(',', '.')}";
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,31 +0,0 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:45623",
|
||||
"sslPort": 44354
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": false,
|
||||
"launchUrl": "swagger",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"MloFinder": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": "true",
|
||||
"launchBrowser": false,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "http://localhost:5000",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,44 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.AspNetCore.HttpsPolicy;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.OpenApi.Models;
|
||||
|
||||
namespace MloFinder {
|
||||
public class Startup {
|
||||
public Startup(IConfiguration configuration) {
|
||||
Configuration = configuration;
|
||||
}
|
||||
|
||||
public IConfiguration Configuration { get; }
|
||||
|
||||
// This method gets called by the runtime. Use this method to add services to the container.
|
||||
public void ConfigureServices(IServiceCollection services) {
|
||||
services.AddControllers();
|
||||
services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new OpenApiInfo { Title = "MloFinder", Version = "v1" }); });
|
||||
}
|
||||
|
||||
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
||||
public void Configure(IApplicationBuilder app, IWebHostEnvironment env) {
|
||||
if (env.IsDevelopment()) {
|
||||
app.UseDeveloperExceptionPage();
|
||||
app.UseSwagger();
|
||||
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "MloFinder v1"));
|
||||
}
|
||||
|
||||
app.UseRouting();
|
||||
|
||||
app.UseAuthorization();
|
||||
|
||||
app.UseEndpoints(endpoints => { endpoints.MapControllers(); });
|
||||
}
|
||||
}
|
||||
}
|
||||
16
MloFinder/XmlNodeExtensions.cs
Normal file
16
MloFinder/XmlNodeExtensions.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.Xml;
|
||||
|
||||
namespace MloFinder {
|
||||
public static class XmlNodeExtensions {
|
||||
|
||||
public static XmlNode FindChild(this XmlNode parent, string name) {
|
||||
foreach (XmlNode child in parent.ChildNodes) {
|
||||
if (child.Name.Equals(name))
|
||||
return child;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
BIN
MloFinder/bin/Debug/net5.0/CodeWalker.Core.dll
Normal file
BIN
MloFinder/bin/Debug/net5.0/CodeWalker.Core.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Debug/net5.0/CodeWalker.Core.pdb
Normal file
BIN
MloFinder/bin/Debug/net5.0/CodeWalker.Core.pdb
Normal file
Binary file not shown.
1254
MloFinder/bin/Debug/net5.0/MloFinder.deps.json
Normal file
1254
MloFinder/bin/Debug/net5.0/MloFinder.deps.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
MloFinder/bin/Debug/net5.0/MloFinder.dll
Normal file
BIN
MloFinder/bin/Debug/net5.0/MloFinder.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Debug/net5.0/MloFinder.exe
Normal file
BIN
MloFinder/bin/Debug/net5.0/MloFinder.exe
Normal file
Binary file not shown.
BIN
MloFinder/bin/Debug/net5.0/MloFinder.pdb
Normal file
BIN
MloFinder/bin/Debug/net5.0/MloFinder.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\leon\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\leon\\.nuget\\packages",
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
]
|
||||
}
|
||||
}
|
||||
9
MloFinder/bin/Debug/net5.0/MloFinder.runtimeconfig.json
Normal file
9
MloFinder/bin/Debug/net5.0/MloFinder.runtimeconfig.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net5.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "5.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
MloFinder/bin/Debug/net5.0/SharpDX.Mathematics.dll
Normal file
BIN
MloFinder/bin/Debug/net5.0/SharpDX.Mathematics.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Debug/net5.0/SharpDX.dll
Normal file
BIN
MloFinder/bin/Debug/net5.0/SharpDX.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Debug/net5.0/publish/CodeWalker.Core.dll
Normal file
BIN
MloFinder/bin/Debug/net5.0/publish/CodeWalker.Core.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Debug/net5.0/publish/CodeWalker.Core.pdb
Normal file
BIN
MloFinder/bin/Debug/net5.0/publish/CodeWalker.Core.pdb
Normal file
Binary file not shown.
1254
MloFinder/bin/Debug/net5.0/publish/MloFinder.deps.json
Normal file
1254
MloFinder/bin/Debug/net5.0/publish/MloFinder.deps.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
MloFinder/bin/Debug/net5.0/publish/MloFinder.dll
Normal file
BIN
MloFinder/bin/Debug/net5.0/publish/MloFinder.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Debug/net5.0/publish/MloFinder.exe
Normal file
BIN
MloFinder/bin/Debug/net5.0/publish/MloFinder.exe
Normal file
Binary file not shown.
BIN
MloFinder/bin/Debug/net5.0/publish/MloFinder.pdb
Normal file
BIN
MloFinder/bin/Debug/net5.0/publish/MloFinder.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net5.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "5.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
MloFinder/bin/Debug/net5.0/publish/SharpDX.Mathematics.dll
Normal file
BIN
MloFinder/bin/Debug/net5.0/publish/SharpDX.Mathematics.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Debug/net5.0/publish/SharpDX.dll
Normal file
BIN
MloFinder/bin/Debug/net5.0/publish/SharpDX.dll
Normal file
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -2,13 +2,11 @@
|
||||
"runtimeOptions": {
|
||||
"tfm": "net5.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "5.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
BIN
MloFinder/bin/Release/net5.0/publish/CodeWalker.Core.dll
Normal file
BIN
MloFinder/bin/Release/net5.0/publish/CodeWalker.Core.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Release/net5.0/publish/CodeWalker.Core.pdb
Normal file
BIN
MloFinder/bin/Release/net5.0/publish/CodeWalker.Core.pdb
Normal file
Binary file not shown.
1254
MloFinder/bin/Release/net5.0/publish/MloFinder.deps.json
Normal file
1254
MloFinder/bin/Release/net5.0/publish/MloFinder.deps.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
MloFinder/bin/Release/net5.0/publish/MloFinder.dll
Normal file
BIN
MloFinder/bin/Release/net5.0/publish/MloFinder.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Release/net5.0/publish/MloFinder.exe
Normal file
BIN
MloFinder/bin/Release/net5.0/publish/MloFinder.exe
Normal file
Binary file not shown.
BIN
MloFinder/bin/Release/net5.0/publish/MloFinder.pdb
Normal file
BIN
MloFinder/bin/Release/net5.0/publish/MloFinder.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net5.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "5.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
MloFinder/bin/Release/net5.0/publish/SharpDX.Mathematics.dll
Normal file
BIN
MloFinder/bin/Release/net5.0/publish/SharpDX.Mathematics.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Release/net5.0/publish/SharpDX.dll
Normal file
BIN
MloFinder/bin/Release/net5.0/publish/SharpDX.dll
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
||||
22
MloFinder/obj/Debug/net5.0/MloFinder.AssemblyInfo.cs
Normal file
22
MloFinder/obj/Debug/net5.0/MloFinder.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("MloFinder")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("MloFinder")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("MloFinder")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
cfe6ebd5eeedab8a3fd7671d97211eb58a807077
|
||||
@@ -0,0 +1,10 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net5.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = MloFinder
|
||||
build_property.ProjectDir = D:\Programmierstuff\FiveM\MloFinder\
|
||||
BIN
MloFinder/obj/Debug/net5.0/MloFinder.assets.cache
Normal file
BIN
MloFinder/obj/Debug/net5.0/MloFinder.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
1f9ca8744f6cf87431d702cf6588924fa6d595c3
|
||||
@@ -0,0 +1,21 @@
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\MloFinder.exe
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\MloFinder.deps.json
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\MloFinder.runtimeconfig.json
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\MloFinder.runtimeconfig.dev.json
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\MloFinder.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\MloFinder.pdb
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\SharpDX.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\SharpDX.Mathematics.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\CodeWalker.Core.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\CodeWalker.Core.pdb
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Debug\net5.0\MloFinder.csproj.AssemblyReference.cache
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Debug\net5.0\MloFinder.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Debug\net5.0\MloFinder.AssemblyInfoInputs.cache
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Debug\net5.0\MloFinder.AssemblyInfo.cs
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Debug\net5.0\MloFinder.csproj.CoreCompileInputs.cache
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Debug\net5.0\MloFinder.csproj.CopyComplete
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Debug\net5.0\MloFinder.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Debug\net5.0\refint\MloFinder.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Debug\net5.0\MloFinder.pdb
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Debug\net5.0\MloFinder.genruntimeconfig.cache
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Debug\net5.0\ref\MloFinder.dll
|
||||
BIN
MloFinder/obj/Debug/net5.0/MloFinder.dll
Normal file
BIN
MloFinder/obj/Debug/net5.0/MloFinder.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
8d18d4f2370000bbcefeea73867c7e8f08e47843
|
||||
BIN
MloFinder/obj/Debug/net5.0/MloFinder.pdb
Normal file
BIN
MloFinder/obj/Debug/net5.0/MloFinder.pdb
Normal file
Binary file not shown.
9
MloFinder/obj/Debug/net5.0/PublishOutputs.b32b2fb49c.txt
Normal file
9
MloFinder/obj/Debug/net5.0/PublishOutputs.b32b2fb49c.txt
Normal file
@@ -0,0 +1,9 @@
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\publish\MloFinder.exe
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\publish\MloFinder.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\publish\MloFinder.deps.json
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\publish\MloFinder.runtimeconfig.json
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\publish\MloFinder.pdb
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\publish\SharpDX.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\publish\SharpDX.Mathematics.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\publish\CodeWalker.Core.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Debug\net5.0\publish\CodeWalker.Core.pdb
|
||||
BIN
MloFinder/obj/Debug/net5.0/apphost.exe
Normal file
BIN
MloFinder/obj/Debug/net5.0/apphost.exe
Normal file
Binary file not shown.
BIN
MloFinder/obj/Debug/net5.0/ref/MloFinder.dll
Normal file
BIN
MloFinder/obj/Debug/net5.0/ref/MloFinder.dll
Normal file
Binary file not shown.
BIN
MloFinder/obj/Debug/net5.0/refint/MloFinder.dll
Normal file
BIN
MloFinder/obj/Debug/net5.0/refint/MloFinder.dll
Normal file
Binary file not shown.
@@ -44,9 +44,9 @@
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"dependencies": {
|
||||
"Swashbuckle.AspNetCore": {
|
||||
"SharpDX.Mathematics": {
|
||||
"target": "Package",
|
||||
"version": "[5.6.3, )"
|
||||
"version": "[4.2.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
@@ -61,9 +61,6 @@
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.AspNetCore.App": {
|
||||
"privateAssets": "none"
|
||||
},
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
|
||||
@@ -7,17 +7,10 @@
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\leon\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\leon\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore\5.6.3\build\Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore\5.6.3\build\Swashbuckle.AspNetCore.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\leon\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,6 +1,2 @@
|
||||
<?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)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
@@ -1,10 +1,9 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
// Laufzeitversion:4.0.30319.42000
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||
// der Code erneut generiert wird.
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net5.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb = true
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
// Laufzeitversion:4.0.30319.42000
|
||||
//
|
||||
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||
// der Code erneut generiert wird.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
|
||||
|
||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
d6b0b2846b6b82b71c74977c94258483de486193
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
97922900bd21d95bf8f2a6502c25550229950d1a
|
||||
a186c34a3c1acfb0680e3c296e863a37fa5f3739
|
||||
|
||||
@@ -1,35 +1,21 @@
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\appsettings.Development.json
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\appsettings.json
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\MloFinder.exe
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\MloFinder.deps.json
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\MloFinder.runtimeconfig.json
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\MloFinder.runtimeconfig.dev.json
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\MloFinder.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\MloFinder.pdb
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\Microsoft.OpenApi.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\Swashbuckle.AspNetCore.Swagger.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\Swashbuckle.AspNetCore.SwaggerGen.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\Swashbuckle.AspNetCore.SwaggerUI.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\SharpDX.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\SharpDX.Mathematics.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\CodeWalker.Core.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\CodeWalker.Core.pdb
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\MloFinder.csproj.AssemblyReference.cache
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\MloFinder.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\MloFinder.AssemblyInfoInputs.cache
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\MloFinder.AssemblyInfo.cs
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\MloFinder.csproj.CoreCompileInputs.cache
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\MloFinder.MvcApplicationPartsAssemblyInfo.cs
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\MloFinder.MvcApplicationPartsAssemblyInfo.cache
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\scopedcss\bundle\MloFinder.styles.css
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\staticwebassets\MloFinder.StaticWebAssets.Manifest.cache
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\MloFinder.RazorTargetAssemblyInfo.cache
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\MloFinder.csproj.CopyComplete
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\MloFinder.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\refint\MloFinder.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\MloFinder.pdb
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\MloFinder.genruntimeconfig.cache
|
||||
D:\Programmierstuff\FiveM\MloFinder\obj\Release\net5.0\ref\MloFinder.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\CodeWalker.Core.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\CodeWalker.Core.pdb
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\SharpDX.Mathematics.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\SharpDX.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\SharpDX.Mathematics.pdb
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\SharpDX.Mathematics.xml
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\SharpDX.pdb
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
f34539536804e226836e89b02d48314f2ad7f9f2
|
||||
494515880e1b82d69c54812f88854ff8f88bf73e
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,9 @@
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\publish\MloFinder.exe
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\publish\MloFinder.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\publish\MloFinder.deps.json
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\publish\MloFinder.runtimeconfig.json
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\publish\MloFinder.pdb
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\publish\SharpDX.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\publish\SharpDX.Mathematics.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\publish\CodeWalker.Core.dll
|
||||
D:\Programmierstuff\FiveM\MloFinder\bin\Release\net5.0\publish\CodeWalker.Core.pdb
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,15 +1,84 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "sDl7dtKCpNTAGD8AfBr4jFxGrjHglSlNrPW4vKWc6byJKHphR+x7xviIcSUJxaYmYNwr2cTyoSSsxF/wnmYt/Q==",
|
||||
"dgSpecHash": "+Pq1MWBzcbnDuTBBCc1q9syEceKB1XZeLqhHQcsNkudM2KLrVK+s19NGnLCwxCa6ZAX0dQxiaqkxhF4Gud6wSg==",
|
||||
"success": true,
|
||||
"projectFilePath": "D:\\Programmierstuff\\FiveM\\MloFinder\\MloFinder.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\leon\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512"
|
||||
"C:\\Users\\leon\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\sharpdx\\4.2.0\\sharpdx.4.2.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\sharpdx.mathematics\\4.2.0\\sharpdx.mathematics.4.2.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.3.0\\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\leon\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
"restore":{"projectUniqueName":"D:\\Programmierstuff\\FiveM\\MloFinder\\MloFinder.csproj","projectName":"MloFinder","projectPath":"D:\\Programmierstuff\\FiveM\\MloFinder\\MloFinder.csproj","outputPath":"D:\\Programmierstuff\\FiveM\\MloFinder\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net5.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net5.0":{"targetAlias":"net5.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net5.0":{"targetAlias":"net5.0","dependencies":{"Swashbuckle.AspNetCore":{"target":"Package","version":"[5.6.3, )"}},"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\\6.0.402\\RuntimeIdentifierGraph.json"}}
|
||||
@@ -1 +0,0 @@
|
||||
16659238268153092
|
||||
Reference in New Issue
Block a user