25 lines
1.1 KiB
XML
25 lines
1.1 KiB
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>
|
|
<ItemGroup>
|
|
<None Include="..\..\..\LICENSE.txt" Pack="true" PackagePath="docs\" />
|
|
<None Include="..\..\..\README.md" Pack="true" PackagePath="docs\" />
|
|
<None Include="..\..\..\data\logo.png" Pack="true" PackagePath="images\" />
|
|
</ItemGroup>
|
|
</Project> |