gpt4 book ai didi

c# - 找不到元数据文件 .dll

转载 作者:行者123 更新时间:2023-12-04 17:06:43 26 4
gpt4 key购买 nike

我的项目找不到命名空间。有人知道问题是什么吗?

我已经尝试了很多选择来解决这个问题。但没有一个有效。

我尝试过:清理解决方案、构建解决方案、重构和

右键单击解决方案,然后单击“属性”。

点击左侧的配置。

确保它无法找到的项目的 Build 下的复选框被选中。

如果它已经被选中,取消选中,点击应用并再次选中复选框。

这是我的代码的屏幕截图。 screenshot of code

    <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>{DD7D144A-06C0-482A-9142-3CD989CCC7A4}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NTier.BLL</RootNamespace>
<AssemblyName>NTier.BLL</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

<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' ">

<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="Admin\AdminLogic.cs" />
<Compile Include="Customer\CustomerLogic.cs" />
<Compile Include="Admin\IAdminLogic.cs" />
<Compile Include="Customer\ICustomerLogic.cs" />
<Compile Include="Customer\INotRegularCustomerLogic.cs" />
<Compile Include="Customer\IRegularCustomerLogic.cs" />
<Compile Include="Customer\NotRegularCustomerLogic.cs" />
<Compile Include="Customer\RegularCustomerLogic.cs" />
<Compile Include="Order\IOrderLogic.cs" />
<Compile Include="Order\OrderLogic.cs" />
<Compile Include="Product\IProductLogic.cs" />
<Compile Include="Review\IReviewLogic.cs" />
<Compile Include="Product\ProductLogic.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Review\ReviewLogic.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NTier.DAL\NTier.DAL.csproj">

<Project>{a42bdcd5-0ec1-4d2a-b96a-92e39138e9cb}</Project>
<Name>NTier.DAL</Name>
</ProjectReference>
<ProjectReference Include="..\NTier.Domain\NTier.Domain.csproj">
<Project>{70a4d682-67bb-456b-a21d-f343b43fe1b6}</Project>
<Name>NTier.Domain</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<WCFMetadata Include="Connected Services\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

这是您要求的代码。希望你能帮助我解决我的问题。

最佳答案

原因是您在 ProductLogic 中的命名空间之间存在冲突。类和产品类的名称来自 NTier.Domain命名空间。与项目引用关系不大。在这种情况下,VS 优先于当前命名空间,而不是来自其他命名空间的类。
您需要使用 NTier.Domain.Product每次每次Product在这种情况下的类用法或更改您的 NTier.BLL.Product命名空间到别的东西;例如NTier.BLL.ProductLogic
您“不能”使用 Ntier.Domain 似乎也不是真的命名空间(引用附加的屏幕截图和其中的注释):它是灰色的,因为它根本没有使用(因为 VS 不会将代码中使用的任何 Product 字符串连接到您希望它执行的类,而是连接到当前命名空间,因此没有使用 Ntier.Domain 中的任何类,并且 VS 说您“您可以删除该引用,它没有被使用”),以检查:
如果您将鼠标放在产品引用上,您应该会看到如下内容:

enter image description here

这会通知您 VS 没有在那里看到一个类,而是您当前的命名空间

关于c# - 找不到元数据文件 .dll,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50021149/

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