RBLNews/RBLNews.Web/RBLNews.Web.csproj
Tobias Wohlleben c7f81e2172
All checks were successful
Restart Docker Container on Production / build (pull_request) Successful in 3m27s
umbau auf enviroment appsettings
2024-09-24 22:53:19 +02:00

37 lines
1.1 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\RBLNews.Shared\RBLNews.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Blazor.Bootstrap" Version="3.0.0" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\fonts\NanumMyeongjo-Regular.ttf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\RBLNews.Shared\wwwroot\appsettings.Development.json">
<Link>appsettings.Development.json</Link>
</Content>
<Content Include="..\RBLNews.Shared\wwwroot\appsettings.json">
<Link>appsettings.json</Link>
</Content>
<Content Include="..\RBLNews.Shared\wwwroot\appsettings.Production.json">
<Link>appsettings.Production.json</Link>
</Content>
<Content Include="..\RBLNews.Shared\wwwroot\appsettings.Test.json">
<Link>appsettings.Test.json</Link>
</Content>
</ItemGroup>
</Project>