<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net9.0</TargetFramework> <RootNamespace>Build</RootNamespace> <LangVersion>latest</LangVersion> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> <AssemblyName>build</AssemblyName> </PropertyGroup> <ItemGroup> <PackageReference Include="Cocona" Version="2.2.0" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\SharedTools\SharedTools.csproj" /> </ItemGroup> </Project>