15 lines
507 B
XML
15 lines
507 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
<AssemblyName>CommonwealthOnline.Server.Tests</AssemblyName>
|
|
<RootNamespace>CommonwealthOnline.Server.Tests</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="../CommonwealthOnline.Server.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|