logicanalyzer/Software/LogicAnalyzer/CLCapture/CLCapture.csproj

25 lines
611 B
XML
Raw Normal View History

2022-07-13 15:07:56 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2023-02-25 11:25:37 +00:00
<TargetFramework>net7.0</TargetFramework>
2022-07-13 15:07:56 +00:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2022-07-30 22:26:07 +00:00
<ApplicationIcon>window.ico</ApplicationIcon>
2023-07-20 15:07:27 +00:00
<Version>5.0.0.0</Version>
2022-07-13 15:07:56 +00:00
</PropertyGroup>
2022-07-30 22:26:07 +00:00
<ItemGroup>
<Content Include="window.ico" />
</ItemGroup>
2022-07-13 15:07:56 +00:00
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SharedDriver\SharedDriver.csproj" />
</ItemGroup>
</Project>