Fix code style

This commit is contained in:
Laura Hausmann 2022-12-02 04:20:06 +01:00
parent e010feaaba
commit be1f02e1d9
Signed by: zotan
GPG key ID: D044E84C5BE01605
5 changed files with 16 additions and 16 deletions

View file

@ -41,4 +41,4 @@ app.UseAuthorization();
app.MapRazorPages(); app.MapRazorPages();
app.MapControllers(); app.MapControllers();
app.Run(); app.Run();

View file

@ -24,4 +24,4 @@ else {
<p> <p>
<strong>Request ID:</strong> <code>@Model.RequestId</code> <strong>Request ID:</strong> <code>@Model.RequestId</code>
</p> </p>
} }

View file

@ -25,4 +25,4 @@
</td> </td>
</tr> </tr>
} }
</table> </table>

View file

@ -57,4 +57,4 @@
@await RenderSectionAsync("postfooter", false) @await RenderSectionAsync("postfooter", false)
</div> </div>
</body> </body>
</html> </html>

View file

@ -8,28 +8,28 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="linq2db" Version="4.3.0" /> <PackageReference Include="linq2db" Version="4.3.0"/>
<PackageReference Include="Markdig" Version="0.30.4" /> <PackageReference Include="Markdig" Version="0.30.4"/>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="7.0.0" /> <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="7.0.0"/>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.0" /> <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.0"/>
<PackageReference Include="System.Data.SQLite" Version="1.0.115" /> <PackageReference Include="System.Data.SQLite" Version="1.0.115"/>
<PackageReference Include="System.ServiceModel.Syndication" Version="7.0.0" /> <PackageReference Include="System.ServiceModel.Syndication" Version="7.0.0"/>
<PackageReference Include="YamlDotNet" Version="12.0.2" /> <PackageReference Include="YamlDotNet" Version="12.0.2"/>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Remove=".gitignore" /> <None Remove=".gitignore"/>
<None Remove=".bearer_token" /> <None Remove=".bearer_token"/>
<None Remove="database.db" /> <None Remove="database.db"/>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<_ContentIncludedByDefault Remove="Pages\ErrorPages\404.cshtml" /> <_ContentIncludedByDefault Remove="Pages\ErrorPages\404.cshtml"/>
</ItemGroup> </ItemGroup>
<Target Name="SetSourceRevisionId" BeforeTargets="InitializeSourceControlInformation"> <Target Name="SetSourceRevisionId" BeforeTargets="InitializeSourceControlInformation">
<Exec Command="git describe --long --always --dirty --exclude=* --abbrev=8" ConsoleToMSBuild="True" IgnoreExitCode="False"> <Exec Command="git describe --long --always --dirty --exclude=* --abbrev=8" ConsoleToMSBuild="True" IgnoreExitCode="False">
<Output PropertyName="SourceRevisionId" TaskParameter="ConsoleOutput" /> <Output PropertyName="SourceRevisionId" TaskParameter="ConsoleOutput"/>
</Exec> </Exec>
</Target> </Target>