logicanalyzer/Software/LogicAnalyzer/CLCapture/CLCapture.csproj

24 lines
579 B
XML
Raw Normal View History

2022-07-13 15:07:56 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2022-07-30 22:26:07 +00:00
<ApplicationIcon>window.ico</ApplicationIcon>
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>