mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
* Properly implement ICommodity.Description in CommodityDeed tooltips. * Improve arbitrary formatting for merge compatibility. * Fix a timer dump export error. * Remove redundant missing file from csproj list. * Add an overload for Gump.AddTooltip that takes a single string argument. * Fix access level checks for VvV potions. * Rename Server.Items.Size enum to Server.Items.ItemSize to prevent ambiguity with System.Drawing.Size. * Add helper method for adding TextDefinitions to gumps as a tooltip. * Collection rewards now support TextDefinition tooltips. * Removed conflicting AddTooltip(string text) * Fixed Compile error with new ToolTip Support. Co-authored-by: TrueUO <staff@trueuo.com> Co-authored-by: Dexter <kevin_bourne10@yahoo.com>
31 lines
No EOL
1 KiB
XML
31 lines
No EOL
1 KiB
XML
<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" />
|
|
<ProjectReference Include="..\Ultima\Ultima.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="System.Web" />
|
|
</ItemGroup>
|
|
</Project> |