16 lines
511 B
XML
16 lines
511 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<AssemblyName>CommonwealthOnline.Server</AssemblyName>
|
|
<RootNamespace>CommonwealthOnline.Server</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="tests/**/*.cs" />
|
|
</ItemGroup>
|
|
</Project>
|