47 lines
1.9 KiB
XML
47 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UserSecretsId>02904645-4084-486e-a036-9081aa0cef47</UserSecretsId>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
<DockerfileRunEnvironmentFiles>Dockerfile.env</DockerfileRunEnvironmentFiles>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="wwwroot\node_modules\**" />
|
|
<Content Remove="wwwroot\node_modules\**" />
|
|
<EmbeddedResource Remove="wwwroot\node_modules\**" />
|
|
<None Remove="wwwroot\node_modules\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="EntityFramework" Version="6.4.4" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.5" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Migrations\" />
|
|
<Folder Include="wwwroot\bulletin-board-images\notes\" />
|
|
<Folder Include="wwwroot\bulletin-board-images\pages\" />
|
|
<Folder Include="wwwroot\img\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Properties\PublishProfiles\docker.zapecnik.com.pubxml.user" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|