Scaffold FrameProcessor.slnx with src/FrameProcessor (net10.0 Web SDK) and tests/FrameProcessor.Tests (xUnit) plus .gitignore and global.json pinning the .NET 10 SDK. dotnet build, dotnet test, and dotnet format --verify-no-changes all pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
25 lines
726 B
XML
25 lines
726 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="coverlet.collector" Version="6.0.4" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
|
|
<PackageReference Include="xunit" Version="2.9.3" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Xunit" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\FrameProcessor\FrameProcessor.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |