mirror of https://github.com/open-feature/cli.git
21 lines
596 B
XML
21 lines
596 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.6" />
|
|
<PackageReference Include="OpenFeature" Version="2.7.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Program.cs" />
|
|
<Compile Include="generated\*.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project> |