Files
RAGECOOP-V/Core/RageCoop.Core.csproj

62 lines
2.5 KiB
XML
Raw Normal View History

2022-05-22 15:55:26 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
2022-05-22 16:56:35 +08:00
<AssemblyVersion>0.1</AssemblyVersion>
<FileVersion>0.1</FileVersion>
<Version>0.1</Version>
2022-06-12 17:11:14 +08:00
<DebugType>embedded</DebugType>
2022-06-21 18:13:30 +08:00
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
2022-07-01 14:39:43 +08:00
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Configurations>Debug;Release;API</Configurations>
<OutDir>..\bin\$(Configuration)\Core</OutDir>
2022-05-22 15:55:26 +08:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'API'">
<OutDir>..\bin\API</OutDir>
<Deterministic>true</Deterministic>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<ProduceOnlyReferenceAssembly>true</ProduceOnlyReferenceAssembly>
2022-07-09 13:27:07 +08:00
</PropertyGroup>
2022-05-22 15:55:26 +08:00
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'">
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'">
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
<ItemGroup>
2022-07-28 17:03:29 +08:00
<PackageReference Include="Costura.Fody" Version="5.7.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Fody" Version="6.6.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2022-08-11 18:25:01 +08:00
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="6.0.8" />
2022-10-15 12:15:19 +08:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
2022-10-15 17:16:47 +08:00
<PackageReference Include="SharpZipLib" Version="1.4.0" />
<PackageReference Include="System.Buffers" Version="4.5.1" />
</ItemGroup>
<ItemGroup>
2022-07-01 14:39:43 +08:00
<Reference Include="Lidgren.Network">
<HintPath>..\libs\Lidgren.Network.dll</HintPath>
</Reference>
2022-05-22 15:55:26 +08:00
<Reference Include="ScriptHookVDotNet3">
2022-06-22 14:18:20 +08:00
<HintPath>..\libs\ScriptHookVDotNet3.dll</HintPath>
2022-05-22 15:55:26 +08:00
</Reference>
</ItemGroup>
</Project>