DebuggerDisplayAttribute在VS 2017中没有任何效果

问题描述 投票:1回答:1

似乎DebuggerDisplayAttribute在使用Resharper 2018.2.3的Visual Studio 2017(15.9.4)中没有任何效果。

  • 将属性放在AssemblyInfo.cs或Program.cs中,没有明显的效果。
  • 我的目标是.Net Framework 4.7.2。更改框架版本也没有明显的效果。
  • 我已经验证在“工具” - >“选项” - >“调试” - >“常规”中未选中“在变量窗口中显示对象的原始结构”。我甚至检查了它,关闭VS,重新打开VS,并取消选中它,只是为了确定。没有效果。

enter image description here

  • 将属性放在自定义类上会产生影响。似乎只在组装级别忽略该属性。
  • 这在VS 2015中具有预期效果(使用相同版本的Resharper)。
  • 以安全模式启动VS 2017(使用devenv.exe /safemode)无效。
  • 更新VS 15.9.4 - > 15.9.7无效。

这是一个非常基本的控制台应用程序尽管有这个属性,dt变量在我的观察窗口中显示为{2/14/2019 10:35:38 AM}enter image description here

[assembly: DebuggerDisplay("Foo", Target = typeof(DateTime))]

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            var dt = DateTime.Now;
            Debugger.Break();
        }
    }
}

如果我使用ILSpy反编译我的控制台应用程序,我可以看到这些属性应用:

[assembly: Debuggable(
    DebuggableAttribute.DebuggingModes.Default | 
    DebuggableAttribute.DebuggingModes.DisableOptimizations | 
    DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | 
    DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: DebuggerDisplay("Foo", Target = typeof(DateTime))]

为什么属性没有做任何事情?我怎么开始调试这个?

编辑:根据请求完成源文件。

ConsoleApp1.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>{EBBA72C6-5087-4D8E-9F2C-B968ABD59EAA}</ProjectGuid>
    <OutputType>Exe</OutputType>
    <RootNamespace>ConsoleApp1</RootNamespace>
    <AssemblyName>ConsoleApp1</AssemblyName>
    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
    <Deterministic>true</Deterministic>
  </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>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Data" />
    <Reference Include="System.Net.Http" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Program.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
  </ItemGroup>
  <ItemGroup>
    <None Include="App.config" />
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

的app.config:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
    </startup>
</configuration>

AssemblyInfo.cs中:

using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("ConsoleApp1")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ConsoleApp1")]
[assembly: AssemblyCopyright("Copyright ©  2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("ebba72c6-5087-4d8e-9f2c-b968abd59eaa")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
c# visual-studio-2017 resharper debuggerdisplay
1个回答
2
投票

我已经根据您提供的来源构建了项目,并且无法重现该问题:

这意味着在VS 2017的全新安装中,该功能必须正常工作。所以你的Visual Studio安装必须以某种方式腐败。

在评论调查后,我建议进行安装修复,它应该解决问题。

© www.soinside.com 2019 - 2024. All rights reserved.