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>
2025-01-02 14:16:36 -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>
2025-01-15 21:01:23 -06:00
<AutoGenerateBindingRedirects > true</AutoGenerateBindingRedirects>
2025-01-02 14:16:36 -06:00
<EnableUnsafeBinaryFormatterSerialization > true</EnableUnsafeBinaryFormatterSerialization>
<AllowUnsafeBlocks > true</AllowUnsafeBlocks>
<IncludeSymbols > true</IncludeSymbols>
<SymbolPackageFormat > snupkg</SymbolPackageFormat>
2025-01-02 03:48:39 -06:00
<NoWarn > $(NoWarn);CS0419;CS8981;CS1591;CS1574</NoWarn>
2024-12-29 10:24:45 -06:00
<TargetFrameworks > netstandard2.0;net8.0;net9.0</TargetFrameworks>
2024-08-08 12:00:02 -05:00
<PlatformTarget > AnyCPU</PlatformTarget>
2025-01-02 14:16:36 -06:00
<OutputPath > ..\bin\</OutputPath>
2017-03-18 16:05:58 -05:00
</PropertyGroup>
2022-01-06 10:27:33 -06:00
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
<DefineConstants > TRACE;DEBUG</DefineConstants>
</PropertyGroup>
<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 >
2025-06-19 18:47:32 -05:00
<PackageReference Include= "CoreJ2K.Skia" Version= "1.1.2.50" />
2025-06-13 16:18:53 -05:00
<PackageReference Include= "log4net" Version= "3.1.0" />
<PackageReference Include= "MessagePack" Version= "3.1.4" />
<PackageReference Include= "Microsoft.Extensions.ObjectPool" Version= "9.0.6" />
2022-12-13 09:49:49 -06:00
<PackageReference Include= "OggVorbisEncoder" Version= "1.2.2" />
2024-11-01 07:52:27 -05:00
<PackageReference Include= "Pfim" Version= "0.11.3" />
2025-06-19 21:37:33 -05:00
<PackageReference Include= "System.Linq.Async" Version= "6.0.3" />
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" />
2025-06-13 16:18:53 -05:00
<PackageReference Include= "System.Threading.Channels" Version= "9.0.6" />
2024-07-05 10:39:06 -05:00
<PackageReference Include= "XmlRpcCore" Version= "3.1.3" />
2024-08-23 08:51:32 -05:00
<PackageReference Include= "zlib.net-mutliplatform" Version= "1.0.8" />
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 >
2025-01-02 14:16:36 -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>
2025-04-22 20:28:36 -05:00
<ItemGroup Condition= "'$(TargetFramework)' == 'netstandard2.0'" >
<PackageReference Include= "System.Buffers" Version= "4.6.1" />
<PackageReference Include= "System.Memory" Version= "4.6.3" />
</ItemGroup>
2017-03-18 16:05:58 -05:00
</Project>