18 lines
537 B
XML
18 lines
537 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>disable</Nullable>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<AssemblyName>XWorld.Server.Gateway</AssemblyName>
|
|
<RootNamespace>XWorld.Server.Gateway</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
<ProjectReference Include="..\Server.Host\Server.Host.csproj" />
|
|
<ProjectReference Include="..\Auth\Auth.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|