I Have this Errors
policy [C:\Users\rober\Desktop\ServUO\ServUO-master\Server\Server.csproj]
Server -> C:\Users\rober\Desktop\ServUO\ServUO-master\Server\bin\Release\Server.dll
C:\Program Files\dotnet\sdk\8.0.100-preview.3.23178.7\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInf
erence.targets(287,5): message NETSDK1057: You are using a preview version of .NET. See:
A book lover's paradise
policy [C:\Users\rober\Desktop\ServUO\ServUO-master\Scripts\Scripts.csproj]
C:\Users\rober\Desktop\ServUO\ServUO-master\Scripts\Custome's\UltimaLive-master\ServerSideScripts\Core\PlayerMobilePart
ial.cs(10,48): error CS0246: The type or namespace name 'IHonorTarget' could not be found (are you missing a using dire
ctive or an assembly reference?) [C:\Users\rober\Desktop\ServUO\ServUO-master\Scripts\Scripts.csproj]
C:\Users\rober\Desktop\ServUO\ServUO-master\Scripts\Custome's\UltimaLive-master\ServerSideScripts\GraphicBasedHarvestSy
stems\LumberHarvest\LumberHarvest.cs(94,24): warning CS0108: 'UltimaLiveLumberjacking.Configure()' hides inherited memb
er 'HarvestSystem.Configure()'. Use the new keyword if hiding was intended. [C:\Users\rober\Desktop\ServUO\ServUO-maste
r\Scripts\Scripts.csproj]
Build FAILED.
C:\Users\rober\Desktop\ServUO\ServUO-master\Scripts\Custome's\UltimaLive-master\ServerSideScripts\GraphicBasedHarvestSy
stems\LumberHarvest\LumberHarvest.cs(94,24): warning CS0108: 'UltimaLiveLumberjacking.Configure()' hides inherited memb
er 'HarvestSystem.Configure()'. Use the new keyword if hiding was intended. [C:\Users\rober\Desktop\ServUO\ServUO-maste
r\Scripts\Scripts.csproj]
C:\Users\rober\Desktop\ServUO\ServUO-master\Scripts\Custome's\UltimaLive-master\ServerSideScripts\Core\PlayerMobilePart
ial.cs(10,48): error CS0246: The type or namespace name 'IHonorTarget' could not be found (are you missing a using dire
ctive or an assembly reference?) [C:\Users\rober\Desktop\ServUO\ServUO-master\Scripts\Scripts.csproj]
1 Warning(s)
1 Error(s)
using System;
namespace Server.Mobiles
{
public interface UltimaLiveQuery
{
int QueryMobile(Mobile m, int previousBlock);
}
public partial class PlayerMobile : Mobile, IHonorTarget
{
public static UltimaLiveQuery BlockQuery;
private int m_PreviousMapBlock = -1;
private int m_UltimaLiveMajorVersion = 0;
private int m_UltimaLiveMinorVersion = 0;
[CommandProperty(AccessLevel.GameMaster, true)]
public int UltimaLiveMajorVersion
{
get
{
return m_UltimaLiveMajorVersion;
}
set
{
m_UltimaLiveMajorVersion = value;
}
}
[CommandProperty(AccessLevel.GameMaster, true)]
public int UltimaLiveMinorVersion
{
get
{
return m_UltimaLiveMinorVersion;
}
set
{
m_UltimaLiveMinorVersion = value;
}
}
}
}