Initial Commit

This commit is contained in:
2026-02-22 21:53:04 -05:00
commit 10af8b9f9c
309 changed files with 12847 additions and 0 deletions

13
Test8/.idea/.idea.Test8/.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,13 @@
# Default ignored files
/shelf/
/workspace.xml
# Rider ignored files
/contentModel.xml
/modules.xml
/.idea.Test8.iml
/projectSettingsUpdater.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="UserContentModel">
<attachedFolders />
<explicitIncludes />
<explicitExcludes />
</component>
</project>

14
Test8/.idea/.idea.Test8/.idea/misc.xml generated Normal file
View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DiscordProjectSettings">
<option name="show" value="ASK" />
<option name="description" value="" />
<option name="applicationTheme" value="default" />
<option name="iconsTheme" value="default" />
<option name="button1Title" value="" />
<option name="button1Url" value="" />
<option name="button2Title" value="" />
<option name="button2Url" value="" />
<option name="customApplicationId" value="" />
</component>
</project>

6
Test8/.idea/.idea.Test8/.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
</component>
</project>

16
Test8/Test8.sln Normal file
View File

@@ -0,0 +1,16 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test8", "Test8\Test8.csproj", "{960BD2FE-D47D-4B7A-B70D-AA4296A25FA2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{960BD2FE-D47D-4B7A-B70D-AA4296A25FA2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{960BD2FE-D47D-4B7A-B70D-AA4296A25FA2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{960BD2FE-D47D-4B7A-B70D-AA4296A25FA2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{960BD2FE-D47D-4B7A-B70D-AA4296A25FA2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,3 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/AddReferences/RecentPaths/=_002Fhome_002Favery_002FProgramming_002FAwperative_002FAwperativeKernel_002Fbin_002FDebug_002Fnet8_002E0_002FAwperativeKernel_002Edll/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/AddReferences/RecentPaths/=_002Fhome_002Favery_002FProgramming_002FAwperative_002FAwperative_002Fbin_002FDebug_002Fnet8_002E0_002FAwperative_002Edll/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>

View File

@@ -0,0 +1,58 @@
using System.Reflection;
using Awperative;
namespace AwperativeTest2;
public class ConsoleRegistry : Component
{
protected override void Create() {
Priority = int.MinValue;
}
protected override void Update() {
Console.Clear();
List<Component> Targets = Scene.Components.ToList();
for(int i = 0; i < Targets.Count; i++) {
Targets.InsertRange(i + 1, Targets[i].Components);
string output = "| ";
for (int d = 0; d < Targets[i].Parents.Length; d++) {
output += " ";
}
//write name and code
Console.WriteLine(output + Targets[i].GetType().Name + " - " + Targets[i].GetHashCode());
List<string> VariableNames = [];
List<Object?> ShownVariables = [];
foreach (FieldInfo field in Targets[i].GetType().GetFields()) {
foreach (Attribute attribute in field.GetCustomAttributes(typeof(Show), false)) {
if (attribute is Show show) {
VariableNames.Add(field.Name);
ShownVariables.Add(field.GetValue(Targets[i]));
}
}
}
foreach (PropertyInfo property in Targets[i].GetType().GetProperties()) {
foreach (Attribute attribute in property.GetCustomAttributes(typeof(Show), false)) {
if (attribute is Show show) {
VariableNames.Add(property.Name);
ShownVariables.Add(property.GetValue(Targets[i]));
}
}
}
for(int s = 0; s < ShownVariables.Count; s++) {
Console.WriteLine(output + " " + VariableNames[s] + " - " + ShownVariables[s]);
}
Console.WriteLine("|");
}
}
}

View File

@@ -0,0 +1,9 @@
namespace AwperativeTest2;
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class HideInView : Attribute
{
public HideInView() {}
}

36
Test8/Test8/Program.cs Normal file
View File

@@ -0,0 +1,36 @@
using Awperative;
using AwperativeTest2;
Awperative.Awperative.Start();
Debug.LogState("Successfully Opened Awperative!!");
Console.WriteLine("HELLO WORLD!");
Scene TestScene = Awperative.Awperative.CreateScene("Test");
ConsoleRegistry aa = TestScene.Add<ConsoleRegistry>();
for(int i = 0; i < 2; i++)
aa.Add<TestComponent>();
TestScene.Add<TestComponent>();
TestComponent TestComponent = TestScene.Add<TestComponent>();
Debug.LogState("Successfully Opened TestComponent!! " + TestComponent.GetHashCode());
TestComponent.Add<TestComponent>();
TestComponent bb = aa.Add<TestComponent>();
bb.Add<TestComponent>();
bb.Add<TestComponent>();
TestComponent cc = bb.Add<TestComponent>();
cc.Add<TestComponent>();
Console.WriteLine("Hello World!");
Awperative.Awperative.Run();

11
Test8/Test8/Show.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace AwperativeTest2;
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class Show : Attribute
{
public bool UseInspectorDefaults = true;
public Show() {}
}

27
Test8/Test8/Test8.csproj Normal file
View File

@@ -0,0 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Reference Include="Awperative">
<HintPath>..\..\Awperative\Awperative\bin\Debug\net8.0\Awperative.dll</HintPath>
</Reference>
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*"/>
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*"/>
<Reference Include="AwperativeKernel">
<HintPath>..\..\Awperative\AwperativeKernel\bin\Debug\net8.0\AwperativeKernel.dll</HintPath>
</Reference>
</ItemGroup>
</Project>

View File

@@ -0,0 +1,16 @@
using Awperative;
namespace AwperativeTest2;
public class TestComponent : Component
{
[Show]
public float TestFloat = 3.14f;
[Show]
public string TestString = "Hello World!";
public bool TestBool = true;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,196 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v9.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v9.0": {
"Test8/1.0.0": {
"dependencies": {
"MonoGame.Content.Builder.Task": "3.8.4.1",
"MonoGame.Framework.DesktopGL": "3.8.4.1",
"AwperativeKernel": "1.0.0.0"
},
"runtime": {
"Test8.dll": {}
}
},
"MonoGame.Content.Builder.Task/3.8.4.1": {},
"MonoGame.Framework.DesktopGL/3.8.4.1": {
"dependencies": {
"MonoGame.Library.OpenAL": "1.24.3.2",
"MonoGame.Library.SDL": "2.32.2.1",
"NVorbis": "0.10.4"
},
"runtime": {
"lib/net8.0/MonoGame.Framework.dll": {
"assemblyVersion": "3.8.4.1",
"fileVersion": "3.8.4.1"
}
}
},
"MonoGame.Library.OpenAL/1.24.3.2": {
"runtimeTargets": {
"runtimes/android-arm/native/libopenal.so": {
"rid": "android-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/android-arm64/native/libopenal.so": {
"rid": "android-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/android-x64/native/libopenal.so": {
"rid": "android-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/android-x86/native/libopenal.so": {
"rid": "android-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/ios-arm64/native/libopenal.a": {
"rid": "ios-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/iossimulator-arm64/native/libopenal.a": {
"rid": "iossimulator-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/iossimulator-x64/native/libopenal.a": {
"rid": "iossimulator-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-arm64/native/libopenal.so": {
"rid": "linux-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/libopenal.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/osx/native/libopenal.dylib": {
"rid": "osx",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/openal.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"MonoGame.Library.SDL/2.32.2.1": {
"runtimeTargets": {
"runtimes/linux-x64/native/libSDL2-2.0.so.0": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/osx/native/libSDL2-2.0.0.dylib": {
"rid": "osx",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/SDL2.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"NVorbis/0.10.4": {
"dependencies": {
"System.Memory": "4.5.3",
"System.ValueTuple": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/NVorbis.dll": {
"assemblyVersion": "0.10.4.0",
"fileVersion": "0.10.4.0"
}
}
},
"System.Memory/4.5.3": {},
"System.ValueTuple/4.5.0": {},
"AwperativeKernel/1.0.0.0": {
"runtime": {
"AwperativeKernel.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.0"
}
}
}
}
},
"libraries": {
"Test8/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"MonoGame.Content.Builder.Task/3.8.4.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-jf6IZXMiOhuybRaWQt//u+804yzMRGk3ZRvlBJG/0iusRwTunJsQvA6tMMJJc7gjUrY6rUkzRqwinKWXugyHfA==",
"path": "monogame.content.builder.task/3.8.4.1",
"hashPath": "monogame.content.builder.task.3.8.4.1.nupkg.sha512"
},
"MonoGame.Framework.DesktopGL/3.8.4.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YybxIIT5+Ky78E/XdkS0glyluMr2EeDZwx2LqXULAOCqiKt1+aDrjPZaqLL5qpNgBcMEHUeZJ4YjWe4TAZlWLw==",
"path": "monogame.framework.desktopgl/3.8.4.1",
"hashPath": "monogame.framework.desktopgl.3.8.4.1.nupkg.sha512"
},
"MonoGame.Library.OpenAL/1.24.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-nGRsXQXs+NSUC3C5w90hFQfyKdZPpBnHnyg2w+Dw/2pUH7s+CoRWTJNYbzzdJf3+aeUvfvG4rTbFvMKDDj5olA==",
"path": "monogame.library.openal/1.24.3.2",
"hashPath": "monogame.library.openal.1.24.3.2.nupkg.sha512"
},
"MonoGame.Library.SDL/2.32.2.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-T4E2ppGlSTC2L9US1rxtdg3qTbarRzNId31xZoumUW9cf9Nq8nRQPMu9GzvZGrhfSySf0+UWPEj1rlicps+P/w==",
"path": "monogame.library.sdl/2.32.2.1",
"hashPath": "monogame.library.sdl.2.32.2.1.nupkg.sha512"
},
"NVorbis/0.10.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WYnil3DhQHzjCY0dM9I2B3r1vWip90AOuQd25KE4NrjPQBg0tBJFluRLm5YPnO5ZLDmwrfosY8jCQGQRmWI/Pg==",
"path": "nvorbis/0.10.4",
"hashPath": "nvorbis.0.10.4.nupkg.sha512"
},
"System.Memory/4.5.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
"path": "system.memory/4.5.3",
"hashPath": "system.memory.4.5.3.nupkg.sha512"
},
"System.ValueTuple/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
"path": "system.valuetuple/4.5.0",
"hashPath": "system.valuetuple.4.5.0.nupkg.sha512"
},
"AwperativeKernel/1.0.0.0": {
"type": "reference",
"serviceable": false,
"sha512": ""
}
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"runtimeOptions": {
"tfm": "net9.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "9.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]

View 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("Test8")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Test8")]
[assembly: System.Reflection.AssemblyTitleAttribute("Test8")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
6cf38f359c92ea331448605f98ea7cdc6293103c0326b90e854e29e93b9085ff

View File

@@ -0,0 +1,15 @@
is_global = true
build_property.TargetFramework = net9.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Test8
build_property.ProjectDir = /home/avery/Programming/Test8/Test8/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 9.0
build_property.EnableCodeStyleSeverity =

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

Binary file not shown.

View File

@@ -0,0 +1 @@
a73ddbc66dde3ed21aa92ab37861f203214cd858fd2d0ee97f10e7c579b7eea3

View File

@@ -0,0 +1,35 @@
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/Test8
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/Test8.deps.json
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/Test8.runtimeconfig.json
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/Test8.dll
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/Test8.pdb
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/MonoGame.Framework.dll
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/NVorbis.dll
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/android-arm/native/libopenal.so
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/android-arm64/native/libopenal.so
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/android-x64/native/libopenal.so
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/android-x86/native/libopenal.so
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/ios-arm64/native/libopenal.a
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/iossimulator-arm64/native/libopenal.a
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/iossimulator-x64/native/libopenal.a
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/linux-arm64/native/libopenal.so
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/linux-x64/native/libopenal.so
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/osx/native/libopenal.dylib
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/win-x64/native/openal.dll
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/linux-x64/native/libSDL2-2.0.so.0
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/osx/native/libSDL2-2.0.0.dylib
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/runtimes/win-x64/native/SDL2.dll
/home/avery/Programming/Test8/Test8/obj/Debug/net9.0/mgcb.tool.restore
/home/avery/Programming/Test8/Test8/obj/Debug/net9.0/Test8.csproj.AssemblyReference.cache
/home/avery/Programming/Test8/Test8/obj/Debug/net9.0/Test8.GeneratedMSBuildEditorConfig.editorconfig
/home/avery/Programming/Test8/Test8/obj/Debug/net9.0/Test8.AssemblyInfoInputs.cache
/home/avery/Programming/Test8/Test8/obj/Debug/net9.0/Test8.AssemblyInfo.cs
/home/avery/Programming/Test8/Test8/obj/Debug/net9.0/Test8.csproj.CoreCompileInputs.cache
/home/avery/Programming/Test8/Test8/obj/Debug/net9.0/Test8.csproj.Up2Date
/home/avery/Programming/Test8/Test8/obj/Debug/net9.0/Test8.dll
/home/avery/Programming/Test8/Test8/obj/Debug/net9.0/refint/Test8.dll
/home/avery/Programming/Test8/Test8/obj/Debug/net9.0/Test8.pdb
/home/avery/Programming/Test8/Test8/obj/Debug/net9.0/Test8.genruntimeconfig.cache
/home/avery/Programming/Test8/Test8/obj/Debug/net9.0/ref/Test8.dll
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/AwperativeKernel.dll
/home/avery/Programming/Test8/Test8/bin/Debug/net9.0/AwperativeKernel.pdb

Binary file not shown.

View File

@@ -0,0 +1 @@
5cbdb2d98920e62015365a3db21ddcf27eb53f53a88e540b755638f2335c20c3

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,77 @@
{
"format": 1,
"restore": {
"/home/avery/Programming/Test8/Test8/Test8.csproj": {}
},
"projects": {
"/home/avery/Programming/Test8/Test8/Test8.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/home/avery/Programming/Test8/Test8/Test8.csproj",
"projectName": "Test8",
"projectPath": "/home/avery/Programming/Test8/Test8/Test8.csproj",
"packagesPath": "/home/avery/.nuget/packages/",
"outputPath": "/home/avery/Programming/Test8/Test8/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/avery/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net9.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
},
"SdkAnalysisLevel": "9.0.300"
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"dependencies": {
"MonoGame.Content.Builder.Task": {
"target": "Package",
"version": "[3.8.*, )"
},
"MonoGame.Framework.DesktopGL": {
"target": "Package",
"version": "[3.8.*, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/home/avery/.dotnet/sdk/9.0.311/PortableRuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,18 @@
<?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)' == '' ">/home/avery/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/avery/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/avery/.nuget/packages/" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)monogame.content.builder.task/3.8.4.1/build/MonoGame.Content.Builder.Task.props" Condition="Exists('$(NuGetPackageRoot)monogame.content.builder.task/3.8.4.1/build/MonoGame.Content.Builder.Task.props')" />
</ImportGroup>
</Project>

View File

@@ -0,0 +1,7 @@
<?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)monogame.framework.desktopgl/3.8.4.1/build/MonoGame.Framework.DesktopGL.targets" Condition="Exists('$(NuGetPackageRoot)monogame.framework.desktopgl/3.8.4.1/build/MonoGame.Framework.DesktopGL.targets')" />
<Import Project="$(NuGetPackageRoot)monogame.content.builder.task/3.8.4.1/build/MonoGame.Content.Builder.Task.targets" Condition="Exists('$(NuGetPackageRoot)monogame.content.builder.task/3.8.4.1/build/MonoGame.Content.Builder.Task.targets')" />
</ImportGroup>
</Project>

View File

@@ -0,0 +1,369 @@
{
"version": 3,
"targets": {
"net9.0": {
"MonoGame.Content.Builder.Task/3.8.4.1": {
"type": "package",
"build": {
"build/MonoGame.Content.Builder.Task.props": {},
"build/MonoGame.Content.Builder.Task.targets": {}
}
},
"MonoGame.Framework.DesktopGL/3.8.4.1": {
"type": "package",
"dependencies": {
"MonoGame.Library.OpenAL": "1.24.3.2",
"MonoGame.Library.SDL": "2.32.2.1",
"NVorbis": "0.10.4"
},
"compile": {
"lib/net8.0/MonoGame.Framework.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net8.0/MonoGame.Framework.dll": {
"related": ".xml"
}
},
"build": {
"build/MonoGame.Framework.DesktopGL.targets": {}
}
},
"MonoGame.Library.OpenAL/1.24.3.2": {
"type": "package",
"runtimeTargets": {
"runtimes/android-arm/native/libopenal.so": {
"assetType": "native",
"rid": "android-arm"
},
"runtimes/android-arm64/native/libopenal.so": {
"assetType": "native",
"rid": "android-arm64"
},
"runtimes/android-x64/native/libopenal.so": {
"assetType": "native",
"rid": "android-x64"
},
"runtimes/android-x86/native/libopenal.so": {
"assetType": "native",
"rid": "android-x86"
},
"runtimes/ios-arm64/native/libopenal.a": {
"assetType": "native",
"rid": "ios-arm64"
},
"runtimes/iossimulator-arm64/native/libopenal.a": {
"assetType": "native",
"rid": "iossimulator-arm64"
},
"runtimes/iossimulator-x64/native/libopenal.a": {
"assetType": "native",
"rid": "iossimulator-x64"
},
"runtimes/linux-arm64/native/libopenal.so": {
"assetType": "native",
"rid": "linux-arm64"
},
"runtimes/linux-x64/native/libopenal.so": {
"assetType": "native",
"rid": "linux-x64"
},
"runtimes/osx/native/libopenal.dylib": {
"assetType": "native",
"rid": "osx"
},
"runtimes/win-x64/native/openal.dll": {
"assetType": "native",
"rid": "win-x64"
}
}
},
"MonoGame.Library.SDL/2.32.2.1": {
"type": "package",
"runtimeTargets": {
"runtimes/linux-x64/native/libSDL2-2.0.so.0": {
"assetType": "native",
"rid": "linux-x64"
},
"runtimes/osx/native/libSDL2-2.0.0.dylib": {
"assetType": "native",
"rid": "osx"
},
"runtimes/win-x64/native/SDL2.dll": {
"assetType": "native",
"rid": "win-x64"
}
}
},
"NVorbis/0.10.4": {
"type": "package",
"dependencies": {
"System.Memory": "4.5.3",
"System.ValueTuple": "4.5.0"
},
"compile": {
"lib/netstandard2.0/NVorbis.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/netstandard2.0/NVorbis.dll": {
"related": ".xml"
}
}
},
"System.Memory/4.5.3": {
"type": "package",
"compile": {
"ref/netcoreapp2.1/_._": {}
},
"runtime": {
"lib/netcoreapp2.1/_._": {}
}
},
"System.ValueTuple/4.5.0": {
"type": "package",
"compile": {
"ref/netcoreapp2.0/_._": {}
},
"runtime": {
"lib/netcoreapp2.0/_._": {}
}
}
}
},
"libraries": {
"MonoGame.Content.Builder.Task/3.8.4.1": {
"sha512": "jf6IZXMiOhuybRaWQt//u+804yzMRGk3ZRvlBJG/0iusRwTunJsQvA6tMMJJc7gjUrY6rUkzRqwinKWXugyHfA==",
"type": "package",
"path": "monogame.content.builder.task/3.8.4.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"build/MonoGame.Content.Builder.Task.props",
"build/MonoGame.Content.Builder.Task.targets",
"monogame.content.builder.task.3.8.4.1.nupkg.sha512",
"monogame.content.builder.task.nuspec"
]
},
"MonoGame.Framework.DesktopGL/3.8.4.1": {
"sha512": "YybxIIT5+Ky78E/XdkS0glyluMr2EeDZwx2LqXULAOCqiKt1+aDrjPZaqLL5qpNgBcMEHUeZJ4YjWe4TAZlWLw==",
"type": "package",
"path": "monogame.framework.desktopgl/3.8.4.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"README-packages.md",
"build/MonoGame.Framework.DesktopGL.targets",
"lib/net8.0/MonoGame.Framework.dll",
"lib/net8.0/MonoGame.Framework.xml",
"monogame.framework.desktopgl.3.8.4.1.nupkg.sha512",
"monogame.framework.desktopgl.nuspec"
]
},
"MonoGame.Library.OpenAL/1.24.3.2": {
"sha512": "nGRsXQXs+NSUC3C5w90hFQfyKdZPpBnHnyg2w+Dw/2pUH7s+CoRWTJNYbzzdJf3+aeUvfvG4rTbFvMKDDj5olA==",
"type": "package",
"path": "monogame.library.openal/1.24.3.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE",
"README.md",
"monogame.library.openal.1.24.3.2.nupkg.sha512",
"monogame.library.openal.nuspec",
"runtimes/android-arm/native/libopenal.so",
"runtimes/android-arm64/native/libopenal.so",
"runtimes/android-x64/native/libopenal.so",
"runtimes/android-x86/native/libopenal.so",
"runtimes/ios-arm64/native/libopenal.a",
"runtimes/iossimulator-arm64/native/libopenal.a",
"runtimes/iossimulator-x64/native/libopenal.a",
"runtimes/linux-arm64/native/libopenal.so",
"runtimes/linux-x64/native/libopenal.so",
"runtimes/osx/native/libopenal.dylib",
"runtimes/win-x64/native/openal.dll"
]
},
"MonoGame.Library.SDL/2.32.2.1": {
"sha512": "T4E2ppGlSTC2L9US1rxtdg3qTbarRzNId31xZoumUW9cf9Nq8nRQPMu9GzvZGrhfSySf0+UWPEj1rlicps+P/w==",
"type": "package",
"path": "monogame.library.sdl/2.32.2.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.txt",
"README.md",
"monogame.library.sdl.2.32.2.1.nupkg.sha512",
"monogame.library.sdl.nuspec",
"runtimes/linux-x64/native/libSDL2-2.0.so.0",
"runtimes/osx/native/libSDL2-2.0.0.dylib",
"runtimes/win-x64/native/SDL2.dll"
]
},
"NVorbis/0.10.4": {
"sha512": "WYnil3DhQHzjCY0dM9I2B3r1vWip90AOuQd25KE4NrjPQBg0tBJFluRLm5YPnO5ZLDmwrfosY8jCQGQRmWI/Pg==",
"type": "package",
"path": "nvorbis/0.10.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE",
"lib/net45/NVorbis.dll",
"lib/net45/NVorbis.xml",
"lib/netstandard2.0/NVorbis.dll",
"lib/netstandard2.0/NVorbis.xml",
"nvorbis.0.10.4.nupkg.sha512",
"nvorbis.nuspec"
]
},
"System.Memory/4.5.3": {
"sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
"type": "package",
"path": "system.memory/4.5.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/netcoreapp2.1/_._",
"lib/netstandard1.1/System.Memory.dll",
"lib/netstandard1.1/System.Memory.xml",
"lib/netstandard2.0/System.Memory.dll",
"lib/netstandard2.0/System.Memory.xml",
"ref/netcoreapp2.1/_._",
"system.memory.4.5.3.nupkg.sha512",
"system.memory.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.ValueTuple/4.5.0": {
"sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
"type": "package",
"path": "system.valuetuple/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net461/System.ValueTuple.dll",
"lib/net461/System.ValueTuple.xml",
"lib/net47/System.ValueTuple.dll",
"lib/net47/System.ValueTuple.xml",
"lib/netcoreapp2.0/_._",
"lib/netstandard1.0/System.ValueTuple.dll",
"lib/netstandard1.0/System.ValueTuple.xml",
"lib/netstandard2.0/_._",
"lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
"lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml",
"lib/uap10.0.16299/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net461/System.ValueTuple.dll",
"ref/net47/System.ValueTuple.dll",
"ref/netcoreapp2.0/_._",
"ref/netstandard2.0/_._",
"ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
"ref/uap10.0.16299/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.valuetuple.4.5.0.nupkg.sha512",
"system.valuetuple.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
}
},
"projectFileDependencyGroups": {
"net9.0": [
"MonoGame.Content.Builder.Task >= 3.8.*",
"MonoGame.Framework.DesktopGL >= 3.8.*"
]
},
"packageFolders": {
"/home/avery/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/home/avery/Programming/Test8/Test8/Test8.csproj",
"projectName": "Test8",
"projectPath": "/home/avery/Programming/Test8/Test8/Test8.csproj",
"packagesPath": "/home/avery/.nuget/packages/",
"outputPath": "/home/avery/Programming/Test8/Test8/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/avery/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net9.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
},
"SdkAnalysisLevel": "9.0.300"
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"dependencies": {
"MonoGame.Content.Builder.Task": {
"target": "Package",
"version": "[3.8.*, )"
},
"MonoGame.Framework.DesktopGL": {
"target": "Package",
"version": "[3.8.*, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/home/avery/.dotnet/sdk/9.0.311/PortableRuntimeIdentifierGraph.json"
}
}
}
}

View File

@@ -0,0 +1,16 @@
{
"version": 2,
"dgSpecHash": "1vnGDWKhrg4=",
"success": true,
"projectFilePath": "/home/avery/Programming/Test8/Test8/Test8.csproj",
"expectedPackageFiles": [
"/home/avery/.nuget/packages/monogame.content.builder.task/3.8.4.1/monogame.content.builder.task.3.8.4.1.nupkg.sha512",
"/home/avery/.nuget/packages/monogame.framework.desktopgl/3.8.4.1/monogame.framework.desktopgl.3.8.4.1.nupkg.sha512",
"/home/avery/.nuget/packages/monogame.library.openal/1.24.3.2/monogame.library.openal.1.24.3.2.nupkg.sha512",
"/home/avery/.nuget/packages/monogame.library.sdl/2.32.2.1/monogame.library.sdl.2.32.2.1.nupkg.sha512",
"/home/avery/.nuget/packages/nvorbis/0.10.4/nvorbis.0.10.4.nupkg.sha512",
"/home/avery/.nuget/packages/system.memory/4.5.3/system.memory.4.5.3.nupkg.sha512",
"/home/avery/.nuget/packages/system.valuetuple/4.5.0/system.valuetuple.4.5.0.nupkg.sha512"
],
"logs": []
}

View File

@@ -0,0 +1 @@
"restore":{"projectUniqueName":"/home/avery/Programming/Test8/Test8/Test8.csproj","projectName":"Test8","projectPath":"/home/avery/Programming/Test8/Test8/Test8.csproj","outputPath":"/home/avery/Programming/Test8/Test8/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"MonoGame.Content.Builder.Task":{"target":"Package","version":"[3.8.*, )"},"MonoGame.Framework.DesktopGL":{"target":"Package","version":"[3.8.*, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/avery/.dotnet/sdk/9.0.311/PortableRuntimeIdentifierGraph.json"}}

View File

@@ -0,0 +1 @@
17712685249695756

View File

@@ -0,0 +1 @@
17712685249695756