19 lines
782 B
XML
19 lines
782 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<AssemblyName>VoiceTest</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>
|
|
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\LibreMetaverse\LibreMetaverse.csproj" />
|
|
<ProjectReference Include="..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
|
|
<ProjectReference Include="..\..\LibreMetaverse.Utilities\LibreMetaverse.Utilities.csproj" />
|
|
</ItemGroup>
|
|
</Project> |