Files
jsmr/JSMR.Application/JSMR.Application.csproj
Brian Bicknell ae8d7d34d9
Some checks failed
ci / publish-image (push) Has been skipped
ci / build-test (push) Failing after 1m32s
Migrated from .NET 9 to .NET 10.
2026-02-25 20:18:38 -05:00

23 lines
614 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="Tags\Queries\Ports\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\JSMR.Domain\JSMR.Domain.csproj" />
</ItemGroup>
</Project>