38 lines
915 B
XML
38 lines
915 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="Views\Home\Mails.cshtml" />
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.26" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.9.2" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SushiBarContracts\SushiBarContracts.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<UpToDateCheckInput Remove="Views\Home\Mails.cshtml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<_ContentIncludedByDefault Remove="Views\Home\Mails.cshtml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Views\Home\Mails.cshtml" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|