Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion EssentialCSharp.Web.Tests/EssentialCSharp.Web.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>

<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
Expand Down
2 changes: 1 addition & 1 deletion EssentialCSharp.Web/EssentialCSharp.Web.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PlaceholderChapterOneHtmlFile Include="$(ProjectDir)/Placeholders/Chapters/01/Pages/*.html" />
Expand Down
4 changes: 2 additions & 2 deletions EssentialCSharp.Web/Views/Home/Guidelines.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<div class="mb-4">
<h2 class="fs-4 heading-wrapper" id="naming-conventions-table">
C# Naming Conventions - Quick Reference Table
<a class="anchor-link" href="#naming-conventions-table" v-on:click="copyToClipboard('naming-conventions-table')" title="Copy direct link to naming conventions table">
<a class="anchor-link" href="#naming-conventions-table" v-on:click="copyToClipboard('guidelines#naming-conventions-table')" title="Copy direct link to naming conventions table">
<i class="fa-solid fa-link"></i>
</a>
</h2>
Expand Down Expand Up @@ -46,7 +46,7 @@
{
<h2 class="fs-4 heading-wrapper" id="@group.Key?.ToLower()">
@group.Key
<a class="anchor-link" href="#@group.Key?.ToLower()" v-on:click="copyToClipboard('@group.Key?.ToLower()')" title="Copy direct link to @group.Key subsection">
<a class="anchor-link" href="#@group.Key?.ToLower()" v-on:click="copyToClipboard('guidelines#@group.Key?.ToLower()')" title="Copy direct link to @group.Key subsection">
<i class="fa-solid fa-link"></i>
</a>
</h2>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "9.0.101",
"version": "8.0.118",
"rollForward": "latestMinor"
}
}