18 lines
536 B
XML
18 lines
536 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
<OutDir>..\..\bin\API</OutDir>
|
|
<DocumentationFile>..\..\bin\API\RageCoop.Client.Scripting.xml</DocumentationFile>
|
|
<NoWarn>CS1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Core\RageCoop.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|