DRAB/Drab/Drab.csproj
2025-07-11 00:18:14 +02:00

35 lines
1.4 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<TargetFramework>net9.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.7"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.7"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.7"/>
<PackageReference Include="NLog" Version="6.0.1"/>
<PackageReference Include="NLog.Web.AspNetCore" Version="6.0.1"/>
<PackageReference Include="Radzen.Blazor" Version="7.1.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Drab.Core\Drab.Core.csproj"/>
<ProjectReference Include="..\Drab.Logic\Drab.Logic.csproj"/>
<ProjectReference Include="..\Pcm.Db\Pcm.Db.csproj"/>
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\css\common.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>