Files
Sharp7Reactive/Sharp7.Rx/Sharp7.Rx.csproj
Peter Butzhammer 8836c14e2b
Some checks failed
Release / build (push) Has been cancelled
Update nuget packages
2024-07-22 14:21:15 +02:00

52 lines
2.2 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AnalysisLevel>latest-Recommended</AnalysisLevel>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<Authors>evopro system engineering AG</Authors>
<Company>evopro system engineering AG</Company>
<Description>Reactive framework for Sharp7, the Ethernet S7 PLC communication suite. Handling RFC1006 connections to Siemens S7 300, 1200 and 1500.</Description>
<PackageTags>linqpad-samples</PackageTags>
<PackageProjectUrl>https://github.com/evopro-ag/Sharp7Reactive</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!--
CA1848: For improved performance, use the LoggerMessage delegates
CA2254: The logging message template should not vary between calls
CA1859: Change type of field 'xxx' from interface to type for performance reasons
CS1591: Missing XML comment for publicly visible type or member
-->
<NoWarn>$(NoWarn);CA1848;CA2254;CA1859;CS1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Sharp7" Version="1.1.84" />
<PackageReference Include="System.Interactive" Version="6.0.1" />
<PackageReference Include="System.Reactive" Version="6.0.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<Content Include="linqpad-samples/**/*.*">
<Pack>true</Pack>
<PackagePath>linqpad-samples\;content</PackagePath>
</Content>
</ItemGroup>
</Project>