Refactor project into smaller chunks

This commit is contained in:
Alex
2025-01-19 17:45:48 +00:00
parent 0da8875946
commit b5240a615e
719 changed files with 376 additions and 325 deletions
+24 -9
View File
@@ -1,14 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Libraries\Core\Core.csproj">
<Private>false</Private>
<CopyLocal>false</CopyLocal>
<CopyLocalSatelliteAssemblies>false</CopyLocalSatelliteAssemblies>
</ProjectReference>
<ProjectReference Include="..\Libraries\SptDependencyInjection\SptDependencyInjection.csproj">
<Private>false</Private>
<CopyLocal>false</CopyLocal>
<CopyLocalSatelliteAssemblies>false</CopyLocalSatelliteAssemblies>
</ProjectReference>
<ProjectReference Include="..\SptCommon\SptCommon.csproj">
<Private>false</Private>
<CopyLocal>false</CopyLocal>
<CopyLocalSatelliteAssemblies>false</CopyLocalSatelliteAssemblies>
</ProjectReference>
</ItemGroup>
</Project>
+1 -1
View File
@@ -1,4 +1,4 @@
using Core.Annotations;
using SptCommon.Annotations;
using Core.Models.Enums;
using Core.Models.Spt.Config;
using Core.Servers;
+1 -1
View File
@@ -1,4 +1,4 @@
using Core.Annotations;
using SptCommon.Annotations;
using Core.Models.Eft.Hideout;
using Core.Models.Enums;
using Core.Models.Utils;
+1 -1
View File
@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Core.Annotations;
using SptCommon.Annotations;
using Core.Models.Logging;
using Core.Models.Utils;
@@ -1,4 +1,4 @@
using Core.Annotations;
using SptCommon.Annotations;
using Core.Models.Utils;
using Core.Servers;
using Core.Services;
-2
View File
@@ -1,2 +0,0 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");