mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
65 lines
2.6 KiB
XML
65 lines
2.6 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.SoIP</Title>
|
|
<AssemblyName>RGB.NET.Devices.SoIP</AssemblyName>
|
|
<AssemblyTitle>RGB.NET.Devices.SoIP</AssemblyTitle>
|
|
<PackageId>RGB.NET.Devices.SoIP</PackageId>
|
|
<RootNamespace>RGB.NET.Devices.SoIP</RootNamespace>
|
|
<Description>SoIP-Device-Implementations of RGB.NET</Description>
|
|
<Summary>SoIP-Device-Implementations of RGB.NET, a C# (.NET) library</Summary>
|
|
<Copyright>Copyright © Darth Affe 2020</Copyright>
|
|
<PackageCopyright>Copyright © Darth Affe 2020</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>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
<DefineConstants>$(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>$(DefineConstants);RELEASE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Costura.Fody" Version="4.1" />
|
|
<PackageReference Include="Fody" Version="6.3.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="SimpleTCP" Version="1.0.24" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\RGB.NET.Core\RGB.NET.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project> |