├── .gitignore ├── Bootstrap ├── Bootstrap.vcxproj ├── Bootstrap.vcxproj.filters ├── Main.cpp └── MicrosoftGameConfig.mgc ├── DemoGame ├── DemoGame.csproj ├── Program.cs └── rd.xml ├── LICENSE ├── NativeAOT-GDKX.sln ├── NativeAOT_Console.targets ├── README.md ├── Runtime ├── AsmOffsets.inc ├── PalRedhawkCommonGDKX.cpp ├── PalRedhawkMinWinGDKX.cpp ├── Runtime.vcxproj ├── Runtime.vcxproj.filters ├── StubsGDKX.cpp ├── ThunkPoolThunks.asm ├── eventsource_hack_gdkx.cpp └── gcenv.gdkx.cpp ├── System.Globalization.Native ├── System.Globalization.Native.vcxproj └── System.Globalization.Native.vcxproj.filters ├── System.IO.Compression.Native ├── System.IO.Compression.Native.vcxproj └── System.IO.Compression.Native.vcxproj.filters ├── WindowsAPIs-GDKX.txt └── aot-output └── your generated object files go here.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/.gitignore -------------------------------------------------------------------------------- /Bootstrap/Bootstrap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Bootstrap/Bootstrap.vcxproj -------------------------------------------------------------------------------- /Bootstrap/Bootstrap.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Bootstrap/Bootstrap.vcxproj.filters -------------------------------------------------------------------------------- /Bootstrap/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Bootstrap/Main.cpp -------------------------------------------------------------------------------- /Bootstrap/MicrosoftGameConfig.mgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Bootstrap/MicrosoftGameConfig.mgc -------------------------------------------------------------------------------- /DemoGame/DemoGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/DemoGame/DemoGame.csproj -------------------------------------------------------------------------------- /DemoGame/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/DemoGame/Program.cs -------------------------------------------------------------------------------- /DemoGame/rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/DemoGame/rd.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/LICENSE -------------------------------------------------------------------------------- /NativeAOT-GDKX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/NativeAOT-GDKX.sln -------------------------------------------------------------------------------- /NativeAOT_Console.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/NativeAOT_Console.targets -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/README.md -------------------------------------------------------------------------------- /Runtime/AsmOffsets.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Runtime/AsmOffsets.inc -------------------------------------------------------------------------------- /Runtime/PalRedhawkCommonGDKX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Runtime/PalRedhawkCommonGDKX.cpp -------------------------------------------------------------------------------- /Runtime/PalRedhawkMinWinGDKX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Runtime/PalRedhawkMinWinGDKX.cpp -------------------------------------------------------------------------------- /Runtime/Runtime.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Runtime/Runtime.vcxproj -------------------------------------------------------------------------------- /Runtime/Runtime.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Runtime/Runtime.vcxproj.filters -------------------------------------------------------------------------------- /Runtime/StubsGDKX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Runtime/StubsGDKX.cpp -------------------------------------------------------------------------------- /Runtime/ThunkPoolThunks.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Runtime/ThunkPoolThunks.asm -------------------------------------------------------------------------------- /Runtime/eventsource_hack_gdkx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Runtime/eventsource_hack_gdkx.cpp -------------------------------------------------------------------------------- /Runtime/gcenv.gdkx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/Runtime/gcenv.gdkx.cpp -------------------------------------------------------------------------------- /System.Globalization.Native/System.Globalization.Native.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/System.Globalization.Native/System.Globalization.Native.vcxproj -------------------------------------------------------------------------------- /System.Globalization.Native/System.Globalization.Native.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/System.Globalization.Native/System.Globalization.Native.vcxproj.filters -------------------------------------------------------------------------------- /System.IO.Compression.Native/System.IO.Compression.Native.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/System.IO.Compression.Native/System.IO.Compression.Native.vcxproj -------------------------------------------------------------------------------- /System.IO.Compression.Native/System.IO.Compression.Native.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/System.IO.Compression.Native/System.IO.Compression.Native.vcxproj.filters -------------------------------------------------------------------------------- /WindowsAPIs-GDKX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNA-XNA/NativeAOT-Xbox/HEAD/WindowsAPIs-GDKX.txt -------------------------------------------------------------------------------- /aot-output/your generated object files go here.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------