📄
src/Reviewer.Cli/Reviewer.Cli.csproj
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Reviewer.Cli</RootNamespace>
<AssemblyName>Reviewer.Cli</AssemblyName>
<OutputType>Exe</OutputType>
<EnableConfigurationBindingGenerator>true</EnableConfigurationBindingGenerator>
</PropertyGroup>
<ItemGroup>
<Content
Condition="'$(Configuration)' != 'Release'"
Include="appsettings.Development.json"
CopyToOutputDirectory="Always"
/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Reviewer\Reviewer.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference
Include="Microsoft.AI.Foundry.Local"
Condition="!$([MSBuild]::IsOSPlatform('Windows'))"
/>
<PackageReference
Include="Microsoft.AI.Foundry.Local.WinML"
Condition="$([MSBuild]::IsOSPlatform('Windows'))"
/>
<PackageReference Include="Microsoft.Extensions.Hosting" />
</ItemGroup>
</Project>