mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
47 lines
1.8 KiB
XML
47 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<Nullable>disable</Nullable>
|
|
<OutputType>Exe</OutputType>
|
|
<RootNamespace>FSO.Server.Debug</RootNamespace>
|
|
<AssemblyName>FSO.Server.Debug</AssemblyName>
|
|
<FileAlignment>512</FileAlignment>
|
|
<IsAotCompatible>false</IsAotCompatible>
|
|
<TrimMode>partial</TrimMode>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<IsAotCompatible>True</IsAotCompatible>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<IsAotCompatible>True</IsAotCompatible>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Be.Windows.Forms.HexBox.Net5" Version="1.8.0" />
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.9" />
|
|
<PackageReference Include="System.Drawing.Common" Version="9.0.9" />
|
|
<PackageReference Include="System.Resources.Extensions" Version="9.0.0" />
|
|
<PackageReference Include="Ninject" Version="3.3.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Resources\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="libs\Be.Windows.Forms.HexBox.dll" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\FSO.Common.DatabaseService\FSO.Common.DatabaseService.csproj" />
|
|
<ProjectReference Include="..\FSO.Server.Common\FSO.Server.Common.csproj" />
|
|
<ProjectReference Include="..\FSO.Server.Protocol\FSO.Server.Protocol.csproj" />
|
|
<ProjectReference Include="..\tso.common\FSO.Common.csproj" />
|
|
<ProjectReference Include="..\tso.content\FSO.Content.csproj" />
|
|
<ProjectReference Include="..\tso.vitaboy.model\FSO.Vitaboy.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|