mysimulation/server/FSO.Server.Domain/FSO.Server.Domain.csproj
Tony Bark 199256785b Port FSO's Server architecture
- FreeSO's older libaries use .NET Standard
- Added TargaImage, needs to be ported
2024-05-06 06:46:27 -04:00

25 lines
No EOL
1.2 KiB
XML
Executable file

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseVSHostingProcess>true</UseVSHostingProcess>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ServerRelease|AnyCPU'">
<OutputPath>bin\ServerRelease\</OutputPath>
<Optimize>true</Optimize>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\FSO.Common.Domain\FSO.Common.Domain.csproj" />
<ProjectReference Include="..\FSO.Server.Common\FSO.Server.Common.csproj" />
<ProjectReference Include="..\FSO.Server.Database\FSO.Server.Database.csproj" />
<ProjectReference Include="..\FSO.Server.Protocol\FSO.Server.Protocol.csproj" />
<ProjectReference Include="..\tso.common\FSO.Common.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Portable.Ninject" Version="3.3.1" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
</ItemGroup>
</Project>