зеркало из https://github.com/dotnet/fsharp.git
22 строки
892 B
XML
22 строки
892 B
XML
<Project>
|
|
|
|
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
|
|
|
|
<PropertyGroup>
|
|
<ExcludeFromSourceOnlyBuild>true</ExcludeFromSourceOnlyBuild>
|
|
<DebugType>portable</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<!-- Do it the same way .NET Interactive does it, when skipping arcade, we should include test SDK explicitly -->
|
|
<ItemGroup Condition="($(MSBuildProjectName.EndsWith('.Tests')) OR $(MSBuildProjectName.EndsWith('.ComponentTests')) OR $(MSBuildProjectName.EndsWith('.UnitTests'))) AND '$(DISABLE_ARCADE)' == 'true'">
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNETTestSdkVersion)" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<NoOptimizationData>false</NoOptimizationData>
|
|
<NoInterfaceData>false</NoInterfaceData>
|
|
<CompressMetadata>true</CompressMetadata>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|