Replace legacy .nuspec and .sln files with modern SDK equivalents#46
Merged
jonathanvdc merged 2 commits intomasterfrom Mar 28, 2026
Merged
Conversation
Agent-Logs-Url: https://github.com/jonathanvdc/Flame/sessions/1a640b08-f1b3-45f6-824f-1472bf9f41f3 Co-authored-by: jonathanvdc <9839946+jonathanvdc@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Replace legacy nuspec and sln files with modern equivalents
Replace legacy .nuspec and .sln files with modern SDK equivalents
Mar 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The repo carried three standalone
.nuspecfiles and a solution file with a VS 2012 header — both legacy artifacts superseded by SDK-style project tooling.NuGet packaging → folded into
.csprojDeleted
Flame.nuspec,Flame.Clr.nuspec, andFlame.Ir.nuspec. Package metadata (PackageId,Authors,Description,PackageLicenseExpression,PackageTags,PackageProjectUrl,Copyright) is now declared directly in each library's.csproj:Flame.csproj→FlamepackageFlame.Compiler.csproj→Flame.Compilerpackage (was bundled withFlamein the old nuspec; split into its own package per SDK-style convention)Flame.Ir.csproj→Flame.IrpackageFlame.Clr.csproj→Flame.ClrpackagePackage dependencies (project-to-project and third-party) are resolved automatically from existing
<ProjectReference>and<PackageReference>items.Solution file
Updated
Flame.slnheader from# Visual Studio 2012to# Visual Studio Version 17withVisualStudioVersion/MinimumVisualStudioVersionproperties.Makefile
nugettarget:nuget restore→dotnet restore Flame.slnpacktarget:dotnet pack Flame.sln -c Release✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.