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
123 changes: 0 additions & 123 deletions bunit.sln

This file was deleted.

44 changes: 44 additions & 0 deletions bunit.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<Solution>
<Folder Name="/.items/">
<File Path=".config/dotnet-tools.json" />
<File Path=".editorconfig" />
<File Path=".gitattributes" />
<File Path=".gitignore" />
<File Path="Directory.Build.props" />
<File Path="Directory.Packages.props" />
<File Path="global.json" />
<File Path="version.json" />
</Folder>
<Folder Name="/.text/">
<File Path="CHANGELOG.md" />
<File Path="MIGRATION.md" />
<File Path="README.md" />
</Folder>
<Folder Name="/.workflows/">
<File Path=".github/workflows/ci.yml" />
<File Path=".github/workflows/docs-deploy.yml" />
<File Path=".github/workflows/prepare-release.yml" />
<File Path=".github/workflows/release.yml" />
</Folder>
<Folder Name="/src/">
<File Path="src/.editorconfig" />
<File Path="src/Directory.Build.props" />
<Project Path="src/bunit.generators.internal/bunit.generators.internal.csproj" />
<Project Path="src/bunit.generators/bunit.generators.csproj" />
<Project Path="src/bunit.template/bunit.template.csproj">
<Build Project="false" />
</Project>
<Project Path="src/bunit.web.query/bunit.web.query.csproj" />
<Project Path="src/bunit/bunit.csproj" />
</Folder>
<Folder Name="/tests/">
<File Path="tests/.editorconfig" />
<File Path="tests/Directory.Build.props" />
<File Path="tests/run-tests.ps1" />
<File Path="tests/xunit.runner.json" />
<Project Path="tests/bunit.generators.tests/bunit.generators.tests.csproj" />
<Project Path="tests/bunit.testassets/bunit.testassets.csproj" />
<Project Path="tests/bunit.tests/bunit.tests.csproj" />
<Project Path="tests/bunit.web.query.tests/bunit.web.query.tests.csproj" />
</Folder>
</Solution>
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The following tools are required to build and view the documentation locally:

### View the documentation

1. Build the `bunit.sln` solution in the root folder in release configuration `dotnet build -c Release`.
1. Build the `bunit.slxn` solution in the root folder in release configuration `dotnet build -c Release`.
2. From `docs/site` run `docfx metadata` to generate the documentation site's metadata.
3. After that run `docfx build` to generate the documentation site.
4. From `docs/` run `serve-docs.cmd`. This will start up a local web server (using `dotnet serve`), hosting the generated documentation site.
Expand Down
6 changes: 3 additions & 3 deletions tests/run-tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ $maxRuns = $args[0]
$mode = $args[1]
$filter = $args[2]

dotnet build ..\bunit.sln -c $mode --nologo
dotnet build ..\bunit.slnx -c $mode --nologo

for ($num = 1 ; $num -le $maxRuns ; $num++)
{
Write-Output "### TEST RUN $num ###"

if($filter)
{
dotnet test ..\bunit.sln -c $mode --no-restore --no-build --blame --nologo --filter $filter
dotnet test ..\bunit.slnx -c $mode --no-restore --no-build --blame --nologo --filter $filter
}
else
{
dotnet test ..\bunit.sln -c $mode --no-restore --no-build --blame --nologo
dotnet test ..\bunit.slnx -c $mode --no-restore --no-build --blame --nologo
}
}