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
2 changes: 1 addition & 1 deletion .nuke/parameters.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "build.schema.json",
"Solution": "Mockolate.sln"
"Solution": "Mockolate.slnx"
}
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<PackageVersion Include="Nullable" Version="1.3.1"/>
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Nuke.Common" Version="9.0.4"/>
<PackageVersion Include="Nuke.Components" Version="9.0.4"/>
<PackageVersion Include="Nuke.Common" Version="10.1.0"/>
<PackageVersion Include="Nuke.Components" Version="10.1.0"/>
<PackageVersion Include="LibGit2Sharp" Version="0.31.0"/>
<PackageVersion Include="SharpCompress" Version="0.42.1"/>
</ItemGroup>
Expand Down
164 changes: 0 additions & 164 deletions Mockolate.sln

This file was deleted.

61 changes: 61 additions & 0 deletions Mockolate.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<Solution>
<Folder Name="/Benchmarks/">
<Project Path="Benchmarks/Mockolate.Benchmarks/Mockolate.Benchmarks.csproj" />
</Folder>
<Folder Name="/Pipeline/">
<Project Path="Pipeline/Build.csproj">
<Build Project="false" />
</Project>
</Folder>
<Folder Name="/Tests/">
<File Path="Tests/Directory.Build.props" />
<Project Path="Tests/Mockolate.Analyzers.Tests/Mockolate.Analyzers.Tests.csproj" />
<Project Path="Tests/Mockolate.Api.Tests/Mockolate.Api.Tests.csproj" />
<Project Path="Tests/Mockolate.ExampleTests/Mockolate.ExampleTests.csproj" />
<Project Path="Tests/Mockolate.SourceGenerators.Tests/Mockolate.SourceGenerators.Tests.csproj" />
<Project Path="Tests/Mockolate.Tests/Mockolate.Tests.csproj" />
</Folder>
<Folder Name="/Tests/Aot/">
<File Path="Tests/Aot/Directory.Build.props" />
<Project Path="Tests/Aot/Mockolate.AotCompatibility.TestApp/Mockolate.AotCompatibility.TestApp.csproj" />
</Folder>
<Folder Name="/_/">
<File Path=".editorconfig" />
<File Path=".gitattributes" />
<File Path=".gitignore" />
<File Path="CODE_OF_CONDUCT.md" />
<File Path="CONTRIBUTING.md" />
<File Path="Directory.Build.props" />
<File Path="Directory.Packages.props" />
<File Path="global.json" />
<File Path="LICENSE" />
<File Path="Mockolate.sln.DotSettings" />
<File Path="nuget.config" />
<File Path="README.md" />
</Folder>
<Folder Name="/_/.github/" />
<Folder Name="/_/.github/workflows/">
<File Path=".github/workflows/build.yml" />
<File Path=".github/workflows/ci-analysis.yml" />
<File Path=".github/workflows/ci.yml" />
</Folder>
<Folder Name="/_/Docs/">
<File Path="Docs/pages/00-index.md" />
<File Path="Docs/pages/01-create-mocks.md" />
<File Path="Docs/pages/02-setup.md" />
<File Path="Docs/pages/03-mock-events.md" />
<File Path="Docs/pages/04-verify-interactions.md" />
<File Path="Docs/pages/05-analyzers.md" />
<File Path="Docs/pages/06-comparison.md" />
</Folder>
<Folder Name="/_/Source/">
<File Path="Source/Directory.Build.props" />
</Folder>
<Folder Name="/_/Tests/">
<File Path="Tests/Directory.Build.props" />
</Folder>
<Project Path="Source/Mockolate.Analyzers.CodeFixers/Mockolate.Analyzers.CodeFixers.csproj" />
<Project Path="Source/Mockolate.Analyzers/Mockolate.Analyzers.csproj" />
<Project Path="Source/Mockolate.SourceGenerators/Mockolate.SourceGenerators.csproj" />
<Project Path="Source/Mockolate/Mockolate.csproj" />
</Solution>
2 changes: 1 addition & 1 deletion Pipeline/Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<NoWarn>CS0649;CS0169;CA1050;CA1822;CA2211;IDE1006</NoWarn>
<NukeRootDirectory>..</NukeRootDirectory>
<NukeScriptDirectory>..</NukeScriptDirectory>
Expand Down
Loading