51 lines
2.1 KiB
XML
51 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<AssemblyName>LibreMetaverse.Types</AssemblyName>
|
|
<PackageId>LibreMetaverse.Types</PackageId>
|
|
<Description>LibreMetaverse type library</Description>
|
|
<TargetFrameworks>netstandard2.1;net5.0;net6.0</TargetFrameworks>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>LibreMetaverse</RootNamespace>
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<NoWarn>0419,1574,1591</NoWarn>
|
|
<Platforms>x64;x86;AnyCPU</Platforms>
|
|
<OutputPath>..\bin\</OutputPath>
|
|
</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'">
|
|
<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>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<DebugType>pdbonly</DebugType>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>True</Optimize>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE.txt" Pack="true" PackagePath="\" />
|
|
<None Include="..\README.md" Pack="true" PackagePath="\" />
|
|
<None Include="..\data\logo.png" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
</Project> |