mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 09:38:31 +00:00
This resolves #14. Resources like SDK-libs, Images and Layouts are removed (and put into an own repository) in that process.
69 lines
2.7 KiB
XML
69 lines
2.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
|
|
<RuntimeIdentifiers>win7-x86;win7-x64</RuntimeIdentifiers>
|
|
|
|
<Authors>Darth Affe</Authors>
|
|
<Company>Wyrez</Company>
|
|
<Language>en-US</Language>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<Title>RGB.NET.Decorators</Title>
|
|
<AssemblyName>RGB.NET.Decorators</AssemblyName>
|
|
<AssemblyTitle>RGB.NET.Decorators</AssemblyTitle>
|
|
<PackageId>RGB.NET.Decorators</PackageId>
|
|
<RootNamespace>RGB.NET.Decorators</RootNamespace>
|
|
<Description>Decorators-Presets of RGB.NET</Description>
|
|
<Summary>Decorators-Presets of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
|
<Copyright>Copyright © Wyrez 2017</Copyright>
|
|
<PackageCopyright>Copyright © Wyrez 2017</PackageCopyright>
|
|
<PackageIconUrl>http://lib.arge.be/icon.png</PackageIconUrl>
|
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
|
<PackageLicenseUrl>https://raw.githubusercontent.com/DarthAffe/RGB.NET/master/LICENSE</PackageLicenseUrl>
|
|
<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>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
|
<DefineConstants>TRACE;NETCORE;NETSTANDARD;NETSTANDARD2_0;DEBUG;NETSTANDARD2_0</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'net45'">
|
|
<DefineConstants>NET45;NETFULL</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<NoWarn>$(NoWarn);CS1591;CS1572;CS1573</NoWarn>
|
|
<DefineConstants>RELEASE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\RGB.NET.Brushes\RGB.NET.Brushes.csproj" />
|
|
<ProjectReference Include="..\RGB.NET.Core\RGB.NET.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net45'">
|
|
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
|
|
</ItemGroup>
|
|
</Project> |