2017-09-03 12:55:28 -05:00
<Project Sdk= "Microsoft.NET.Sdk" >
2017-03-18 16:05:58 -05:00
<PropertyGroup >
<AssemblyName > LibreMetaverse</AssemblyName>
2021-12-29 11:40:43 -06:00
<PackageId > LibreMetaverse</PackageId>
<Description > LibreMetaverse allows your code to read and work with data send across a SecondLife, Halcyon, OpenSimulator, or related connection.</Description>
2017-03-18 16:05:58 -05:00
<OutputType > Library</OutputType>
<RootNamespace > LibreMetaverse</RootNamespace>
2017-09-04 18:13:38 -05:00
<GenerateAssemblyInfo > true</GenerateAssemblyInfo>
2021-12-08 21:38:39 -06:00
<EnableUnsafeBinaryFormatterSerialization > true</EnableUnsafeBinaryFormatterSerialization>
2021-12-29 10:23:37 -06:00
<AllowUnsafeBlocks > true</AllowUnsafeBlocks>
2021-12-29 15:18:13 -06:00
<IncludeSymbols > true</IncludeSymbols>
2022-01-13 11:10:23 -06:00
<SymbolPackageFormat > snupkg</SymbolPackageFormat>
2021-12-29 12:20:48 -06:00
<NoWarn > 0419,1574,1591</NoWarn>
2022-11-20 00:01:02 -06:00
<TargetFrameworks > net48;netstandard2.1;net6.0;net7.0</TargetFrameworks>
2022-01-06 10:27:33 -06:00
<Platforms > x64;x86;AnyCPU</Platforms>
2021-12-29 10:23:37 -06:00
<OutputPath > ..\bin\</OutputPath>
2017-03-18 16:05:58 -05:00
</PropertyGroup>
2021-07-04 18:01:05 -05:00
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='Debug|x86'" >
<DefineConstants > TRACE;DEBUG</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='Debug|x64'" >
<DefineConstants > TRACE;DEBUG</DefineConstants>
</PropertyGroup>
2022-01-06 10:27:33 -06:00
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
<DefineConstants > TRACE;DEBUG</DefineConstants>
</PropertyGroup>
2021-07-04 18:01:05 -05:00
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='Release|x86'" >
2021-12-29 10:23:37 -06:00
<GenerateDocumentationFile > true</GenerateDocumentationFile>
<DebugType > pdbonly</DebugType>
<DefineConstants > TRACE</DefineConstants>
2021-07-04 18:01:05 -05:00
<Optimize > True</Optimize>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='Release|x64'" >
2021-12-29 10:23:37 -06:00
<GenerateDocumentationFile > true</GenerateDocumentationFile>
<DebugType > pdbonly</DebugType>
<DefineConstants > TRACE</DefineConstants>
2021-07-04 18:01:05 -05:00
<Optimize > True</Optimize>
</PropertyGroup>
2022-01-06 10:27:33 -06:00
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
<GenerateDocumentationFile > true</GenerateDocumentationFile>
<DebugType > pdbonly</DebugType>
<DefineConstants > TRACE</DefineConstants>
<Optimize > True</Optimize>
</PropertyGroup>
2017-03-18 16:05:58 -05:00
<ItemGroup >
2022-08-27 20:36:50 -05:00
<PackageReference Include= "log4net" Version= "2.0.15" />
2022-12-13 09:49:49 -06:00
<PackageReference Include= "Microsoft.Extensions.ObjectPool" Version= "7.0.1" />
<PackageReference Include= "OggVorbisEncoder" Version= "1.2.2" />
2021-07-22 07:47:44 -05:00
<PackageReference Include= "OpenJpegDotNet-LMV" Version= "2.4.0.5" />
2022-11-11 12:06:30 -06:00
<PackageReference Include= "System.Drawing.Common" Version= "7.0.0" />
2019-06-08 15:53:40 -05:00
<PackageReference Include= "System.Net.Http" Version= "4.3.4" />
2019-06-08 16:28:43 -05:00
<PackageReference Include= "System.Net.NameResolution" Version= "4.3.0" />
2022-11-11 12:06:30 -06:00
<PackageReference Include= "System.Threading.Channels" Version= "7.0.0" />
2020-02-12 10:33:22 -06:00
<PackageReference Include= "XmlRpcCore" Version= "3.1.2.77" />
2022-01-08 18:32:41 -06:00
<PackageReference Include= "zlib.net-mutliplatform" Version= "1.0.6" />
2017-03-18 16:05:58 -05:00
</ItemGroup>
<ItemGroup >
2017-09-03 13:44:55 -05:00
<ProjectReference Include= "..\LibreMetaverse.StructuredData\LibreMetaverse.StructuredData.csproj" />
2021-07-26 11:43:31 -05:00
<ProjectReference Include= "..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
2017-03-18 16:05:58 -05:00
</ItemGroup>
2021-12-29 14:49:56 -06:00
<ItemGroup >
2022-01-05 10:35:47 -06:00
<None Include= "..\LICENSE.txt" Pack= "true" PackagePath= "\" />
<None Include= "..\README.md" Pack= "true" PackagePath= "\" />
<None Include= "..\data\logo.png" Pack= "true" PackagePath= "\" />
2021-12-29 14:49:56 -06:00
</ItemGroup>
2017-03-18 16:05:58 -05:00
</Project>