forked from dotnet/eShop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
21 lines (18 loc) · 825 Bytes
/
Directory.Build.props
File metadata and controls
21 lines (18 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project>
<PropertyGroup>
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Temporarily disable security warnings for transitive packages. -->
<NoWarn>NU1901;NU1902;NU1903;NU1904</NoWarn>
<UseArtifactsOutput>true</UseArtifactsOutput>
</PropertyGroup>
<!-- Enable OpenAI OpenTelemetry so OpenAI calls participate in tracing and metrics. -->
<ItemGroup>
<RuntimeHostConfigurationOption Include="OpenAI.Experimental.EnableOpenTelemetry"
Value="true" />
</ItemGroup>
</Project>