ForgeCore/BotCore5.csproj
Zontreck 43a89fc88a make SSL support for botcore5 be windows only and fix the requet logs folder so git works once more.
* Reason for the above: There is no reliable method on all platforms to utilize a SSL certificate until Microsoft fixes this bug/inconsistency.
2020-10-22 09:22:02 -07:00

28 lines
1.1 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<SignAssembly>false</SignAssembly>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Configurations>Debug;Release</Configurations>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<StartupObject>Bot.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Terminal.Gui" Version="0.90.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\LibZNIcpp\LibZNIcpp.vcxproj" />
<ProjectReference Include="..\..\LibZNI\LibZNI.csproj" />
<ProjectReference Include="..\libremetaverse\LibreMetaverse.StructuredData\LibreMetaverse.StructuredData.csproj" />
<ProjectReference Include="..\libremetaverse\LibreMetaverseTypes\LibreMetaverse.Types.csproj" />
<ProjectReference Include="..\libremetaverse\LibreMetaverse\LibreMetaverse.csproj" />
</ItemGroup>
</Project>