Files
fs-onboarding/FoodsharingSiegen.Server/FoodsharingSiegen.Server.csproj
troogs d1852f28c8
All checks were successful
Build And Push Dev Docker Image / docker (push) Successful in 1m29s
Remove target for adding generated CSS files to web assets
2026-04-20 22:11:51 +02:00

44 lines
1.8 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<PropertyGroup>
<BuildDate>$([System.DateTime]::Now.ToString("yyyyMMdd"))</BuildDate>
<PublishDir>..\Publish\Server</PublishDir>
</PropertyGroup>
<Target Name="GenerateBuildInfo" BeforeTargets="Build">
<WriteLinesToFile File="$(ProjectDir)wwwroot\buildinfo.txt" Lines="$(BuildDate)" Overwrite="true" />
</Target>
<ItemGroup>
<ProjectReference Include="..\FoodsharingSiegen.Contracts\FoodsharingSiegen.Contracts.csproj" />
<ProjectReference Include="..\FoodsharingSiegen.Shared\FoodsharingSiegen.Shared.csproj" />
</ItemGroup>
<PropertyGroup>
<DartSassOutputStyle>expanded</DartSassOutputStyle>
<DartSassOutputLevel>verbose</DartSassOutputLevel>
<DartSassMessageLevel>High</DartSassMessageLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DartSassBuilder" Version="1.1.0" />
<PackageReference Include="MailKit" Version="4.4.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.3" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.7.0" />
</ItemGroup>
</Project>