Added core-sdk-tasks.Tests changes from the original feature/installer-merge branch.

This commit is contained in:
Michael Yanni 2024-04-18 12:47:46 -07:00
Родитель 39f3122792
Коммит 9bbce4892e
3 изменённых файлов: 11 добавлений и 13 удалений

Просмотреть файл

@ -1,6 +1,4 @@
using FluentAssertions;
using Xunit;
using Microsoft.DotNet.Cli.Build;
using Microsoft.DotNet.Cli.Build;
namespace EndToEnd
{

Просмотреть файл

@ -1,6 +1,4 @@
using FluentAssertions;
using Xunit;
using Microsoft.DotNet.Cli.Build;
using Microsoft.DotNet.Cli.Build;
namespace EndToEnd
{

Просмотреть файл

@ -1,16 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(SdkTargetFramework);net472</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">$(SdkTargetFramework)</TargetFrameworks>
<TargetFrameworks>net472;$(ToolsetTargetFramework)</TargetFrameworks>
<TargetFrameworks Condition="'$([MSBuild]::IsOSPlatform(`Windows`))' == 'false'">$(ToolsetTargetFramework)</TargetFrameworks>
<OutputType Condition="'$(TargetFramework)' == '$(ToolsetTargetFramework)'">Exe</OutputType>
<StrongNameKeyId>MicrosoftAspNetCore</StrongNameKeyId>
<Nullable>Enable</Nullable>
<!-- By default, test projects don't append TargetFramework to output path. It is necessary for multi-targeting test projects. -->
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="4.18.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\core-sdk-tasks\core-sdk-tasks.csproj" />
<ProjectReference Include="..\..\src\Installer\core-sdk-tasks\core-sdk-tasks.csproj" />
<ProjectReference Include="..\Microsoft.NET.TestFramework\Microsoft.NET.TestFramework.csproj" />
</ItemGroup>
</Project>