mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>disable</Nullable>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Platforms>AnyCPU</Platforms>
|
|
<Version>1.0.0</Version>
|
|
<Authors>ACEmulator Contributors</Authors>
|
|
<Company>ACEmulator</Company>
|
|
<Description>Asheron's Call server emulator</Description>
|
|
<Copyright>© 2017-2026 ACEmulator Team and Contributors</Copyright>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
<PackageProjectUrl>https://emulator.ac</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/ACEmulator/ACE</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ACE.Database\ACE.Database.csproj" />
|
|
<ProjectReference Include="..\ACE.Entity\ACE.Entity.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Lifestoned.DataModel">
|
|
<HintPath>..\lib\Lifestoned.DataModel.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\..\LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-4f7c-pmjv-c25w" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|