ForgeCore/Bot.csproj
2019-12-20 20:01:05 -07:00

29 lines
1,002 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="libremetaverse\**" />
<EmbeddedResource Remove="libremetaverse\**" />
<None Remove="libremetaverse\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="System.Threading.Channels" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="libremetaverse\LibreMetaverse.StructuredData\LibreMetaverse.StructuredData.csproj" />
<ProjectReference Include="libremetaverse\LibreMetaverse.Utilities\LibreMetaverse.Utilities.csproj" />
<ProjectReference Include="libremetaverse\LibreMetaverseTypes\LibreMetaverse.Types.csproj" />
<ProjectReference Include="libremetaverse\LibreMetaverse\LibreMetaverse.csproj" />
</ItemGroup>
</Project>