22 lines
746 B
XML
22 lines
746 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\src\SplashPage.Application\SplashPage.Application.csproj" />
|
|
<ProjectReference Include="..\src\SplashPage.Core\SplashPage.Core.csproj" />
|
|
<ProjectReference Include="..\src\SplashPage.EntityFrameworkCore\SplashPage.EntityFrameworkCore.csproj" />
|
|
<ProjectReference Include="..\src\SplashPage.Web.Host\SplashPage.Web.Host.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|