31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<PackageId>LibreMetaverse.RLV</PackageId>
|
|
<Description>RestrainedLove Viewer (RLV) protocol library</Description>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
<EnableNETAnalyzers>True</EnableNETAnalyzers>
|
|
<AnalysisLevel>latest-recommended</AnalysisLevel>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<OutputPath>..\bin\</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
|
|
<PackageReference Include="System.Collections.Immutable" Version="9.0.8" />
|
|
</ItemGroup>
|
|
|
|
<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>
|