<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>miniblogcore &amp;mdash; Attach to Process</title>
    <link>https://devblog.dinobansigan.com/tag:miniblogcore</link>
    <description>Thoughts and Notes on Software Development</description>
    <pubDate>Fri, 24 Apr 2026 11:20:19 +0000</pubDate>
    <image>
      <url>https://i.snap.as/4wmUdb6N.png</url>
      <title>miniblogcore &amp;mdash; Attach to Process</title>
      <link>https://devblog.dinobansigan.com/tag:miniblogcore</link>
    </image>
    <item>
      <title>Invalid Nullable Value - Enable for C# 7.3</title>
      <link>https://devblog.dinobansigan.com/invalid-nullable-value-enable-for-c-7-3?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[I was playing around with Visual Studio 2019 and the open source ASP.NET Core blog engine Miniblog.Core. I cloned it to my local, opened it in Visual Studio 2019 and tried to build the solution. I immediately ran into the error below:&#xA;&#xA;Error&#x9;CS8630&#x9;Invalid &#39;nullable&#39; value: &#39;Enable&#39; for C# 7.3. Please use language version &#39;8.0&#39; or greater.&#xA;&#xA;So, I looked up the error message and every Stack Overflow page I ended up on, says that I have to set the Language Version in Visual Studio. Okay, so how do I do that? I eventually found this answer, which gives you the steps to get to the Advanced Build Settings dialog box for the project.&#xA;&#xA;  - Right-click YourProject, click Properties&#xA;  - Click Build if it&#39;s not already selected&#xA;  - Change Configuration to All Configurations&#xA;  - Click Advanced...&#xA;  - Change the language version&#xA;&#xA;When the dialog box showed up however, it didn&#39;t give me an option to set the Language Version.&#xA;&#xA;Visual Studio 2019 - Advanced Build Settings&#xA;&#xA;Solution&#xA;&#xA;The solution I ended up with involved manually editing the project file and adding an entry for the Language Version. So, I opened up the Miniblog.Core.csproj file and added LangVersionpreview/LangVersion under the PropertyGroup settings. It looks like this:&#xA;&#xA;Setting the Language Version manually&#xA;&#xA;Tags: #DotNet #VisualStudio #MiniblogCore&#xA;&#xA;a href=&#34;https://remark.as/p/devblog.dinobansigan.com/invalid-nullable-value-enable-for-c-7-3&#34;Discuss.../a or leave a comment below.]]&gt;</description>
      <content:encoded><![CDATA[<p>I was playing around with Visual Studio 2019 and the open source ASP.NET Core blog engine <a href="https://github.com/madskristensen/Miniblog.Core">Miniblog.Core</a>. I cloned it to my local, opened it in Visual Studio 2019 and tried to build the solution. I immediately ran into the error below:</p>

<p><code>Error  CS8630  Invalid &#39;nullable&#39; value: &#39;Enable&#39; for C# 7.3. Please use language version &#39;8.0&#39; or greater.</code></p>

<p>So, I looked up the error message and every Stack Overflow page I ended up on, says that I have to set the Language Version in Visual Studio. Okay, so how do I do that? I eventually found <a href="https://stackoverflow.com/a/52527257/5041911">this answer</a>, which gives you the steps to get to the Advanced Build Settings dialog box for the project.</p>

<blockquote><ul><li>Right-click YourProject, click Properties</li>
<li>Click Build if it&#39;s not already selected</li>
<li>Change Configuration to All Configurations</li>
<li>Click Advanced...</li>
<li>Change the language version</li></ul>
</blockquote>

<p>When the dialog box showed up however, it didn&#39;t give me an option to set the Language Version.</p>

<p><img src="https://i.snap.as/QaOF9Ihr.jpg" alt="Visual Studio 2019 - Advanced Build Settings"/></p>

<h2 id="solution" id="solution">Solution</h2>

<p>The solution I ended up with involved manually editing the project file and adding an entry for the Language Version. So, I opened up the Miniblog.Core.csproj file and added <code>&lt;LangVersion&gt;preview&lt;/LangVersion&gt;</code> under the <code>&lt;PropertyGroup&gt;</code> settings. It looks like this:</p>

<p><img src="https://i.snap.as/64o2l2bF.jpg" alt="Setting the Language Version manually"/></p>

<p><em>Tags: <a href="https://devblog.dinobansigan.com/tag:DotNet" class="hashtag"><span>#</span><span class="p-category">DotNet</span></a> <a href="https://devblog.dinobansigan.com/tag:VisualStudio" class="hashtag"><span>#</span><span class="p-category">VisualStudio</span></a> <a href="https://devblog.dinobansigan.com/tag:MiniblogCore" class="hashtag"><span>#</span><span class="p-category">MiniblogCore</span></a></em></p>

<p><strong><a href="https://remark.as/p/devblog.dinobansigan.com/invalid-nullable-value-enable-for-c-7-3">Discuss...</a></strong> or leave a comment below.</p>
]]></content:encoded>
      <guid>https://devblog.dinobansigan.com/invalid-nullable-value-enable-for-c-7-3</guid>
      <pubDate>Wed, 22 Apr 2020 23:00:00 +0000</pubDate>
    </item>
  </channel>
</rss>