This commit is contained in:
2024-03-10 14:25:11 +02:00
parent ddcf2ff24f
commit 4a683ca2c1
3 changed files with 1065 additions and 1060 deletions

18
.gitignore vendored
View File

@@ -1,30 +1,34 @@
/Binaries/* # Folders generated by Flax Engine
/Binaries/*
/Cache/* /Cache/*
/Logs/* /Logs/*
/Output/* /Output/*
*/SceneData/*/Lightmaps/*
*/SceneData/*/SkyLights/*
/*.sln /*.sln
/Source/obj/ /Source/obj/
/Source/*.csproj /Source/*.csproj
/Source/*.Gen.cs /Source/*.Gen.cs
/Source/*.Gen.cpp /Source/*.Gen.cpp
/Source/*.Gen.h /Source/*.Gen.h
# IDE generated files and user settings
*.csproj.user *.csproj.user
*.suo *.suo
*.DotSettings.user *.DotSettings.user
omnisharp.json
.vs/* .vs/*
.vscode/ .vscode/
.idea/* .idea/*
enc_temp_folder/*
*/SceneData/*/Lightmaps/* # Game specific files
*/SceneData/*/SkyLights/*
packages/* packages/*
Tests/bin/ Tests/bin/
Tests/obj/ Tests/obj/
Assets/desktop.ini Assets/desktop.ini
Assets/Maps/autosave/ Assets/Maps/autosave/
Demos/ Demos/
omnisharp.json
console.log console.log
console-1.log console-1.log

File diff suppressed because it is too large Load Diff

View File

@@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<ImplicitUsings>disable</ImplicitUsings> <ImplicitUsings>disable</ImplicitUsings>
<TargetFrameworks>net7.0</TargetFrameworks> <TargetFrameworks>net8.0</TargetFrameworks>
<IsPublishable>False</IsPublishable> <IsPublishable>False</IsPublishable>
<Configurations>Game.Windows.Development;Game.Windows.Debug</Configurations> <Configurations>Game.Windows.Development;Game.Windows.Debug</Configurations>
<Platforms>x64</Platforms> <Platforms>x64</Platforms>