Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions BenchmarkDotNet.Maui.slnx

This file was deleted.

14 changes: 14 additions & 0 deletions samples/BenchmarkDotNet.Maui.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Solution>
<Configurations>
<Platform Name="Any CPU" />
<Platform Name="x64" />
<Platform Name="x86" />
</Configurations>
<Folder Name="/samples/">
<Project Path="BenchmarkDotNet.Samples.Maui/BenchmarkDotNet.Samples.Maui.csproj" />
</Folder>
<Folder Name="/src/">
<Project Path="../src/BenchmarkDotNet.Annotations/BenchmarkDotNet.Annotations.csproj" />
<Project Path="../src/BenchmarkDotNet/BenchmarkDotNet.csproj" />
</Folder>
</Solution>
5 changes: 5 additions & 0 deletions tests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
<IsPackable>false</IsPackable>
</PropertyGroup>

<PropertyGroup>
<!-- Set SolutionDir property to suppress warning that raised by Verify.Xunit solution discovery feature. -->
<SolutionDir>$([System.IO.Path]::GetDirectoryName($(MSBuildThisFileDirectory)))</SolutionDir>
</PropertyGroup>

<!-- ProjectReferences are not transitive, so we need to directly include the analyzers for all test projects. -->
<ItemGroup Condition="'$(AssemblyName)' != 'BenchmarkDotNet.Analyzers.Tests'">
<ProjectReference Include="$(MSBuildThisFileDirectory)..\src\BenchmarkDotNet.Analyzers\BenchmarkDotNet.Analyzers.csproj" ReferenceOutputAssembly="false" OutputItemType="Analyzer" />
Expand Down