<Project>
<PropertyGroup>
<OutDirName>Tests\$(MSBuildProjectName)</OutDirName>
<RunSettingsFilePath>$(MSBuildThisFileDirectory)\dotnet-MsiInstallation.Tests.runsettings</RunSettingsFilePath>
</PropertyGroup>
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>$(SdkTargetFramework)-windows</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<CanRunTestAsTool>false</CanRunTestAsTool>
<RootNamespace>Microsoft.DotNet.MsiInstallerTests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(RepoRoot)src\Common\WorkloadSetVersion.cs" LinkBase="Common" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NuGet.ProjectModel" />
<PackageReference Include="NuGet.LibraryModel" />
<PackageReference Include="NuGet.Versioning" />
<PackageReference Include="NuGet.Configuration" />
<PackageReference Include="NuGet.Frameworks" />
<PackageReference Include="NuGet.Common" />
<PackageReference Include="Microsoft.Management.Infrastructure" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.NET.TestFramework\Microsoft.NET.TestFramework.csproj" />
<ProjectReference Include="..\..\src\Cli\dotnet\dotnet.csproj" />
</ItemGroup>
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
</Project>
|