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>
2024-08-08 12:13:14 -05:00
<NoWarn > $(NoWarn);CS8981</NoWarn>
2024-01-15 14:34:29 -06:00
<TargetFrameworks > net48;netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
2024-08-08 12:00:02 -05:00
<PlatformTarget > AnyCPU</PlatformTarget>
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 >
2024-08-10 09:37:18 -05:00
<PackageReference Include= "CSJ2K.Skia" Version= "0.10.5.38" />
2024-07-05 10:39:06 -05:00
<PackageReference Include= "log4net" Version= "2.0.17" />
2024-08-07 14:11:25 -05:00
<PackageReference Include= "Microsoft.Extensions.ObjectPool" Version= "8.0.7" />
2022-12-13 09:49:49 -06:00
<PackageReference Include= "OggVorbisEncoder" Version= "1.2.2" />
2024-07-15 11:27:21 -05:00
<PackageReference Include= "Pfim" Version= "0.11.2" />
2024-07-09 17:44:13 -05:00
<PackageReference Include= "SkiaSharp" Version= "2.88.8" />
<PackageReference Include= "SkiaSharp.NativeAssets.Linux" Version= "2.88.8" />
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" />
2024-07-05 10:39:06 -05:00
<PackageReference Include= "System.Threading.Channels" Version= "8.0.0" />
<PackageReference Include= "XmlRpcCore" Version= "3.1.3" />
<PackageReference Include= "zlib.net-mutliplatform" Version= "1.0.7" />
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>