Files
libremetaverse/Programs/examples/TestClient/TestClient.csproj

20 lines
909 B
XML
Raw Normal View History

<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>
<Platforms>AnyCPU;x64;x86</Platforms>
2021-07-24 09:19:39 -05:00
<IsPackable>false</IsPackable>
2019-10-22 20:30:05 -05:00
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\LibreMetaverse\LibreMetaverse.csproj" />
<ProjectReference Include="..\..\..\LibreMetaverse.StructuredData\LibreMetaverse.StructuredData.csproj" />
<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>
</Project>