forked from dotnet/interactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.targets
24 lines (19 loc) · 1.14 KB
/
Directory.Build.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project>
<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" Condition="'$(DisableArcade)' != '1'" />
<!--
Arcade normally auto-adds the appropriate test packages, but in non-arcade scenarios they must be re-added.
Not doing this in each project because duplicate PackageReferences causes an Arcade build failure.
-->
<ItemGroup Condition="($(MSBuildProjectName.EndsWith('.Tests')) OR $(MSBuildProjectName.EndsWith('.IntegrationTests'))) AND '$(DisableArcade)' == '1'">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
</ItemGroup>
<!-- Consolidate FSharp package versions -->
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="5.0.1-beta.20552.1" />
<PackageReference Update="FSharp.Compiler.Private.Scripting" Version="11.0.1-beta.20552.1" />
<PackageReference Update="FSharp.Compiler.Service" Version="11.0.1-beta.20552.1" />
<PackageReference Update="Microsoft.DotNet.DependencyManager" Version="11.0.1-beta.20552.1" />
</ItemGroup>
</Project>