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 CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ XrmMockup is a simulation engine that mocks Microsoft Dynamics 365/CRM instances

```bash
# Build the solution (debug)
dotnet build XrmMockup.sln
dotnet build XrmMockup.slnx

# Build for release (uses FAKE build script)
build.cmd Build
Expand Down
203 changes: 0 additions & 203 deletions XrmMockup.sln

This file was deleted.

41 changes: 41 additions & 0 deletions XrmMockup.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<Solution>
<Configurations>
<Platform Name="Any CPU" />
<Platform Name="x64" />
<Platform Name="x86" />
</Configurations>
<Folder Name="/files/">
<File Path="files/TypeDeclarations.cs" />
</Folder>
<Folder Name="/MetadataGen/">
<File Path="src/MetadataGen/appsettings.json" />
<Project Path="src/MetadataGen/MetadataGenerator.Context/MetadataGenerator.Context.csproj" />
<Project Path="src/MetadataGen/MetadataGenerator.Core/MetadataGenerator.Core.csproj" />
<Project Path="src/MetadataGen/MetadataGenerator.Tool.Tests/MetadataGenerator.Tool.Tests.csproj" />
<Project Path="src/MetadataGen/MetadataGenerator.Tool/MetadataGenerator.Tool.csproj" />
<Project Path="src/MetadataGen/MetadataGenerator365/MetadataGenerator365.csproj" />
</Folder>
<Folder Name="/MetadataGen/scripts/">
<File Path="src/MetadataGen/scripts/Compare-MetadataGenerators.ps1" />
<File Path="src/MetadataGen/scripts/Regenerate-Metadata.ps1" />
<File Path="src/MetadataGen/scripts/Set-MetadataGeneratorVersion.ps1" />
</Folder>
<Folder Name="/project/">
<File Path=".github/workflows/ci.yml" />
<File Path=".github/workflows/release.yml" />
<File Path="README.md" />
<File Path="RELEASE_NOTES.md" />
</Folder>
<Folder Name="/Solution Items/">
<File Path=".gitignore" />
<File Path="CLAUDE.md" />
<File Path="Directory.Build.props" />
</Folder>
<Folder Name="/tests/">
<Project Path="tests/TestPluginAssembly365/TestPluginAssembly365.csproj" />
<Project Path="tests/XrmMockup365Test/XrmMockup365Test.csproj" />
</Folder>
<Project Path="src/MetadataSkeleton/MetadataSkeleton.shproj" />
<Project Path="src/XrmMockup365/XrmMockup365.csproj" />
<Project Path="Tools/Tools.csproj" Id="d375a019-3229-4d24-955b-06248d1d12f5" />
</Solution>
2 changes: 1 addition & 1 deletion src/MetadataGen/scripts/Compare-MetadataGenerators.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Write-Host ""
# Build paths
$oldExePath = Join-Path $repoRoot "MetadataGenerator365\bin\Release\net462\MetadataGenerator365.exe"
$newToolPath = Join-Path $repoRoot "MetadataGenerator.Tool\bin\Release\net10.0\XrmMockup.MetadataGenerator.Tool.dll"
$solutionPath = Join-Path $repoRoot "..\..\XrmMockup.sln"
$solutionPath = Join-Path $repoRoot "..\..\XrmMockup.slnx"

if ($NoBuild) {
# Verify executables exist when skipping build
Expand Down
Loading