2020-08-29 18:27:44 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
|
|
|
|
|
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
|
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
|
<RootNamespace>Server</RootNamespace>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<DefineConstants>NEWTIMERS;ServUO</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Server\Server.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
2021-01-06 16:27:18 +00:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Reference Include="System.Web" />
|
|
|
|
|
|
</ItemGroup>
|
2020-03-24 16:05:36 -07:00
|
|
|
|
</Project>
|