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

26 lines
1.2 KiB
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>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
2021-12-29 15:18:13 -06:00
<Platforms>x64;x86</Platforms>
<IncludeSymbols>true</IncludeSymbols>
2022-01-13 11:10:23 -06:00
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
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" />
<ProjectReference Include="..\..\..\LibreMetaverse.Voice\LibreMetaverse.Voice.csproj" />
2019-10-22 20:30:05 -05:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
</ItemGroup>
<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="\" />
</ItemGroup>
2019-10-22 20:30:05 -05:00
</Project>