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

53 lines
2.3 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-12-29 11:40:43 -06:00
<Description>LibreMetaverse structured data library</Description>
<PackageId>LibreMetaverse.StructuredData</PackageId>
<TargetFrameworks>net48;netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
2017-03-12 11:00:35 -07:00
<OutputType>Library</OutputType>
<RootNamespace>LibreMetaverse.StructuredData</RootNamespace>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
2021-12-29 15:18:13 -06:00
<IncludeSymbols>true</IncludeSymbols>
2022-01-13 11:10:23 -06:00
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2024-08-08 12:00:02 -05:00
<PlatformTarget>AnyCPU</PlatformTarget>
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|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)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
<Optimize>False</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>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugType>pdbonly</DebugType>
<DefineConstants>TRACE</DefineConstants>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
</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>
2017-03-12 11:00:35 -07:00
</Project>