2025-01-09 18:30:53 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<AssemblyName>Scripts</AssemblyName>
|
|
|
|
|
|
<RootNamespace>Server</RootNamespace>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
|
|
|
|
|
|
<UseVSHostingProcess>False</UseVSHostingProcess>
|
|
|
|
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
2025-11-23 02:23:32 +01:00
|
|
|
|
<UseWindowsForms>false</UseWindowsForms>
|
2025-01-09 18:30:53 +00:00
|
|
|
|
<Platforms>x64</Platforms>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
|
<OutputPath>..\</OutputPath>
|
|
|
|
|
|
<DefineConstants>TRACE;DEBUG;NEWTIMERS;ServUO</DefineConstants>
|
|
|
|
|
|
<DebugType>embedded</DebugType>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
|
<OutputPath>..\</OutputPath>
|
|
|
|
|
|
<DefineConstants>TRACE;NEWTIMERS;ServUO</DefineConstants>
|
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Reference Include="System.Web" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Server\Server.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Ultima\Ultima.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
|
|
|
|
|
</ItemGroup>
|
2020-02-24 01:55:52 +03:00
|
|
|
|
</Project>
|