mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
53 lines
1.9 KiB
XML
53 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
|
|
<IsPublishable>false</IsPublishable>
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<PackageId>Mewtocol.NET</PackageId>
|
|
<Version>0.0.0</Version>
|
|
<Authors>Felix Weiss</Authors>
|
|
<Company>Womed</Company>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Description>A Mewtocol protocol library to interface with Panasonic PLCs over TCP/Serial.</Description>
|
|
<Copyright>Copyright (c) 2022 - 2023 WOLF Medizintechnik GmbH</Copyright>
|
|
<PackageProjectUrl>https://github.com/WOmed/MewtocolNet</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/WOmed/MewtocolNet</RepositoryUrl>
|
|
<PackageTags>plc;panasonic;mewtocol;automation;</PackageTags>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<UserSecretsId>2ccdcc9b-94a3-4e76-8827-453ab889ea33</UserSecretsId>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|
<DocumentationFile>..\Builds\MewtocolNet\MewtocolNet.xml</DocumentationFile>
|
|
<OutputPath>..\Builds\MewtocolNet</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
<_Parameter1>MewtocolTests</_Parameter1>
|
|
</AssemblyAttribute>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
<_Parameter1>AutoTools.DocBuilder</_Parameter1>
|
|
</AssemblyAttribute>
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
<_Parameter1>AutoTools.ChmDataExtract</_Parameter1>
|
|
</AssemblyAttribute>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
|
<PackageReference Include="System.IO.Ports" Version="7.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="AutoGeneratedData\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|