2019-06-08 16:28:43 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-10-22 20:30:05 -05:00
|
|
|
|
<PropertyGroup>
|
2025-01-02 14:16:36 -06:00
|
|
|
|
<AssemblyName>TestClient</AssemblyName>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2019-10-22 20:30:05 -05:00
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
|
|
|
|
<OutputPath>..\..\..\bin\</OutputPath>
|
2024-12-29 10:24:45 -06:00
|
|
|
|
<TargetFrameworks>net481;net8.0;net9.0</TargetFrameworks>
|
2024-08-08 12:00:02 -05:00
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2025-01-02 14:16:36 -06:00
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
|
|
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
2019-10-22 20:30:05 -05:00
|
|
|
|
</PropertyGroup>
|
2025-01-01 21:27:38 -06:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
|
|
|
|
<Optimize>False</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>True</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
2019-10-22 20:30:05 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\..\LibreMetaverse\LibreMetaverse.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\..\LibreMetaverse.StructuredData\LibreMetaverse.StructuredData.csproj" />
|
2021-09-10 14:15:40 -05:00
|
|
|
|
<ProjectReference Include="..\..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
|
2024-10-31 08:13:31 -05:00
|
|
|
|
<ProjectReference Include="..\..\..\LibreMetaverse.Voice.Vivox\LibreMetaverse.Voice.Vivox.csproj" />
|
2019-10-22 20:30:05 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2024-11-01 07:52:27 -05:00
|
|
|
|
<PackageReference Include="Pfim" Version="0.11.3" />
|
2025-04-29 19:05:39 -05:00
|
|
|
|
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.119.0" />
|
|
|
|
|
|
<PackageReference Include="SkiaSharp.NativeAssets.macOS" Version="3.119.0" />
|
|
|
|
|
|
<PackageReference Include="SkiaSharp.NativeAssets.Win32" Version="3.119.0" />
|
2019-10-22 20:30:05 -05:00
|
|
|
|
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
|
|
|
|
|
|
</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>
|
2019-10-22 20:30:05 -05:00
|
|
|
|
</Project>
|