美文网首页
Visual Studio解决方案资源管理器不显示cs文件

Visual Studio解决方案资源管理器不显示cs文件

作者: 日落_3d9f | 来源:发表于2022-01-19 16:38 被阅读0次

    无法在解决方案资源管理器中找到cs文件,您应该做的是:

    /project_directory/project_name.csproj编辑此文件,并确保name.cs如下所示:

    注意:首先从该文件中删除具有现有your_form_name.cs的所有记录,并添加以下内容:

    `<Compile Include="your_name.cs">
       <SubType>Form</SubType>
    </Compile>
    <Compile Include="your_name.Designer.cs">
       <DependentUpon>your_form_name.cs</DependentUpon>
    </Compile>
       <EmbeddedResource Include="your_name.resx">
       <DependentUpon>your_form_name.cs</DependentUpon>
    </EmbeddedResource>`
    

    再次打开解决方案,cs文件将显示在您的项目中。

    相关文章

      网友评论

          本文标题:Visual Studio解决方案资源管理器不显示cs文件

          本文链接:https://www.haomeiwen.com/subject/ydwrhrtx.html