-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
fusion
committed
Sep 23, 2023
1 parent
5bef764
commit 3afd56c
Showing
4 changed files
with
112 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net5.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 16 | ||
VisualStudioVersion = 16.0.31727.386 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UTanksServer", "UTanksServer\UTanksServer.csproj", "{B4EBBEC0-4C84-4D18-BA6C-38B5B9E7DDB7}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{B4EBBEC0-4C84-4D18-BA6C-38B5B9E7DDB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{B4EBBEC0-4C84-4D18-BA6C-38B5B9E7DDB7}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{B4EBBEC0-4C84-4D18-BA6C-38B5B9E7DDB7}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{B4EBBEC0-4C84-4D18-BA6C-38B5B9E7DDB7}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {544380A2-8B9D-425C-8D23-568D68DD4FBC} | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows> | ||
<IsOSX Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">true</IsOSX> | ||
<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">true</IsLinux> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(IsWindows)'=='true'"> | ||
<DefineConstants>Windows</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(IsOSX)'=='true'"> | ||
<DefineConstants>OSX</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(IsLinux)'=='true'"> | ||
<DefineConstants>Linux</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<WarningLevel>0</WarningLevel> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="AuthECSComponents\**" /> | ||
<Compile Remove="BattleECSComponents\**" /> | ||
<Compile Remove="ChatECSComponents\**" /> | ||
<Compile Remove="ConfigReader\**" /> | ||
<Compile Remove="DBDataDeliveryECSComponents\**" /> | ||
<Compile Remove="GarageECSComponents\**" /> | ||
<Compile Remove="LobbyECSComponents\**" /> | ||
<Compile Remove="NetworkDataDeliveryECSComponents\**" /> | ||
<Compile Remove="System\**" /> | ||
<Compile Remove="UserECSComponents\**" /> | ||
<EmbeddedResource Remove="AuthECSComponents\**" /> | ||
<EmbeddedResource Remove="BattleECSComponents\**" /> | ||
<EmbeddedResource Remove="ChatECSComponents\**" /> | ||
<EmbeddedResource Remove="ConfigReader\**" /> | ||
<EmbeddedResource Remove="DBDataDeliveryECSComponents\**" /> | ||
<EmbeddedResource Remove="GarageECSComponents\**" /> | ||
<EmbeddedResource Remove="LobbyECSComponents\**" /> | ||
<EmbeddedResource Remove="NetworkDataDeliveryECSComponents\**" /> | ||
<EmbeddedResource Remove="System\**" /> | ||
<EmbeddedResource Remove="UserECSComponents\**" /> | ||
<None Remove="AuthECSComponents\**" /> | ||
<None Remove="BattleECSComponents\**" /> | ||
<None Remove="ChatECSComponents\**" /> | ||
<None Remove="ConfigReader\**" /> | ||
<None Remove="DBDataDeliveryECSComponents\**" /> | ||
<None Remove="GarageECSComponents\**" /> | ||
<None Remove="LobbyECSComponents\**" /> | ||
<None Remove="NetworkDataDeliveryECSComponents\**" /> | ||
<None Remove="System\**" /> | ||
<None Remove="UserECSComponents\**" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="EmbedIO" Version="3.4.3" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.12" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.12" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="5.0.2" /> | ||
<PackageReference Include="RestSharp" Version="106.13.0" /> | ||
<PackageReference Include="Serilog" Version="2.10.0" /> | ||
<PackageReference Include="SharpZipLib" Version="1.3.3" /> | ||
<PackageReference Include="System.Data.SQLite" Version="1.0.115.5" /> | ||
<PackageReference Include="YamlDotNet" Version="11.2.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="ECS\DataAccumulationSystem\" /> | ||
<Folder Include="ECS\ComponentsWithLogic\" /> | ||
<Folder Include="ECS\Events\Lobby\" /> | ||
<Folder Include="Core\" /> | ||
</ItemGroup> | ||
|
||
</Project> |