ForgeCore/Bot.csproj
2020-04-20 16:37:36 -07:00

36 lines
1.3 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;DebPub</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebPub|AnyCPU'">
<OutputPath>bin\debpub</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Remove="libremetaverse\**" />
<EmbeddedResource Remove="libremetaverse\**" />
<None Remove="libremetaverse\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<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>