20 lines
909 B
XML
20 lines
909 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<AssemblyName>TestClient</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<OutputPath>..\..\..\bin\</OutputPath>
|
|
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\LibreMetaverse\LibreMetaverse.csproj" />
|
|
<ProjectReference Include="..\..\..\LibreMetaverse.StructuredData\LibreMetaverse.StructuredData.csproj" />
|
|
<ProjectReference Include="..\..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
|
|
<ProjectReference Include="..\..\..\LibreMetaverse.Utilities\LibreMetaverse.Utilities.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
|
|
</ItemGroup>
|
|
</Project> |