-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample.csproj
More file actions
25 lines (22 loc) · 995 Bytes
/
Copy pathExample.csproj
File metadata and controls
25 lines (22 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AnalysisMode>All</AnalysisMode>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
</PropertyGroup>
<!--
Feature-flag scaffolding (see AGENTS.md § Feature flags). Call sites use the
portable, vendor-neutral OpenFeature API. The scaffold ships OpenFeature's
built-in in-memory provider so the example evaluates with no backend; swap it
for a real provider (flagd for GitOps, the Microsoft.FeatureManagement bridge
once it ships GA, …) without touching call sites.
-->
<ItemGroup>
<PackageReference Include="OpenFeature" Version="2.14.1" />
</ItemGroup>
</Project>