41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net6.0</TargetFramework>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\HotelContracts\HotelContracts.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Content Update="Views\Shared\Error.cshtml">
|
||
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
||
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||
|
</Content>
|
||
|
<Content Update="Views\Shared\_Layout.cshtml">
|
||
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
||
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||
|
</Content>
|
||
|
<Content Update="Views\Shared\_ValidationScriptsPartial.cshtml">
|
||
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
||
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||
|
</Content>
|
||
|
<Content Update="Views\_ViewImports.cshtml">
|
||
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
||
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||
|
</Content>
|
||
|
<Content Update="Views\_ViewStart.cshtml">
|
||
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
||
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||
|
</Content>
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|