| 1 | <Project Sdk="Microsoft.NET.Sdk.Web">
|
|---|
| 2 |
|
|---|
| 3 | <PropertyGroup>
|
|---|
| 4 | <TargetFramework>net8.0</TargetFramework>
|
|---|
| 5 | <ImplicitUsings>enable</ImplicitUsings>
|
|---|
| 6 | <Nullable>enable</Nullable>
|
|---|
| 7 | <UserSecretsId>7996030f-d5d7-4616-a943-1e4992329169</UserSecretsId>
|
|---|
| 8 | </PropertyGroup>
|
|---|
| 9 |
|
|---|
| 10 | <ItemGroup>
|
|---|
| 11 | <ProjectReference Include="..\KernelRecordsMVC.Application\KernelRecordsMVC.Application.csproj" />
|
|---|
| 12 | <ProjectReference Include="..\KernelRecordsMVC.Infrastructure\KernelRecordsMVC.Infrastructure.csproj" />
|
|---|
| 13 | </ItemGroup>
|
|---|
| 14 |
|
|---|
| 15 | <ItemGroup>
|
|---|
| 16 | <Content Update="appsettings.json">
|
|---|
| 17 | <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|---|
| 18 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|---|
| 19 | <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|---|
| 20 | </Content>
|
|---|
| 21 | <Content Update="appsettings.Development.json">
|
|---|
| 22 | <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|---|
| 23 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|---|
| 24 | <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|---|
| 25 | </Content>
|
|---|
| 26 | </ItemGroup>
|
|---|
| 27 |
|
|---|
| 28 | <ItemGroup>
|
|---|
| 29 | <AdditionalFiles Include="Views\Home\Index.cshtml" />
|
|---|
| 30 | <AdditionalFiles Include="Views\Home\Privacy.cshtml" />
|
|---|
| 31 | <AdditionalFiles Include="Views\Shared\Error.cshtml" />
|
|---|
| 32 | <AdditionalFiles Include="Views\Shared\_Layout.cshtml" />
|
|---|
| 33 | <AdditionalFiles Include="Views\Shared\_ValidationScriptsPartial.cshtml" />
|
|---|
| 34 | <AdditionalFiles Include="Views\_ViewImports.cshtml" />
|
|---|
| 35 | <AdditionalFiles Include="Views\_ViewStart.cshtml" />
|
|---|
| 36 | </ItemGroup>
|
|---|
| 37 |
|
|---|
| 38 | <ItemGroup>
|
|---|
| 39 | <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.8" />
|
|---|
| 40 | <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.8" />
|
|---|
| 41 | </ItemGroup>
|
|---|
| 42 |
|
|---|
| 43 | </Project>
|
|---|