2022-04-12 20:31:56 +01:00
|
|
|
<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>
|
2024-01-15 14:34:29 -06:00
|
|
|
<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>
|
2017-09-04 18:13:38 -05:00
|
|
|
<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>
|
2021-07-04 18:01:05 -05:00
|
|
|
<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>
|
2022-01-06 10:27:33 -06:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
|
|
|
<Optimize>False</Optimize>
|
|
|
|
|
</PropertyGroup>
|
2021-07-04 18:01:05 -05:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
|
2021-12-29 10:23:37 -06:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
2021-07-04 18:01:05 -05:00
|
|
|
<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>
|
2021-07-04 18:01:05 -05:00
|
|
|
<Optimize>True</Optimize>
|
2017-03-12 11:00:35 -07:00
|
|
|
</PropertyGroup>
|
2022-01-06 10:27:33 -06:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<Optimize>True</Optimize>
|
|
|
|
|
</PropertyGroup>
|
2017-09-03 13:17:07 -05:00
|
|
|
<ItemGroup>
|
2021-07-26 11:43:31 -05:00
|
|
|
<ProjectReference Include="..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
|
2017-09-03 13:17:07 -05:00
|
|
|
</ItemGroup>
|
2021-12-29 14:49:56 -06:00
|
|
|
<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="\" />
|
2021-12-29 14:49:56 -06:00
|
|
|
</ItemGroup>
|
2017-03-12 11:00:35 -07:00
|
|
|
</Project>
|