Files
libremetaverse/LibreMetaverse.StructuredData/LibreMetaverse.StructuredData.csproj

51 lines
2.0 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2017-03-12 11:00:35 -07:00
<PropertyGroup>
<AssemblyName>LibreMetaverse.StructuredData</AssemblyName>
2021-07-24 14:04:54 -05:00
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0</TargetFrameworks>
2017-03-12 11:00:35 -07:00
<OutputType>Library</OutputType>
<RootNamespace>LibreMetaverse.StructuredData</RootNamespace>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<Platforms>AnyCPU;x64;x86</Platforms>
2021-12-29 10:23:37 -06:00
<OutputPath>..\bin\</OutputPath>
2017-03-12 11:00:35 -07:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DefineConstants>TRACE;DEBUG</DefineConstants>
<FileAlignment>4096</FileAlignment>
<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>
2017-03-12 11:00:35 -07:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2021-12-29 10:23:37 -06:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugType>pdbonly</DebugType>
<DefineConstants>TRACE</DefineConstants>
2017-03-12 11:00:35 -07:00
<Optimize>True</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
2021-12-29 10:23:37 -06:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugType>pdbonly</DebugType>
<DefineConstants>TRACE</DefineConstants>
<Optimize>True</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2021-12-29 10:23:37 -06:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugType>pdbonly</DebugType>
<DefineConstants>TRACE</DefineConstants>
<Optimize>True</Optimize>
2017-03-12 11:00:35 -07:00
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
</ItemGroup>
2019-10-30 15:39:21 -05:00
<ItemGroup>
<None Include="..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
2017-03-12 11:00:35 -07:00
</Project>