main
|
Last change
on this file since 08aefc6 was 08aefc6, checked in by mmilevski <markomilevski3@…>, 4 weeks ago |
|
Initial commit
|
-
Property mode
set to
100644
|
|
File size:
1.6 KB
|
| Line | |
|---|
| 1 | <Project Sdk="Microsoft.NET.Sdk.Web">
|
|---|
| 2 |
|
|---|
| 3 | <PropertyGroup>
|
|---|
| 4 | <TargetFramework>net8.0</TargetFramework>
|
|---|
| 5 | <ImplicitUsings>enable</ImplicitUsings>
|
|---|
| 6 | <Nullable>enable</Nullable>
|
|---|
| 7 | </PropertyGroup>
|
|---|
| 8 |
|
|---|
| 9 | <ItemGroup>
|
|---|
| 10 | <ProjectReference Include="..\KernelRecordsMVC.Application\KernelRecordsMVC.Application.csproj" />
|
|---|
| 11 | <ProjectReference Include="..\KernelRecordsMVC.Infrastructure\KernelRecordsMVC.Infrastructure.csproj" />
|
|---|
| 12 | </ItemGroup>
|
|---|
| 13 |
|
|---|
| 14 | <ItemGroup>
|
|---|
| 15 | <Content Update="appsettings.json">
|
|---|
| 16 | <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|---|
| 17 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|---|
| 18 | <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|---|
| 19 | </Content>
|
|---|
| 20 | <Content Update="appsettings.Development.json">
|
|---|
| 21 | <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|---|
| 22 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|---|
| 23 | <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|---|
| 24 | </Content>
|
|---|
| 25 | </ItemGroup>
|
|---|
| 26 |
|
|---|
| 27 | <ItemGroup>
|
|---|
| 28 | <AdditionalFiles Include="Views\Home\Index.cshtml" />
|
|---|
| 29 | <AdditionalFiles Include="Views\Home\Privacy.cshtml" />
|
|---|
| 30 | <AdditionalFiles Include="Views\Shared\Error.cshtml" />
|
|---|
| 31 | <AdditionalFiles Include="Views\Shared\_Layout.cshtml" />
|
|---|
| 32 | <AdditionalFiles Include="Views\Shared\_ValidationScriptsPartial.cshtml" />
|
|---|
| 33 | <AdditionalFiles Include="Views\_ViewImports.cshtml" />
|
|---|
| 34 | <AdditionalFiles Include="Views\_ViewStart.cshtml" />
|
|---|
| 35 | </ItemGroup>
|
|---|
| 36 |
|
|---|
| 37 | <ItemGroup>
|
|---|
| 38 | <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.8" />
|
|---|
| 39 | </ItemGroup>
|
|---|
| 40 |
|
|---|
| 41 | </Project>
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.