forked from dotnet/interactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
49 lines (42 loc) · 2.54 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
40
41
42
43
44
45
46
47
48
49
<Project>
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" Condition="'$(DisableArcade)' != '1'" />
<Import Project="eng\targets\Settings.props" />
<Import Project="eng\targets\NuGet.targets" />
<PropertyGroup>
<DotNetUseShippingVersions>true</DotNetUseShippingVersions>
<DeterministicSourcePaths>false</DeterministicSourcePaths>
<EnableSourceLink>true</EnableSourceLink>
<PublishWindowsPdb>false</PublishWindowsPdb>
<!-- NuGet: A stable release of a package should not have a prerelease dependency. -->
<NoWarn>$(NoWarn);NU5104</NoWarn>
<FSharpCoreIncludeDocFileInOutput Condition="'$(FSharpCoreIncludeDocFileInOutput)' == ''">true</FSharpCoreIncludeDocFileInOutput>
</PropertyGroup>
<PropertyGroup>
<MicrosoftNETTestSdkVersion>17.4.0</MicrosoftNETTestSdkVersion>
<NewtonsoftJsonVersion>13.0.3</NewtonsoftJsonVersion>
<MicrosoftCodeAnalysisCommonVersion>4.11.0</MicrosoftCodeAnalysisCommonVersion>
<SystemDrawingCommonVersion>8.0.11</SystemDrawingCommonVersion>
<SystemReactiveVersion>6.0.0</SystemReactiveVersion>
<SystemSecurityCryptographyXmlVersion>8.0.1</SystemSecurityCryptographyXmlVersion>
<SystemSecurityCryptographyPkcsVersion>8.0.0</SystemSecurityCryptographyPkcsVersion>
<SystemTextJsonVersion>8.0.5</SystemTextJsonVersion>
<xunitVersion>2.7.0</xunitVersion>
<xunitrunnervisualstudioVersion>2.5.7</xunitrunnervisualstudioVersion>
</PropertyGroup>
<!-- Prevent the following warning on .NET 8 SDK by preserving legacy behavior for
transitive dependencies that use distribution-specific runtime identifiers. This can
be removed in the future once we update our NuGet references, and once transitive
dependencies (such as Microsoft.Management.Infrastructure.Runtime.Win below) no longer
use distribution-specific runtime identifiers.
NETSDK1206: Found version-specific or distribution-specific runtime identifier(s):
win10-x64, win10-x86, win7-x64, win7-x86, win81-x64, win81-x86, win8-x64, win8-x86.
Affected libraries: Microsoft.Management.Infrastructure.Runtime.Win. In .NET 8.0 and
higher, assets for version-specific and distribution-specific runtime identifiers will
not be found by default. See https://aka.ms/dotnet/rid-usage for details. -->
<ItemGroup>
<RuntimeHostConfigurationOption Include="System.Runtime.Loader.UseRidGraph" Value="true" />
</ItemGroup>
<PropertyGroup>
<XUnitCoreSettingsFile>$(MSBuildThisFileDirectory)xunit.runner.json</XUnitCoreSettingsFile>
</PropertyGroup>
</Project>