-
Notifications
You must be signed in to change notification settings - Fork 91
/
Directory.Build.props
39 lines (35 loc) · 1.81 KB
/
Directory.Build.props
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<Project>
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
<PropertyGroup>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<Copyright>$(CopyrightNetFoundation)</Copyright>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<Deterministic>true</Deterministic>
<EnableXlfLocalization>true</EnableXlfLocalization>
<Features>strict</Features>
<ImplicitUsings>enable</ImplicitUsings>
<!--
Tools and packages produced by this repository support infrastructure and are not shipping on NuGet or via any other official channel.
This default is overridden in shipping projects.
-->
<IsShipping>false</IsShipping>
<LangVersion>Latest</LangVersion>
<!-- CS8002: some dependencies are not strong name signed. -->
<!-- NU1507: have not yet onboarded to package source mapping. -->
<NoWarn>CS8002;NU1507</NoWarn>
<Nullable>enable</Nullable>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<TargetFramework>net8.0</TargetFramework>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<UpdateXlfOnBuild Condition="'$(CI)' != '1'">true</UpdateXlfOnBuild>
</PropertyGroup>
<PropertyGroup>
<RepositoryRootDirectory>$(MSBuildThisFileDirectory)</RepositoryRootDirectory>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" PublicKey="0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7" />
</ItemGroup>
</Project>