forked from dotnet/interactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.targets
31 lines (23 loc) · 1.41 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
25
26
27
28
29
30
31
<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.9.4" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
</ItemGroup>
<!-- Consolidate FSharp package versions -->
<ItemGroup>
<!--
NOTE, when a change updating these version numbers is merged into `main`, these packages _must_ be uploaded
to NuGet. For Microsoft employees, that can be accomplished via these two release definitions (in this order):
FSharp.Core: https://dev.azure.com/dnceng/internal/_release?view=mine&_a=releases&definitionId=92
FSharp.Compiler.Service: https://dev.azure.com/dnceng/internal/_release?view=mine&_a=releases&definitionId=98
-->
<PackageReference Update="FSharp.Core" Version="5.0.3-beta.21369.4" />
<PackageReference Update="FSharp.Compiler.Service" Version="40.0.1-preview.21369.4" />
</ItemGroup>
</Project>