Dotnet_Executable/project_name/project_name.csproj

16 lines
401 B
XML
Raw Normal View History

2024-11-27 16:30:24 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2024-11-27 19:04:30 +01:00
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
2024-11-27 16:30:24 +01:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
</ItemGroup>
</Project>