gpt4 book ai didi

visual-studio-2019 - Visual Studio 建议使用 C# 8.0 功能,但编译器产生错误

转载 作者:行者123 更新时间:2023-12-04 13:57:51 24 4
gpt4 key购买 nike

在我的项目中,Visual Studio 建议我将 C# 8.0 功能用于 Framework 4.6 项目,即使 Microsoft 文档中将默认值指定为 7.3。建议之一的示例:

var i1 = "";
var i2 = "";
i1 = i1 ?? i2; //suggests i1 ??= i2;

example of suggestion

如果我让 VS 更正这些建议,IDE 不会向我显示任何错误或警告,但是在我构建的那一刻,我会收到编译器错误。

我知道我可以更改 langversion在 .csproj 文件中让它工作,但这不是重点。

为什么我得到建议,然后在编译之前继续没有错误?

在我的内存中,我曾经收到过自动将项目升级到 langversion 的建议。对于过去的 7.X 功能,如果我想使用该版本的功能。

.csproj 文件之一的示例:

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{00000000-0000-0000-0000-000000000000}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>MyProject</RootNamespace>
<AssemblyName>MyProject</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
//... References & compilation files
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

最佳答案

更新 Microsoft.Net.Compilers NuGet 包对我有用。
我从 2.10.0 更新到 3.11.0。

关于visual-studio-2019 - Visual Studio 建议使用 C# 8.0 功能,但编译器产生错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58232539/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com