Attempt at dumping values from memory into a CSV file for post-processing Signed-off-by: mharb <mharb@noreply.localhost>
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="ProtosXdemo.zip" />
|
|
<None Remove="ProtosXdigitalDemo.zip" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NModbus4" Version="2.1.0" />
|
|
<PackageReference Include="System.IO.Ports" Version="9.0.7" />
|
|
<PackageReference Include="OxyPlot.Core" Version="2.1.2" />
|
|
<PackageReference Include="OxyPlot.SkiaSharp" Version="2.1.2" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="NModbus4" Version="2.1.0" />
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|