2022-11-11 12:06:30 -06:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-03-12 20:56:55 -05:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<AssemblyName>LibreMetaverse.Tests</AssemblyName>
|
2022-11-20 00:01:02 -06:00
|
|
|
|
<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>
|
2017-03-12 20:56:55 -05:00
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<RootNamespace>LibreMetaverse.Tests</RootNamespace>
|
2017-09-04 18:13:38 -05:00
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
2019-06-23 18:58:45 -05:00
|
|
|
|
<IsPackable>false</IsPackable>
|
2022-01-06 10:27:33 -06:00
|
|
|
|
<Platforms>x64;x86;AnyCPU</Platforms>
|
2021-12-29 10:23:37 -06:00
|
|
|
|
<OutputPath>..\bin\</OutputPath>
|
2022-01-02 10:15:14 -06:00
|
|
|
|
<NoWarn>$(NoWarn);SYSLIB0001</NoWarn>
|
2021-07-24 13:15:51 -05:00
|
|
|
|
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
|
2017-03-12 20:56:55 -05:00
|
|
|
|
</PropertyGroup>
|
2021-07-04 18:01:05 -05:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
|
|
|
|
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
|
|
|
|
<Optimize>False</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
|
|
|
|
<Optimize>False</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
2022-01-06 10:27:33 -06:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
|
|
|
|
<Optimize>False</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
2021-07-04 18:01:05 -05:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
|
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>True</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>True</Optimize>
|
2017-03-12 20:56:55 -05:00
|
|
|
|
</PropertyGroup>
|
2022-01-06 10:27:33 -06:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>True</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
2017-09-03 13:44:55 -05:00
|
|
|
|
<ItemGroup>
|
2019-10-22 21:08:33 -05:00
|
|
|
|
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
|
2022-12-21 10:37:14 -06:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
|
2022-04-23 14:11:35 -05:00
|
|
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
2022-11-20 00:58:22 -06:00
|
|
|
|
<PackageReference Include="NUnit.ConsoleRunner" Version="3.16.0" />
|
|
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.3.1">
|
2020-01-23 09:31:59 -06:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2019-06-08 16:28:43 -05:00
|
|
|
|
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
|
2017-09-03 13:44:55 -05:00
|
|
|
|
</ItemGroup>
|
2017-03-12 20:56:55 -05:00
|
|
|
|
<ItemGroup>
|
2017-09-03 13:28:19 -05:00
|
|
|
|
<ProjectReference Include="..\LibreMetaverse\LibreMetaverse.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\LibreMetaverse.StructuredData\LibreMetaverse.StructuredData.csproj" />
|
2021-07-26 11:43:31 -05:00
|
|
|
|
<ProjectReference Include="..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
|
2017-03-12 20:56:55 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
|
|
|
|
|
|
</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-09-03 13:44:55 -05:00
|
|
|
|
</Project>
|