Add stuff
This commit is contained in:
parent
e84ecce3b5
commit
445f2ccac3
1
Guild/CSDEV
Submodule
1
Guild/CSDEV
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit edd1d3879a7603c9054c0e113835e30fd29800cb
|
||||
1
Guild/DamageEngine
Submodule
1
Guild/DamageEngine
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit eb0a7dbfedb6f8cfbd7f40509759807d50aa288d
|
||||
23
Guild/Guild.CLI/Guild.CLI.csproj
Normal file
23
Guild/Guild.CLI/Guild.CLI.csproj
Normal file
@ -0,0 +1,23 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>disable</Nullable>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Silk.NET" Version="2.16.0" />
|
||||
<PackageReference Include="Silk.NET.Input" Version="2.16.0" />
|
||||
<PackageReference Include="Silk.NET.Direct3D.Compilers" Version="2.16.0" />
|
||||
<PackageReference Include="Silk.NET.Direct3D11" Version="2.16.0" />
|
||||
<PackageReference Include="Silk.NET.DXGI" Version="2.16.0" />
|
||||
<PackageReference Include="Silk.NET.OpenGL" Version="2.16.0" />
|
||||
<PackageReference Include="Silk.NET.OpenGL.Extensions.ImGui" Version="2.16.0" />
|
||||
<PackageReference Include="Silk.NET.Windowing" Version="2.16.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
79
Guild/Guild.CLI/Program.cs
Normal file
79
Guild/Guild.CLI/Program.cs
Normal file
@ -0,0 +1,79 @@
|
||||
// This file is part of Silk.NET.
|
||||
//
|
||||
// You may modify and distribute Silk.NET under the terms
|
||||
// of the MIT license. See the LICENSE file for details.
|
||||
|
||||
using System.Drawing;
|
||||
using Silk.NET.Windowing;
|
||||
using Silk.NET.Input;
|
||||
using Silk.NET.OpenGL;
|
||||
using Silk.NET.OpenGL.Extensions.ImGui;
|
||||
|
||||
namespace ImGui
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
// Create a Silk.NET window as usual
|
||||
using var window = Window.Create(WindowOptions.Default);
|
||||
|
||||
// Declare some variables
|
||||
ImGuiController controller = null;
|
||||
GL gl = null;
|
||||
IInputContext inputContext = null;
|
||||
|
||||
// Our loading function
|
||||
window.Load += () =>
|
||||
{
|
||||
controller = new ImGuiController(
|
||||
gl = window.CreateOpenGL(), // load OpenGL
|
||||
window, // pass in our window
|
||||
inputContext = window.CreateInput() // create an input context
|
||||
);
|
||||
};
|
||||
|
||||
// Handle resizes
|
||||
window.FramebufferResize += s =>
|
||||
{
|
||||
// Adjust the viewport to the new window size
|
||||
gl.Viewport(s);
|
||||
};
|
||||
|
||||
// The render function
|
||||
window.Render += delta =>
|
||||
{
|
||||
// Make sure ImGui is up-to-date
|
||||
controller.Update((float) delta);
|
||||
|
||||
// This is where you'll do any rendering beneath the ImGui context
|
||||
// Here, we just have a blank screen.
|
||||
gl.ClearColor(Color.FromArgb(255, (int) (.45f * 255), (int) (.55f * 255), (int) (.60f * 255)));
|
||||
gl.Clear((uint) ClearBufferMask.ColorBufferBit);
|
||||
|
||||
// This is where you'll do all of your ImGUi rendering
|
||||
// Here, we're just showing the ImGui built-in demo window.
|
||||
ImGuiNET.ImGui.ShowDemoWindow();
|
||||
|
||||
// Make sure ImGui renders too!
|
||||
controller.Render();
|
||||
};
|
||||
|
||||
// The closing function
|
||||
window.Closing += () =>
|
||||
{
|
||||
// Dispose our controller first
|
||||
controller?.Dispose();
|
||||
|
||||
// Dispose the input context
|
||||
inputContext?.Dispose();
|
||||
|
||||
// Unload OpenGL
|
||||
gl?.Dispose();
|
||||
};
|
||||
|
||||
// Now that everything's defined, let's run this bad boy!
|
||||
window.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
647
Guild/Guild.CLI/bin/Debug/net6.0/Guild.CLI.deps.json
Normal file
647
Guild/Guild.CLI/bin/Debug/net6.0/Guild.CLI.deps.json
Normal file
@ -0,0 +1,647 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"Guild.CLI/1.0.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET": "2.16.0",
|
||||
"Silk.NET.DXGI": "2.16.0",
|
||||
"Silk.NET.Direct3D.Compilers": "2.16.0",
|
||||
"Silk.NET.Direct3D11": "2.16.0",
|
||||
"Silk.NET.Input": "2.16.0",
|
||||
"Silk.NET.OpenGL": "2.16.0",
|
||||
"Silk.NET.OpenGL.Extensions.ImGui": "2.16.0",
|
||||
"Silk.NET.Windowing": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Guild.CLI.dll": {}
|
||||
}
|
||||
},
|
||||
"ImGui.NET/1.87.3": {
|
||||
"dependencies": {
|
||||
"System.Buffers": "4.5.1",
|
||||
"System.Numerics.Vectors": "4.5.0",
|
||||
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/ImGui.NET.dll": {
|
||||
"assemblyVersion": "1.87.3.0",
|
||||
"fileVersion": "1.87.3.0"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/linux-x64/native/libcimgui.so": {
|
||||
"rid": "linux-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/osx-universal/native/libcimgui.dylib": {
|
||||
"rid": "osx-universal",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x64/native/cimgui.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x86/native/cimgui.dll": {
|
||||
"rid": "win-x86",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.CSharp/4.7.0": {},
|
||||
"Microsoft.DotNet.PlatformAbstractions/3.1.6": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.DotNet.PlatformAbstractions.dll": {
|
||||
"assemblyVersion": "3.1.6.0",
|
||||
"fileVersion": "3.100.620.31604"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyModel/6.0.0": {
|
||||
"dependencies": {
|
||||
"System.Buffers": "4.5.1",
|
||||
"System.Memory": "4.5.5",
|
||||
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
|
||||
"System.Text.Encodings.Web": "6.0.0",
|
||||
"System.Text.Json": "6.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.52210"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Core": "2.16.0",
|
||||
"Silk.NET.GLFW": "2.16.0",
|
||||
"Silk.NET.Input": "2.16.0",
|
||||
"Silk.NET.OpenAL": "2.16.0",
|
||||
"Silk.NET.OpenGL": "2.16.0",
|
||||
"Silk.NET.Vulkan": "2.16.0",
|
||||
"Silk.NET.Vulkan.Extensions.KHR": "2.16.0",
|
||||
"Silk.NET.Windowing": "2.16.0"
|
||||
}
|
||||
},
|
||||
"Silk.NET.Core/2.16.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.CSharp": "4.7.0",
|
||||
"Microsoft.DotNet.PlatformAbstractions": "3.1.6",
|
||||
"Microsoft.Extensions.DependencyModel": "6.0.0",
|
||||
"System.Memory": "4.5.5",
|
||||
"System.Numerics.Vectors": "4.5.0",
|
||||
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Silk.NET.Core.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.Direct3D.Compilers/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Core": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.Direct3D.Compilers.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.Direct3D11/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Core": "2.16.0",
|
||||
"Silk.NET.DXGI": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.Direct3D11.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.DXGI/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Core": "2.16.0",
|
||||
"Silk.NET.Maths": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.DXGI.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.GLFW/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Core": "2.16.0",
|
||||
"Ultz.Native.GLFW": "3.3.3.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.GLFW.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.Input/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Input.Common": "2.16.0",
|
||||
"Silk.NET.Input.Glfw": "2.16.0",
|
||||
"Silk.NET.Input.Sdl": "2.16.0"
|
||||
}
|
||||
},
|
||||
"Silk.NET.Input.Common/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Windowing.Common": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.Input.Common.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.Input.Extensions/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Input.Common": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.Input.Extensions.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.Input.Glfw/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Input.Common": "2.16.0",
|
||||
"Silk.NET.Windowing.Glfw": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.Input.Glfw.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.Input.Sdl/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Input.Common": "2.16.0",
|
||||
"Silk.NET.Windowing.Sdl": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.Input.Sdl.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.Maths/2.16.0": {
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.Maths.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.OpenAL/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Core": "2.16.0",
|
||||
"System.Buffers": "4.5.1",
|
||||
"System.Numerics.Vectors": "4.5.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.OpenAL.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.OpenGL/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Core": "2.16.0",
|
||||
"Silk.NET.Maths": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.OpenGL.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.OpenGL.Extensions.ImGui/2.16.0": {
|
||||
"dependencies": {
|
||||
"ImGui.NET": "1.87.3",
|
||||
"Silk.NET.Input.Common": "2.16.0",
|
||||
"Silk.NET.Input.Extensions": "2.16.0",
|
||||
"Silk.NET.OpenGL": "2.16.0",
|
||||
"Silk.NET.Windowing.Common": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.OpenGL.Extensions.ImGui.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.SDL/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Core": "2.16.0",
|
||||
"Silk.NET.Maths": "2.16.0",
|
||||
"Ultz.Native.SDL": "2.0.14.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.SDL.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.Vulkan/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Core": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.Vulkan.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.Vulkan.Extensions.KHR/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Core": "2.16.0",
|
||||
"Silk.NET.Vulkan": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.Vulkan.Extensions.KHR.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.Windowing/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Windowing.Common": "2.16.0",
|
||||
"Silk.NET.Windowing.Glfw": "2.16.0"
|
||||
}
|
||||
},
|
||||
"Silk.NET.Windowing.Common/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.Core": "2.16.0",
|
||||
"Silk.NET.Maths": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Silk.NET.Windowing.Common.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.Windowing.Glfw/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.GLFW": "2.16.0",
|
||||
"Silk.NET.Windowing.Common": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Silk.NET.Windowing.Glfw.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Silk.NET.Windowing.Sdl/2.16.0": {
|
||||
"dependencies": {
|
||||
"Silk.NET.SDL": "2.16.0",
|
||||
"Silk.NET.Windowing.Common": "2.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Silk.NET.Windowing.Sdl.dll": {
|
||||
"assemblyVersion": "2.16.0.0",
|
||||
"fileVersion": "2.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Buffers/4.5.1": {},
|
||||
"System.Memory/4.5.5": {},
|
||||
"System.Numerics.Vectors/4.5.0": {},
|
||||
"System.Runtime.CompilerServices.Unsafe/6.0.0": {},
|
||||
"System.Text.Encodings.Web/6.0.0": {
|
||||
"dependencies": {
|
||||
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
||||
}
|
||||
},
|
||||
"System.Text.Json/6.0.0": {
|
||||
"dependencies": {
|
||||
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
|
||||
"System.Text.Encodings.Web": "6.0.0"
|
||||
}
|
||||
},
|
||||
"Ultz.Native.GLFW/3.3.3.1": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/linux-x64/native/libglfw.so.3": {
|
||||
"rid": "linux-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/osx-arm64/native/libglfw.3.dylib": {
|
||||
"rid": "osx-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/osx-x64/native/libglfw.3.dylib": {
|
||||
"rid": "osx-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x64/native/glfw3.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x86/native/glfw3.dll": {
|
||||
"rid": "win-x86",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Ultz.Native.SDL/2.0.14.1": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/linux-x64/native/libSDL2-2.0.so": {
|
||||
"rid": "linux-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/osx-x64/native/libSDL2-2.0.dylib": {
|
||||
"rid": "osx-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x64/native/SDL2.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "2.0.14.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Guild.CLI/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"ImGui.NET/1.87.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-pYKUrXtvinMZiWToAzGhAGXscPr1B/NVVADbfbBlpl9waaVtB/7q9Zx07HyjivE44f8u1W1L++iwwfrCS3Sw3w==",
|
||||
"path": "imgui.net/1.87.3",
|
||||
"hashPath": "imgui.net.1.87.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.CSharp/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
|
||||
"path": "microsoft.csharp/4.7.0",
|
||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.DotNet.PlatformAbstractions/3.1.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-jek4XYaQ/PGUwDKKhwR8K47Uh1189PFzMeLqO83mXrXQVIpARZCcfuDedH50YDTepBkfijCZN5U/vZi++erxtg==",
|
||||
"path": "microsoft.dotnet.platformabstractions/3.1.6",
|
||||
"hashPath": "microsoft.dotnet.platformabstractions.3.1.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.DependencyModel/6.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-TD5QHg98m3+QhgEV1YVoNMl5KtBw/4rjfxLHO0e/YV9bPUBDKntApP4xdrVtGgCeQZHVfC2EXIGsdpRNrr87Pg==",
|
||||
"path": "microsoft.extensions.dependencymodel/6.0.0",
|
||||
"hashPath": "microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-K62SIwgqK1cfsDYRyfeJpU6ZjImMkqgxvCFP7mECrwSHaU2NAo5dK6JzhEhHywhtlrR6pdW+jkpzuffX+F4new==",
|
||||
"path": "silk.net/2.16.0",
|
||||
"hashPath": "silk.net.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Core/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-9lU5QtE9SGaDtzj817Kp4td9jF2XsDwevzjmoEA7Fxp2t5uM4KDVAns4YgNT15J87v+mg3bxG7fK4aVSMkfbLA==",
|
||||
"path": "silk.net.core/2.16.0",
|
||||
"hashPath": "silk.net.core.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Direct3D.Compilers/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-7VPDUj2y9XH64qCkeVpUiIYUOnzBt4OTqxgNnrXRf7ewfF3WUxzbZabQ8fe50unF73CvhvO5M8WJxbJCDev4ug==",
|
||||
"path": "silk.net.direct3d.compilers/2.16.0",
|
||||
"hashPath": "silk.net.direct3d.compilers.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Direct3D11/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-3MlAi8PqvFIx3XTOx49TvKnojoPBwLzn46xbJ4Zpu58He//D/ZNM4QmK7/lR8m69Eq0iOY2vS3ZYanKrS8KHUA==",
|
||||
"path": "silk.net.direct3d11/2.16.0",
|
||||
"hashPath": "silk.net.direct3d11.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.DXGI/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-DPyAs4HWDKeFbFepdmcjmSM90AHmVnDObSZH4lYTUH82iiVhPDHETzxPi6XwPEAp4oWi0tGoTapQFe3Zji1jlQ==",
|
||||
"path": "silk.net.dxgi/2.16.0",
|
||||
"hashPath": "silk.net.dxgi.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.GLFW/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-SwYGUz//ZUiNFmPFDa82g2mDGDBpUmGPBRXFGY4MbpuMGGdOWdByA1vt4b7eNRsBuu1aAkiJznaCudiUtULMew==",
|
||||
"path": "silk.net.glfw/2.16.0",
|
||||
"hashPath": "silk.net.glfw.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Input/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-u6RZ93e3Dg5yaeCiXZJn+6olLNi5UeGKJyVsU+LwVJbugFMsD6ANm0QZ++qQCql+DLxJVeBzIEnu0mA12sLxUA==",
|
||||
"path": "silk.net.input/2.16.0",
|
||||
"hashPath": "silk.net.input.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Input.Common/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-RLweqYgzOScnW79UIFRaaI8b41EtkKOeGlUyFD6jRK/hqlrSQgEL/5vlpeFP/U85KaifFsGGsL1dv+FMWhP4bw==",
|
||||
"path": "silk.net.input.common/2.16.0",
|
||||
"hashPath": "silk.net.input.common.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Input.Extensions/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rutA2vXhHDZm7v9tSsJWYCf5kXafbJSWQT5ghO2iOiQQbRZK+E+tmMyQBTmrJc9+pwXASpM4q4vUJAVdmMArdg==",
|
||||
"path": "silk.net.input.extensions/2.16.0",
|
||||
"hashPath": "silk.net.input.extensions.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Input.Glfw/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-KlAdyb22PxKYkpDdUGFw3vKKFpbdwubIMPUyDnoxaDzgBc0aOk5yY7aCsrYs8cNel/rlJZ6ZlL1BSqzYz4YvZg==",
|
||||
"path": "silk.net.input.glfw/2.16.0",
|
||||
"hashPath": "silk.net.input.glfw.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Input.Sdl/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-4RTvoYYxkQldrJHKJR74tPV3tkA/1xpVzDRI2sTMRmB9X1MJhTD8Zeuw436E+oKxYc8uv8PzPqIzTnXlK4uDkA==",
|
||||
"path": "silk.net.input.sdl/2.16.0",
|
||||
"hashPath": "silk.net.input.sdl.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Maths/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Xjw9Fw/DQ0zVgJL5FUBH04qMp+vEfoHd71PrnrGwsRmopwEK4KKLuMYLVN/tKLvq5Mfh0Qd0bItOb26MyIJ/7g==",
|
||||
"path": "silk.net.maths/2.16.0",
|
||||
"hashPath": "silk.net.maths.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.OpenAL/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-6oiF3ftldIMzYgQO5JV9XsBpC5e5UrVEq/amZzcNNM+C6B06e6syKdD1Dg6EV4YCRtljlGif6NC0QDkXi/UiUw==",
|
||||
"path": "silk.net.openal/2.16.0",
|
||||
"hashPath": "silk.net.openal.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.OpenGL/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-SOE1lTWjMr+ThA+90XJ7MrKgygVm8ozOx4IWA1mX+7is9XSML8SaOO9FhmQgGhLbY8sPvOpiFbUhICZNXrMpFw==",
|
||||
"path": "silk.net.opengl/2.16.0",
|
||||
"hashPath": "silk.net.opengl.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.OpenGL.Extensions.ImGui/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VrKn5am20z2kdc0Kd91/lMu9srehwXoqbUbxySsPrmLr1uNVkDSxDFzXqKKAzqVSa13kY/d/7J/vv6SQX91Dlg==",
|
||||
"path": "silk.net.opengl.extensions.imgui/2.16.0",
|
||||
"hashPath": "silk.net.opengl.extensions.imgui.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.SDL/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Os5L+FhUxRNG/YfG3yFes5tNoPIaAlw3Y9g/dwBYYWgVxQpdhMpjTYjQEu+0zG2lguxgul03LRVtmt/+nyr+NQ==",
|
||||
"path": "silk.net.sdl/2.16.0",
|
||||
"hashPath": "silk.net.sdl.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Vulkan/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-AxBUL4fxd4f8f5u7V4nhdZbeCmeWAmphUm0Lfai1YUCHLb6XNORP5jvlpTpBfW9mvtd8aLjV8cyTfdYw11vnig==",
|
||||
"path": "silk.net.vulkan/2.16.0",
|
||||
"hashPath": "silk.net.vulkan.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Vulkan.Extensions.KHR/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-vM0/+Nc3EqHoIhsW8z/YvKt5xIY37GOTvcEsToiZaYwEMaNvNdsqxIZEhHIaLj+SujbX5cH1755al1r1rbCLhw==",
|
||||
"path": "silk.net.vulkan.extensions.khr/2.16.0",
|
||||
"hashPath": "silk.net.vulkan.extensions.khr.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Windowing/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-385Qmc8pwMc9rs0YL30JHFLU6v33nQQcdShKrRtyoXX3+HGArkUT3T4rSpDHsA7EzCa0GBB4csh8AoheKqudxg==",
|
||||
"path": "silk.net.windowing/2.16.0",
|
||||
"hashPath": "silk.net.windowing.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Windowing.Common/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ay/eRIsZWnsDMlV8ZJDMQ+/HrLtmX4IWPdGBzbik3sKbcm9pvTFiCZWIrBNpg7IJpZhw6e1ZrhSsiK65+mH+rA==",
|
||||
"path": "silk.net.windowing.common/2.16.0",
|
||||
"hashPath": "silk.net.windowing.common.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Windowing.Glfw/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ZKR70gVtp/BAXU7ds6hzUowJx2HCwwacFH0zY1/ZEfj/AUzBtQQwZqXYrGoNX7vlwPtGXUDn4MzwBhplBR0CqA==",
|
||||
"path": "silk.net.windowing.glfw/2.16.0",
|
||||
"hashPath": "silk.net.windowing.glfw.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"Silk.NET.Windowing.Sdl/2.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-R3ceesLRv3nbJDy2G0yfaqGwdTBb/GmdLAEUg6GczEy1YNmmD1SLrLoJuDckOsUIDWMV3IyacmoSwYdcaBsu4A==",
|
||||
"path": "silk.net.windowing.sdl/2.16.0",
|
||||
"hashPath": "silk.net.windowing.sdl.2.16.0.nupkg.sha512"
|
||||
},
|
||||
"System.Buffers/4.5.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
|
||||
"path": "system.buffers/4.5.1",
|
||||
"hashPath": "system.buffers.4.5.1.nupkg.sha512"
|
||||
},
|
||||
"System.Memory/4.5.5": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
|
||||
"path": "system.memory/4.5.5",
|
||||
"hashPath": "system.memory.4.5.5.nupkg.sha512"
|
||||
},
|
||||
"System.Numerics.Vectors/4.5.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
|
||||
"path": "system.numerics.vectors/4.5.0",
|
||||
"hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
|
||||
"path": "system.runtime.compilerservices.unsafe/6.0.0",
|
||||
"hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Encodings.Web/6.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
|
||||
"path": "system.text.encodings.web/6.0.0",
|
||||
"hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Json/6.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==",
|
||||
"path": "system.text.json/6.0.0",
|
||||
"hashPath": "system.text.json.6.0.0.nupkg.sha512"
|
||||
},
|
||||
"Ultz.Native.GLFW/3.3.3.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-7eUNO/A1+BXZt0HF1i67HByjmQFo/FfdFatdHUlupv1qnu5tKr5RLreZ7O1Fr0oRIcW6kEx7kJY0aPfJBwcJAw==",
|
||||
"path": "ultz.native.glfw/3.3.3.1",
|
||||
"hashPath": "ultz.native.glfw.3.3.3.1.nupkg.sha512"
|
||||
},
|
||||
"Ultz.Native.SDL/2.0.14.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-pqhYzaFfEXGCZag7JsO3YoNHYALBqFHu4a3Ejyz5rjPW51p3Tfjs82Cz8n9GkohzJADZxSRthNYWpa3Hi1Vp6g==",
|
||||
"path": "ultz.native.sdl/2.0.14.1",
|
||||
"hashPath": "ultz.native.sdl.2.0.14.1.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Guild.CLI.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Guild.CLI.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Guild.CLI.exe
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Guild.CLI.exe
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Guild.CLI.pdb
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Guild.CLI.pdb
Normal file
Binary file not shown.
@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Guild/Guild.CLI/bin/Debug/net6.0/ImGui.NET.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/ImGui.NET.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Core.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Core.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.DXGI.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.DXGI.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Direct3D.Compilers.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Direct3D.Compilers.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Direct3D11.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Direct3D11.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.GLFW.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.GLFW.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Input.Common.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Input.Common.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Input.Extensions.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Input.Extensions.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Input.Glfw.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Input.Glfw.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Input.Sdl.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Input.Sdl.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Maths.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Maths.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.OpenAL.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.OpenAL.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.OpenGL.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.OpenGL.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.SDL.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.SDL.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Vulkan.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Vulkan.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Windowing.Common.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Windowing.Common.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Windowing.Glfw.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Windowing.Glfw.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Windowing.Sdl.dll
Normal file
BIN
Guild/Guild.CLI/bin/Debug/net6.0/Silk.NET.Windowing.Sdl.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10
Guild/Guild.CLI/imgui.ini
Normal file
10
Guild/Guild.CLI/imgui.ini
Normal file
@ -0,0 +1,10 @@
|
||||
[Window][Debug##Default]
|
||||
Pos=60,60
|
||||
Size=400,400
|
||||
Collapsed=0
|
||||
|
||||
[Window][Dear ImGui Demo]
|
||||
Pos=1318,438
|
||||
Size=550,680
|
||||
Collapsed=1
|
||||
|
||||
9
Guild/Guild.CLI/imgui_log.txt
Normal file
9
Guild/Guild.CLI/imgui_log.txt
Normal file
@ -0,0 +1,9 @@
|
||||
(?)
|
||||
[ Copy "Hello, world!" to clipboard ]
|
||||
### Window options ###
|
||||
### Widgets ###
|
||||
### Layout & Scrolling ###
|
||||
### Popups & Modal windows ###
|
||||
### Tables & Columns ###
|
||||
### Filtering ###
|
||||
### Inputs, Navigation & Focus ###
|
||||
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
||||
22
Guild/Guild.CLI/obj/Debug/net6.0/Guild.CLI.AssemblyInfo.cs
Normal file
22
Guild/Guild.CLI/obj/Debug/net6.0/Guild.CLI.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("Guild.CLI")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Guild.CLI")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Guild.CLI")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
@ -0,0 +1 @@
|
||||
b25b9017166f3d4f105d310d9739057173339f84
|
||||
@ -0,0 +1,10 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Guild.CLI
|
||||
build_property.ProjectDir = C:\dev\monorepo\Guild\Guild.CLI\
|
||||
@ -0,0 +1,8 @@
|
||||
// <auto-generated/>
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
||||
BIN
Guild/Guild.CLI/obj/Debug/net6.0/Guild.CLI.assets.cache
Normal file
BIN
Guild/Guild.CLI/obj/Debug/net6.0/Guild.CLI.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
4472e166aa7d831282c2f83311dc4c0c0d7eda1e
|
||||
@ -0,0 +1,50 @@
|
||||
C:\dev\monorepo\Guild\Guild.CLI\obj\Debug\net6.0\Guild.CLI.csproj.AssemblyReference.cache
|
||||
C:\dev\monorepo\Guild\Guild.CLI\obj\Debug\net6.0\Guild.CLI.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\dev\monorepo\Guild\Guild.CLI\obj\Debug\net6.0\Guild.CLI.AssemblyInfoInputs.cache
|
||||
C:\dev\monorepo\Guild\Guild.CLI\obj\Debug\net6.0\Guild.CLI.AssemblyInfo.cs
|
||||
C:\dev\monorepo\Guild\Guild.CLI\obj\Debug\net6.0\Guild.CLI.csproj.CoreCompileInputs.cache
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Guild.CLI.exe
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Guild.CLI.deps.json
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Guild.CLI.runtimeconfig.json
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Guild.CLI.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Guild.CLI.pdb
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\ImGui.NET.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Microsoft.DotNet.PlatformAbstractions.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Microsoft.Extensions.DependencyModel.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Core.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Direct3D.Compilers.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Direct3D11.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.DXGI.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.GLFW.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Input.Common.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Input.Extensions.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Input.Glfw.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Input.Sdl.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Maths.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.OpenAL.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.OpenGL.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.OpenGL.Extensions.ImGui.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.SDL.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Vulkan.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Vulkan.Extensions.KHR.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Windowing.Common.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Windowing.Glfw.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\Silk.NET.Windowing.Sdl.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\runtimes\linux-x64\native\libcimgui.so
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\runtimes\osx-universal\native\libcimgui.dylib
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\runtimes\win-x64\native\cimgui.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\runtimes\win-x86\native\cimgui.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\runtimes\linux-x64\native\libglfw.so.3
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\runtimes\osx-arm64\native\libglfw.3.dylib
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\runtimes\osx-x64\native\libglfw.3.dylib
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\runtimes\win-x64\native\glfw3.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\runtimes\win-x86\native\glfw3.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\runtimes\linux-x64\native\libSDL2-2.0.so
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\runtimes\osx-x64\native\libSDL2-2.0.dylib
|
||||
C:\dev\monorepo\Guild\Guild.CLI\bin\Debug\net6.0\runtimes\win-x64\native\SDL2.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\obj\Debug\net6.0\Guild.CLI.csproj.CopyComplete
|
||||
C:\dev\monorepo\Guild\Guild.CLI\obj\Debug\net6.0\Guild.CLI.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\obj\Debug\net6.0\refint\Guild.CLI.dll
|
||||
C:\dev\monorepo\Guild\Guild.CLI\obj\Debug\net6.0\Guild.CLI.pdb
|
||||
C:\dev\monorepo\Guild\Guild.CLI\obj\Debug\net6.0\Guild.CLI.genruntimeconfig.cache
|
||||
C:\dev\monorepo\Guild\Guild.CLI\obj\Debug\net6.0\ref\Guild.CLI.dll
|
||||
BIN
Guild/Guild.CLI/obj/Debug/net6.0/Guild.CLI.dll
Normal file
BIN
Guild/Guild.CLI/obj/Debug/net6.0/Guild.CLI.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
2f7c0f5dfb2df69b06291b939c913ba6a58dbbfd
|
||||
BIN
Guild/Guild.CLI/obj/Debug/net6.0/Guild.CLI.pdb
Normal file
BIN
Guild/Guild.CLI/obj/Debug/net6.0/Guild.CLI.pdb
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/obj/Debug/net6.0/apphost.exe
Normal file
BIN
Guild/Guild.CLI/obj/Debug/net6.0/apphost.exe
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/obj/Debug/net6.0/ref/Guild.CLI.dll
Normal file
BIN
Guild/Guild.CLI/obj/Debug/net6.0/ref/Guild.CLI.dll
Normal file
Binary file not shown.
BIN
Guild/Guild.CLI/obj/Debug/net6.0/refint/Guild.CLI.dll
Normal file
BIN
Guild/Guild.CLI/obj/Debug/net6.0/refint/Guild.CLI.dll
Normal file
Binary file not shown.
97
Guild/Guild.CLI/obj/Guild.CLI.csproj.nuget.dgspec.json
Normal file
97
Guild/Guild.CLI/obj/Guild.CLI.csproj.nuget.dgspec.json
Normal file
@ -0,0 +1,97 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\dev\\monorepo\\Guild\\Guild.CLI\\Guild.CLI.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\dev\\monorepo\\Guild\\Guild.CLI\\Guild.CLI.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\dev\\monorepo\\Guild\\Guild.CLI\\Guild.CLI.csproj",
|
||||
"projectName": "Guild.CLI",
|
||||
"projectPath": "C:\\dev\\monorepo\\Guild\\Guild.CLI\\Guild.CLI.csproj",
|
||||
"packagesPath": "C:\\Users\\Eero\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\dev\\monorepo\\Guild\\Guild.CLI\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Eero\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"dependencies": {
|
||||
"Silk.NET": {
|
||||
"target": "Package",
|
||||
"version": "[2.16.0, )"
|
||||
},
|
||||
"Silk.NET.DXGI": {
|
||||
"target": "Package",
|
||||
"version": "[2.16.0, )"
|
||||
},
|
||||
"Silk.NET.Direct3D.Compilers": {
|
||||
"target": "Package",
|
||||
"version": "[2.16.0, )"
|
||||
},
|
||||
"Silk.NET.Direct3D11": {
|
||||
"target": "Package",
|
||||
"version": "[2.16.0, )"
|
||||
},
|
||||
"Silk.NET.Input": {
|
||||
"target": "Package",
|
||||
"version": "[2.16.0, )"
|
||||
},
|
||||
"Silk.NET.OpenGL": {
|
||||
"target": "Package",
|
||||
"version": "[2.16.0, )"
|
||||
},
|
||||
"Silk.NET.OpenGL.Extensions.ImGui": {
|
||||
"target": "Package",
|
||||
"version": "[2.16.0, )"
|
||||
},
|
||||
"Silk.NET.Windowing": {
|
||||
"target": "Package",
|
||||
"version": "[2.16.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\\6.0.400\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
15
Guild/Guild.CLI/obj/Guild.CLI.csproj.nuget.g.props
Normal file
15
Guild/Guild.CLI/obj/Guild.CLI.csproj.nuget.g.props
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Eero\.nuget\packages\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Eero\.nuget\packages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
2
Guild/Guild.CLI/obj/Guild.CLI.csproj.nuget.g.targets
Normal file
2
Guild/Guild.CLI/obj/Guild.CLI.csproj.nuget.g.targets
Normal file
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
1505
Guild/Guild.CLI/obj/project.assets.json
Normal file
1505
Guild/Guild.CLI/obj/project.assets.json
Normal file
File diff suppressed because it is too large
Load Diff
43
Guild/Guild.CLI/obj/project.nuget.cache
Normal file
43
Guild/Guild.CLI/obj/project.nuget.cache
Normal file
@ -0,0 +1,43 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "xv2fHUMCIuCYrSH0tcpsPal/G/rwOHNG/YMO/9lOlwax08qgErgoCjl8ZkhaLWOhnV0L7lMoEtooFQL4cnRbaA==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\dev\\monorepo\\Guild\\Guild.CLI\\Guild.CLI.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\imgui.net\\1.87.3\\imgui.net.1.87.3.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\3.1.6\\microsoft.dotnet.platformabstractions.3.1.6.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\microsoft.extensions.dependencymodel\\6.0.0\\microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net\\2.16.0\\silk.net.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.core\\2.16.0\\silk.net.core.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.direct3d.compilers\\2.16.0\\silk.net.direct3d.compilers.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.direct3d11\\2.16.0\\silk.net.direct3d11.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.dxgi\\2.16.0\\silk.net.dxgi.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.glfw\\2.16.0\\silk.net.glfw.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.input\\2.16.0\\silk.net.input.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.input.common\\2.16.0\\silk.net.input.common.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.input.extensions\\2.16.0\\silk.net.input.extensions.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.input.glfw\\2.16.0\\silk.net.input.glfw.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.input.sdl\\2.16.0\\silk.net.input.sdl.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.maths\\2.16.0\\silk.net.maths.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.openal\\2.16.0\\silk.net.openal.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.opengl\\2.16.0\\silk.net.opengl.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.opengl.extensions.imgui\\2.16.0\\silk.net.opengl.extensions.imgui.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.sdl\\2.16.0\\silk.net.sdl.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.vulkan\\2.16.0\\silk.net.vulkan.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.vulkan.extensions.khr\\2.16.0\\silk.net.vulkan.extensions.khr.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.windowing\\2.16.0\\silk.net.windowing.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.windowing.common\\2.16.0\\silk.net.windowing.common.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.windowing.glfw\\2.16.0\\silk.net.windowing.glfw.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\silk.net.windowing.sdl\\2.16.0\\silk.net.windowing.sdl.2.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\system.text.json\\6.0.0\\system.text.json.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\ultz.native.glfw\\3.3.3.1\\ultz.native.glfw.3.3.3.1.nupkg.sha512",
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\ultz.native.sdl\\2.0.14.1\\ultz.native.sdl.2.0.14.1.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
5
Guild/Guild.Lib/Class1.cs
Normal file
5
Guild/Guild.Lib/Class1.cs
Normal file
@ -0,0 +1,5 @@
|
||||
namespace Guild.Lib;
|
||||
public class Class1
|
||||
{
|
||||
|
||||
}
|
||||
9
Guild/Guild.Lib/Guild.Lib.csproj
Normal file
9
Guild/Guild.Lib/Guild.Lib.csproj
Normal file
@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
63
Guild/Guild.Lib/obj/Guild.Lib.csproj.nuget.dgspec.json
Normal file
63
Guild/Guild.Lib/obj/Guild.Lib.csproj.nuget.dgspec.json
Normal file
@ -0,0 +1,63 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\dev\\monorepo\\Guild\\Guild.Lib\\Guild.Lib.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\dev\\monorepo\\Guild\\Guild.Lib\\Guild.Lib.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\dev\\monorepo\\Guild\\Guild.Lib\\Guild.Lib.csproj",
|
||||
"projectName": "Guild.Lib",
|
||||
"projectPath": "C:\\dev\\monorepo\\Guild\\Guild.Lib\\Guild.Lib.csproj",
|
||||
"packagesPath": "C:\\Users\\Eero\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\dev\\monorepo\\Guild\\Guild.Lib\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Eero\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.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\\6.0.400\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
15
Guild/Guild.Lib/obj/Guild.Lib.csproj.nuget.g.props
Normal file
15
Guild/Guild.Lib/obj/Guild.Lib.csproj.nuget.g.props
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Eero\.nuget\packages\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Eero\.nuget\packages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
2
Guild/Guild.Lib/obj/Guild.Lib.csproj.nuget.g.targets
Normal file
2
Guild/Guild.Lib/obj/Guild.Lib.csproj.nuget.g.targets
Normal file
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
68
Guild/Guild.Lib/obj/project.assets.json
Normal file
68
Guild/Guild.Lib/obj/project.assets.json
Normal file
@ -0,0 +1,68 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net6.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net6.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\dev\\monorepo\\Guild\\Guild.Lib\\Guild.Lib.csproj",
|
||||
"projectName": "Guild.Lib",
|
||||
"projectPath": "C:\\dev\\monorepo\\Guild\\Guild.Lib\\Guild.Lib.csproj",
|
||||
"packagesPath": "C:\\Users\\Eero\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\dev\\monorepo\\Guild\\Guild.Lib\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Eero\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.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\\6.0.400\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
8
Guild/Guild.Lib/obj/project.nuget.cache
Normal file
8
Guild/Guild.Lib/obj/project.nuget.cache
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "eCkue1Onw86DxNg5XoquW+0iIxuKGF5ljAzKxP11C4y25w5K18ldrxCWCvnV/MaEVEroXwZHa/Avgdnu3XHm8A==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\dev\\monorepo\\Guild\\Guild.Lib\\Guild.Lib.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
14
Guild/Guild.sln
Normal file
14
Guild/Guild.sln
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.30114.105
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
BIN
Guild/ItemShop/.vs/Guild/v17/.suo
Normal file
BIN
Guild/ItemShop/.vs/Guild/v17/.suo
Normal file
Binary file not shown.
BIN
Guild/ItemShop/.vs/ItemShop/DesignTimeBuild/.dtbcache.v2
Normal file
BIN
Guild/ItemShop/.vs/ItemShop/DesignTimeBuild/.dtbcache.v2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Guild/ItemShop/.vs/ItemShop/v17/.futdcache.v2
Normal file
BIN
Guild/ItemShop/.vs/ItemShop/v17/.futdcache.v2
Normal file
Binary file not shown.
BIN
Guild/ItemShop/.vs/ItemShop/v17/TestStore/0/000.testlog
Normal file
BIN
Guild/ItemShop/.vs/ItemShop/v17/TestStore/0/000.testlog
Normal file
Binary file not shown.
BIN
Guild/ItemShop/.vs/ItemShop/v17/TestStore/0/testlog.manifest
Normal file
BIN
Guild/ItemShop/.vs/ItemShop/v17/TestStore/0/testlog.manifest
Normal file
Binary file not shown.
BIN
Guild/ItemShop/.vs/ProjectEvaluation/itemshop.metadata.v5.1
Normal file
BIN
Guild/ItemShop/.vs/ProjectEvaluation/itemshop.metadata.v5.1
Normal file
Binary file not shown.
BIN
Guild/ItemShop/.vs/ProjectEvaluation/itemshop.projects.v5.1
Normal file
BIN
Guild/ItemShop/.vs/ProjectEvaluation/itemshop.projects.v5.1
Normal file
Binary file not shown.
25
Guild/ItemShop/.vscode/launch.json
vendored
Normal file
25
Guild/ItemShop/.vscode/launch.json
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": ".NET Core Launch (console)",
|
||||
"type": "coreclr",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "build",
|
||||
"program": "${workspaceFolder}/ItemShop.Test/bin/Debug/net5.0/ItemShop.Test.dll",
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}/ItemShop.Test",
|
||||
"console": "internalConsole",
|
||||
"stopAtEntry": false
|
||||
},
|
||||
{
|
||||
"name": ".NET Core Attach",
|
||||
"type": "coreclr",
|
||||
"request": "attach",
|
||||
"processId": "${command:pickProcess}"
|
||||
}
|
||||
]
|
||||
}
|
||||
42
Guild/ItemShop/.vscode/tasks.json
vendored
Normal file
42
Guild/ItemShop/.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "build",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"build",
|
||||
"${workspaceFolder}/ItemShop.Test/ItemShop.Test.csproj",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "publish",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"publish",
|
||||
"${workspaceFolder}/ItemShop.Test/ItemShop.Test.csproj",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "watch",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"watch",
|
||||
"run",
|
||||
"${workspaceFolder}/ItemShop.Test/ItemShop.Test.csproj",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
}
|
||||
]
|
||||
}
|
||||
10
Guild/ItemShop/Guild.CLI/Guild.CLI.csproj
Normal file
10
Guild/ItemShop/Guild.CLI/Guild.CLI.csproj
Normal file
@ -0,0 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
2
Guild/ItemShop/Guild.CLI/Program.cs
Normal file
2
Guild/ItemShop/Guild.CLI/Program.cs
Normal file
@ -0,0 +1,2 @@
|
||||
// See https://aka.ms/new-console-template for more information
|
||||
Console.WriteLine("Hello, World!");
|
||||
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
||||
@ -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("Guild.CLI")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Guild.CLI")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Guild.CLI")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
@ -0,0 +1 @@
|
||||
b25b9017166f3d4f105d310d9739057173339f84
|
||||
@ -0,0 +1,10 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Guild.CLI
|
||||
build_property.ProjectDir = C:\dev\csharp\ItemShop\Guild.CLI\
|
||||
@ -0,0 +1,8 @@
|
||||
// <auto-generated/>
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
||||
BIN
Guild/ItemShop/Guild.CLI/obj/Debug/net6.0/Guild.CLI.assets.cache
Normal file
BIN
Guild/ItemShop/Guild.CLI/obj/Debug/net6.0/Guild.CLI.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1,63 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\dev\\csharp\\ItemShop\\Guild.CLI\\Guild.CLI.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\dev\\csharp\\ItemShop\\Guild.CLI\\Guild.CLI.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\dev\\csharp\\ItemShop\\Guild.CLI\\Guild.CLI.csproj",
|
||||
"projectName": "Guild.CLI",
|
||||
"projectPath": "C:\\dev\\csharp\\ItemShop\\Guild.CLI\\Guild.CLI.csproj",
|
||||
"packagesPath": "C:\\Users\\Eero\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\dev\\csharp\\ItemShop\\Guild.CLI\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Eero\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.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\\6.0.400\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
15
Guild/ItemShop/Guild.CLI/obj/Guild.CLI.csproj.nuget.g.props
Normal file
15
Guild/ItemShop/Guild.CLI/obj/Guild.CLI.csproj.nuget.g.props
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Eero\.nuget\packages\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Eero\.nuget\packages\" />
|
||||
</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" />
|
||||
68
Guild/ItemShop/Guild.CLI/obj/project.assets.json
Normal file
68
Guild/ItemShop/Guild.CLI/obj/project.assets.json
Normal file
@ -0,0 +1,68 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net6.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net6.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\Eero\\.nuget\\packages\\": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\dev\\csharp\\ItemShop\\Guild.CLI\\Guild.CLI.csproj",
|
||||
"projectName": "Guild.CLI",
|
||||
"projectPath": "C:\\dev\\csharp\\ItemShop\\Guild.CLI\\Guild.CLI.csproj",
|
||||
"packagesPath": "C:\\Users\\Eero\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\dev\\csharp\\ItemShop\\Guild.CLI\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Eero\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.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\\6.0.400\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
8
Guild/ItemShop/Guild.CLI/obj/project.nuget.cache
Normal file
8
Guild/ItemShop/Guild.CLI/obj/project.nuget.cache
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "RUcA8F1gA6HLHHgRp0qLbqQJLjukGT4QvQkSIfVHb9wxBYQJwsy3ZVC9KKzCtdl0wR2rH0wIX6BjU1+O18nL0A==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\dev\\csharp\\ItemShop\\Guild.CLI\\Guild.CLI.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user