mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 09:22:24 +00:00
54 lines
No EOL
2.4 KiB
XML
Executable file
54 lines
No EOL
2.4 KiB
XML
Executable file
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net45</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|
<UseVSHostingProcess>true</UseVSHostingProcess>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ServerRelease|AnyCPU'">
|
|
<OutputPath>bin\ServerRelease\</OutputPath>
|
|
<Optimize>true</Optimize>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Be.Windows.Forms.HexBox, Version=1.5.0.30785, Culture=neutral, PublicKeyToken=e0e5adf0ebc99863, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>libs\Be.Windows.Forms.HexBox.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="ScintillaNET">
|
|
<HintPath>libs\ScintillaNET.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="PacketView.cs">
|
|
<SubType>UserControl</SubType>
|
|
</Compile>
|
|
</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.files\FSO.Files.csproj" />
|
|
<ProjectReference Include="..\tso.vitaboy.model\FSO.Vitaboy.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Resources\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="libs\Be.Windows.Forms.HexBox.dll" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Common.Logging" Version="3.4.1" />
|
|
<PackageReference Include="Common.Logging.Core" Version="3.4.1" />
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.3.0" />
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
|
<PackageReference Include="Mina" Version="2.0.11" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
|
<PackageReference Include="Portable.Ninject" Version="3.3.1" />
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
|
</ItemGroup>
|
|
</Project> |