Initial commit
This commit is contained in:
25
MloFinder/.dockerignore
Normal file
25
MloFinder/.dockerignore
Normal file
@@ -0,0 +1,25 @@
|
||||
**/.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
|
||||
46
MloFinder/Controllers/FinderController.cs
Normal file
46
MloFinder/Controllers/FinderController.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
20
MloFinder/Dockerfile
Normal file
20
MloFinder/Dockerfile
Normal file
@@ -0,0 +1,20 @@
|
||||
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"]
|
||||
21
MloFinder/MloFinder.csproj
Normal file
21
MloFinder/MloFinder.csproj
Normal file
@@ -0,0 +1,21 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<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>
|
||||
|
||||
</Project>
|
||||
28
MloFinder/Program.cs
Normal file
28
MloFinder/Program.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
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});
|
||||
|
||||
CreateHostBuilder(args).Build().Run();
|
||||
}
|
||||
|
||||
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
||||
Host.CreateDefaultBuilder(args)
|
||||
.ConfigureWebHostDefaults(webBuilder => { webBuilder.UseStartup<Startup>(); });
|
||||
}
|
||||
}
|
||||
31
MloFinder/Properties/launchSettings.json
Normal file
31
MloFinder/Properties/launchSettings.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"$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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
44
MloFinder/Startup.cs
Normal file
44
MloFinder/Startup.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
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(); });
|
||||
}
|
||||
}
|
||||
}
|
||||
9
MloFinder/appsettings.Development.json
Normal file
9
MloFinder/appsettings.Development.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
}
|
||||
}
|
||||
10
MloFinder/appsettings.json
Normal file
10
MloFinder/appsettings.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
BIN
MloFinder/bin/Release/net5.0/CodeWalker.Core.dll
Normal file
BIN
MloFinder/bin/Release/net5.0/CodeWalker.Core.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Release/net5.0/CodeWalker.Core.pdb
Normal file
BIN
MloFinder/bin/Release/net5.0/CodeWalker.Core.pdb
Normal file
Binary file not shown.
BIN
MloFinder/bin/Release/net5.0/Microsoft.OpenApi.dll
Normal file
BIN
MloFinder/bin/Release/net5.0/Microsoft.OpenApi.dll
Normal file
Binary file not shown.
3598
MloFinder/bin/Release/net5.0/MloFinder.deps.json
Normal file
3598
MloFinder/bin/Release/net5.0/MloFinder.deps.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
MloFinder/bin/Release/net5.0/MloFinder.dll
Normal file
BIN
MloFinder/bin/Release/net5.0/MloFinder.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Release/net5.0/MloFinder.exe
Normal file
BIN
MloFinder/bin/Release/net5.0/MloFinder.exe
Normal file
Binary file not shown.
BIN
MloFinder/bin/Release/net5.0/MloFinder.pdb
Normal file
BIN
MloFinder/bin/Release/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"
|
||||
]
|
||||
}
|
||||
}
|
||||
14
MloFinder/bin/Release/net5.0/MloFinder.runtimeconfig.json
Normal file
14
MloFinder/bin/Release/net5.0/MloFinder.runtimeconfig.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net5.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "5.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
MloFinder/bin/Release/net5.0/SharpDX.Mathematics.dll
Normal file
BIN
MloFinder/bin/Release/net5.0/SharpDX.Mathematics.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Release/net5.0/SharpDX.Mathematics.pdb
Normal file
BIN
MloFinder/bin/Release/net5.0/SharpDX.Mathematics.pdb
Normal file
Binary file not shown.
16449
MloFinder/bin/Release/net5.0/SharpDX.Mathematics.xml
Normal file
16449
MloFinder/bin/Release/net5.0/SharpDX.Mathematics.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
MloFinder/bin/Release/net5.0/SharpDX.dll
Normal file
BIN
MloFinder/bin/Release/net5.0/SharpDX.dll
Normal file
Binary file not shown.
BIN
MloFinder/bin/Release/net5.0/SharpDX.pdb
Normal file
BIN
MloFinder/bin/Release/net5.0/SharpDX.pdb
Normal file
Binary file not shown.
BIN
MloFinder/bin/Release/net5.0/Swashbuckle.AspNetCore.Swagger.dll
Normal file
BIN
MloFinder/bin/Release/net5.0/Swashbuckle.AspNetCore.Swagger.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
}
|
||||
}
|
||||
10
MloFinder/bin/Release/net5.0/appsettings.json
Normal file
10
MloFinder/bin/Release/net5.0/appsettings.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
BIN
MloFinder/dlc.rpf
Normal file
BIN
MloFinder/dlc.rpf
Normal file
Binary file not shown.
76
MloFinder/obj/MloFinder.csproj.nuget.dgspec.json
Normal file
76
MloFinder/obj/MloFinder.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"D:\\Programmierstuff\\FiveM\\MloFinder\\MloFinder.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"D:\\Programmierstuff\\FiveM\\MloFinder\\MloFinder.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "D:\\Programmierstuff\\FiveM\\MloFinder\\MloFinder.csproj",
|
||||
"projectName": "MloFinder",
|
||||
"projectPath": "D:\\Programmierstuff\\FiveM\\MloFinder\\MloFinder.csproj",
|
||||
"packagesPath": "C:\\Users\\leon\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\Programmierstuff\\FiveM\\MloFinder\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\leon\\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": [
|
||||
"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.400\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
23
MloFinder/obj/MloFinder.csproj.nuget.g.props
Normal file
23
MloFinder/obj/MloFinder.csproj.nuget.g.props
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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\leon\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.0</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>
|
||||
6
MloFinder/obj/MloFinder.csproj.nuget.g.targets
Normal file
6
MloFinder/obj/MloFinder.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)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>
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
||||
23
MloFinder/obj/Release/net5.0/MloFinder.AssemblyInfo.cs
Normal file
23
MloFinder/obj/Release/net5.0/MloFinder.AssemblyInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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: System.Reflection.AssemblyCompanyAttribute("MloFinder")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[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 @@
|
||||
fd8a59b89deda6aeae76d178b806a383408989c6
|
||||
@@ -0,0 +1,10 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net5.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb = true
|
||||
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\
|
||||
@@ -0,0 +1,17 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
d6b0b2846b6b82b71c74977c94258483de486193
|
||||
BIN
MloFinder/obj/Release/net5.0/MloFinder.assets.cache
Normal file
BIN
MloFinder/obj/Release/net5.0/MloFinder.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
97922900bd21d95bf8f2a6502c25550229950d1a
|
||||
@@ -0,0 +1,35 @@
|
||||
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\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
|
||||
BIN
MloFinder/obj/Release/net5.0/MloFinder.dll
Normal file
BIN
MloFinder/obj/Release/net5.0/MloFinder.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
f34539536804e226836e89b02d48314f2ad7f9f2
|
||||
BIN
MloFinder/obj/Release/net5.0/MloFinder.pdb
Normal file
BIN
MloFinder/obj/Release/net5.0/MloFinder.pdb
Normal file
Binary file not shown.
BIN
MloFinder/obj/Release/net5.0/apphost.exe
Normal file
BIN
MloFinder/obj/Release/net5.0/apphost.exe
Normal file
Binary file not shown.
BIN
MloFinder/obj/Release/net5.0/ref/MloFinder.dll
Normal file
BIN
MloFinder/obj/Release/net5.0/ref/MloFinder.dll
Normal file
Binary file not shown.
BIN
MloFinder/obj/Release/net5.0/refint/MloFinder.dll
Normal file
BIN
MloFinder/obj/Release/net5.0/refint/MloFinder.dll
Normal file
Binary file not shown.
267
MloFinder/obj/project.assets.json
Normal file
267
MloFinder/obj/project.assets.json
Normal file
@@ -0,0 +1,267 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net5.0": {
|
||||
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {
|
||||
"type": "package",
|
||||
"build": {
|
||||
"build/Microsoft.Extensions.ApiDescription.Server.props": {},
|
||||
"build/Microsoft.Extensions.ApiDescription.Server.targets": {}
|
||||
},
|
||||
"buildMultiTargeting": {
|
||||
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
|
||||
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.OpenApi/1.2.3": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/Microsoft.OpenApi.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.OpenApi.dll": {}
|
||||
}
|
||||
},
|
||||
"Swashbuckle.AspNetCore/5.6.3": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.ApiDescription.Server": "3.0.0",
|
||||
"Swashbuckle.AspNetCore.Swagger": "5.6.3",
|
||||
"Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
|
||||
"Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
|
||||
},
|
||||
"build": {
|
||||
"build/Swashbuckle.AspNetCore.props": {}
|
||||
}
|
||||
},
|
||||
"Swashbuckle.AspNetCore.Swagger/5.6.3": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.OpenApi": "1.2.3"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
|
||||
},
|
||||
"frameworkReferences": [
|
||||
"Microsoft.AspNetCore.App"
|
||||
]
|
||||
},
|
||||
"Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Swashbuckle.AspNetCore.Swagger": "5.6.3"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
|
||||
},
|
||||
"frameworkReferences": [
|
||||
"Microsoft.AspNetCore.App"
|
||||
]
|
||||
},
|
||||
"Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
|
||||
},
|
||||
"frameworkReferences": [
|
||||
"Microsoft.AspNetCore.App"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {
|
||||
"sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.apidescription.server/3.0.0",
|
||||
"hasTools": true,
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"build/Microsoft.Extensions.ApiDescription.Server.props",
|
||||
"build/Microsoft.Extensions.ApiDescription.Server.targets",
|
||||
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
|
||||
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
|
||||
"microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
|
||||
"microsoft.extensions.apidescription.server.nuspec",
|
||||
"tools/Newtonsoft.Json.dll",
|
||||
"tools/dotnet-getdocument.deps.json",
|
||||
"tools/dotnet-getdocument.dll",
|
||||
"tools/dotnet-getdocument.runtimeconfig.json",
|
||||
"tools/net461-x86/GetDocument.Insider.exe",
|
||||
"tools/net461-x86/GetDocument.Insider.exe.config",
|
||||
"tools/net461/GetDocument.Insider.exe",
|
||||
"tools/net461/GetDocument.Insider.exe.config",
|
||||
"tools/netcoreapp2.1/GetDocument.Insider.deps.json",
|
||||
"tools/netcoreapp2.1/GetDocument.Insider.dll",
|
||||
"tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
|
||||
]
|
||||
},
|
||||
"Microsoft.OpenApi/1.2.3": {
|
||||
"sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
|
||||
"type": "package",
|
||||
"path": "microsoft.openapi/1.2.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/net46/Microsoft.OpenApi.dll",
|
||||
"lib/net46/Microsoft.OpenApi.pdb",
|
||||
"lib/net46/Microsoft.OpenApi.xml",
|
||||
"lib/netstandard2.0/Microsoft.OpenApi.dll",
|
||||
"lib/netstandard2.0/Microsoft.OpenApi.pdb",
|
||||
"lib/netstandard2.0/Microsoft.OpenApi.xml",
|
||||
"microsoft.openapi.1.2.3.nupkg.sha512",
|
||||
"microsoft.openapi.nuspec"
|
||||
]
|
||||
},
|
||||
"Swashbuckle.AspNetCore/5.6.3": {
|
||||
"sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
|
||||
"type": "package",
|
||||
"path": "swashbuckle.aspnetcore/5.6.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"build/Swashbuckle.AspNetCore.props",
|
||||
"swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
|
||||
"swashbuckle.aspnetcore.nuspec"
|
||||
]
|
||||
},
|
||||
"Swashbuckle.AspNetCore.Swagger/5.6.3": {
|
||||
"sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
|
||||
"type": "package",
|
||||
"path": "swashbuckle.aspnetcore.swagger/5.6.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
|
||||
"lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
|
||||
"lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
|
||||
"lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
|
||||
"swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
|
||||
"swashbuckle.aspnetcore.swagger.nuspec"
|
||||
]
|
||||
},
|
||||
"Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
|
||||
"sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
|
||||
"type": "package",
|
||||
"path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
|
||||
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
|
||||
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
|
||||
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
|
||||
"swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
|
||||
"swashbuckle.aspnetcore.swaggergen.nuspec"
|
||||
]
|
||||
},
|
||||
"Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
|
||||
"sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
|
||||
"type": "package",
|
||||
"path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
|
||||
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
|
||||
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
|
||||
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
|
||||
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
|
||||
"swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
|
||||
"swashbuckle.aspnetcore.swaggerui.nuspec"
|
||||
]
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
"net5.0": [
|
||||
"Swashbuckle.AspNetCore >= 5.6.3"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\leon\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "D:\\Programmierstuff\\FiveM\\MloFinder\\MloFinder.csproj",
|
||||
"projectName": "MloFinder",
|
||||
"projectPath": "D:\\Programmierstuff\\FiveM\\MloFinder\\MloFinder.csproj",
|
||||
"packagesPath": "C:\\Users\\leon\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\Programmierstuff\\FiveM\\MloFinder\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\leon\\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": [
|
||||
"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.400\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
15
MloFinder/obj/project.nuget.cache
Normal file
15
MloFinder/obj/project.nuget.cache
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "2zrb2Pmt/RKawitTUw1BvExyUdy+FBbQbb7Fi9CphCE7QGVxdV0FTTfQK3JRWq6OdzORTyRfMcu0m/Qx3gNsPA==",
|
||||
"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"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
1
MloFinder/obj/project.packagespec.json
Normal file
1
MloFinder/obj/project.packagespec.json
Normal file
@@ -0,0 +1 @@
|
||||
"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.400\\RuntimeIdentifierGraph.json"}}
|
||||
1
MloFinder/obj/rider.project.restore.info
Normal file
1
MloFinder/obj/rider.project.restore.info
Normal file
@@ -0,0 +1 @@
|
||||
16606808232292015
|
||||
Reference in New Issue
Block a user