51 lines
2.2 KiB
XML
51 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<AssemblyName>LibreMetaverse.Rendering.Simple</AssemblyName>
|
|
<Description>Simple library for rendering mesh assets in LibreMetaverse</Description>
|
|
<PackageId>LibreMetaverse.Rendering.Simple</PackageId>
|
|
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0</TargetFrameworks>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>LibreMetaverse.Rendering.Simple</RootNamespace>
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<NoWarn>1591</NoWarn>
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
<OutputPath>..\bin\</OutputPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
<Optimize>False</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
<Optimize>False</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
<Optimize>False</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<DebugType>pdbonly</DebugType>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>True</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<DebugType>pdbonly</DebugType>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>True</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<DebugType>pdbonly</DebugType>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>True</Optimize>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LibreMetaverse\LibreMetaverse.csproj" />
|
|
<ProjectReference Include="..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
|
|
</ItemGroup>
|
|
</Project> |