2019-06-08 16:28:43 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-10-22 20:30:05 -05:00
|
|
|
|
<PropertyGroup>
|
2021-12-29 10:23:37 -06:00
|
|
|
|
<AssemblyName>TestClient</AssemblyName>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2019-10-22 20:30:05 -05:00
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
|
|
|
|
<OutputPath>..\..\..\bin\</OutputPath>
|
2021-12-09 18:01:21 -06:00
|
|
|
|
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
|
2021-12-29 15:18:13 -06:00
|
|
|
|
<Platforms>x64;x86</Platforms>
|
|
|
|
|
|
<IsTool>true</IsTool>
|
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
2019-10-22 20:30:05 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<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" />
|
2019-10-22 20:30:05 -05:00
|
|
|
|
<ProjectReference Include="..\..\..\LibreMetaverse.Utilities\LibreMetaverse.Utilities.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
|
|
|
|
|
|
</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>
|
2019-10-22 20:30:05 -05:00
|
|
|
|
</Project>
|