2024-05-02 03:02:26 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-05-01 02:55:43 -04:00
|
|
|
|
<PropertyGroup>
|
2024-05-06 06:46:27 -04:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-05-01 02:55:43 -04:00
|
|
|
|
<OutputType>Library</OutputType>
|
2024-05-02 03:02:26 -04:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2024-05-01 02:55:43 -04:00
|
|
|
|
<UseVSHostingProcess>true</UseVSHostingProcess>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ServerRelease|AnyCPU'">
|
|
|
|
|
<OutputPath>bin\ServerRelease\</OutputPath>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2024-05-02 03:02:26 -04:00
|
|
|
|
<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" />
|
2024-05-01 02:55:43 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2024-05-02 03:02:26 -04:00
|
|
|
|
<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" />
|
2024-05-01 02:55:43 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|