mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 09:38:31 +00:00
59 lines
2.2 KiB
XML
59 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net5.0</TargetFrameworks>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<Authors>Darth Affe</Authors>
|
|
<Company>Wyrez</Company>
|
|
<Language>en-US</Language>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<Title>RGB.NET.Devices.Wooting</Title>
|
|
<AssemblyName>RGB.NET.Devices.Wooting</AssemblyName>
|
|
<AssemblyTitle>RGB.NET.Devices.Wooting</AssemblyTitle>
|
|
<PackageId>RGB.NET.Devices.Wooting</PackageId>
|
|
<RootNamespace>RGB.NET.Devices.Wooting</RootNamespace>
|
|
<Description>Wooting-Device-Implementations of RGB.NET</Description>
|
|
<Summary>Wooting-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
|
<Copyright>Copyright © Darth Affe 2021</Copyright>
|
|
<Icon>icon.png</Icon>
|
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
|
<License>LGPL-2.1-only</License>
|
|
<RepositoryType>Github</RepositoryType>
|
|
<RepositoryUrl>https://github.com/DarthAffe/RGB.NET</RepositoryUrl>
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
|
|
<PackageReleaseNotes></PackageReleaseNotes>
|
|
|
|
<Version>0.0.1</Version>
|
|
<AssemblyVersion>0.0.1</AssemblyVersion>
|
|
<FileVersion>0.0.1</FileVersion>
|
|
|
|
<OutputPath>..\bin\</OutputPath>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<IncludeSource>True</IncludeSource>
|
|
<IncludeSymbols>True</IncludeSymbols>
|
|
<DebugType>portable</DebugType>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
<DefineConstants>$(DefineConstants);TRACE;DEBUG</DefineConstants>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<Optimize>false</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<Optimize>true</Optimize>
|
|
<NoWarn>$(NoWarn);CS1591;CS1572;CS1573</NoWarn>
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="..\Resources\icon.png" Link="icon.png" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\RGB.NET.Core\RGB.NET.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project> |