8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

错误 NETSDK1005 资产文件,确保恢复已运行,并且已在项目的 TargetFrameworks 中包含“net8.0-android”

Igor Kondrasovas 3月前

73 0

我正在使用 Windows 11 开发 Maui 应用程序,然后我降级到 Windows 10。现在出现此错误。**\'错误(活动)NETSDK1005 资产文件'D:\Csharp\Maui\IdealDiagnosis.Maui\

我正在使用 Windows 11 开发 Maui 应用程序,然后我降级到 Windows 10。现在出现此错误。**\'错误(活动)NETSDK1005 资产文件'D:\Csharp\Maui\IdealDiagnosis.Maui\IdealDiagnosis\obj\project.assets.json' 没有'net8.0-android' 的目标。确保恢复已运行并且您已在项目的 TargetFrameworks 中包含'net8.0-android'。
IdealDiagnosis (net8.0-android) C:\Program Files\dotnet\sdk\8.0.303\Sdks\Microsoft.NET.Sdk\targets\Microsoft.PackageDependencyResolution.targets 266\' **

项目文件中添加的包

就像在这张 图片 image2 ,我还注意到项目属性文件中有 2 个应用程序选项,第一个选项包括其他 maui 项目中的 win 32 选项 mot

这里

我尝试手动删除软件包的行然后再次添加它们,尝试删除 bin 和 obj 文件夹,尝试重新加载项目,但仍然出现相同的错误

这个错误是不是因为我更换了电脑的 Windows 版本

我注意到,如果我删除除 Windows 之外的软件包的第一行,然后运行该应用程序,该应用程序仅在 Windows 机器上正常运行

帖子版权声明 1、本帖标题:错误 NETSDK1005 资产文件,确保恢复已运行,并且已在项目的 TargetFrameworks 中包含“net8.0-android”
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Igor Kondrasovas在本站《visual-studio》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 我正在尝试开发一个用于科学计算的 Mac OS 库。它可以在 Linux 上运行并编译文件,但出于某种原因,我在 Mac.ld 上遇到了奇怪的错误:__DATA_CONST 段丢失

    我正在尝试开发一个用于 Mac OS 的科学计算库。它在 Linux 上可以运行并编译文件,但出于某种原因,我在 Mac 上遇到了奇怪的错误。

    ld: __DATA_CONST segment missing SG_READ_ONLY flag in '/Users/ec2-user/libdescriptor/bin/libdescriptor.dylib'
    

    或者

    ld: __DATA_CONST segment permissions is not 'rw-' in '/Users/ec2-user/libdescriptor/bin/libdescriptor.dylib'
    

    它是一个与我的库链接的 python pybind11 模块。

    以下是我的库的 make 文件, libdescriptor.dylib

    CXX := /opt/homebrew/Cellar/llvm@13/13.0.1_2/bin/clang++
    CXXFLAGS := -std=c++17 -O3 -dynamiclib -fuse-ld=lld -flto  -Iinclude
    
    #Enzyme lib location
    ENZYME_LIB := /usr/local/lib/LLDEnzyme-13.dylib
    
    # Directories
    SRCDIR := src
    INCDIR := include
    OBJDIR := obj
    BINDIR := bin
    
    # Output library
    TARGET := $(BINDIR)/libdescriptor.dylib
    
    # Source files
    SRCFILES := $(wildcard $(SRCDIR)/*.cpp) $(wildcard $(SRCDIR)/*/*.cpp)
    # Object files
    OBJFILES := $(patsubst $(SRCDIR)/%.cpp,$(OBJDIR)/%.o,$(SRCFILES))
    
    # Create directories if they don't exist
    $(shell mkdir -p $(BINDIR) $(OBJDIR) $(OBJDIR)/maths)
    
    # Default target
    all: $(TARGET)
    
    # Link the executable
    $(TARGET): $(OBJFILES)
        $(CXX)  -flto $(CXXFLAGS) -o $@ $^  -Wl,--lto-legacy-pass-manager -Wl,-mllvm -load=$(ENZYME_LIB) -Wl,-mllvm,-enzyme-loose-types 
    
    # -Wl,-segprot,__DATA_CONST,r,r  <- modifications suggested by ChatGPT
    #-Wl,-segprot,__DATA_CONST,ro,ro
    
    # Compile source files into object files
    $(OBJDIR)/%.o: $(SRCDIR)/%.cpp
        $(CXX) $(CXXFLAGS) -c $< -o $@
    
    # Clean up build files
    clean:
        rm -rf $(OBJDIR) $(BINDIR)
    
    .PHONY: all clean
    

    它编译代码,然后调用名为 Enzyme 来区分函数。因此,它使用 LLVM 13 和 lld 链接器,而不是默认的 Mac OS 链接器。

    编译时没有错误。当我将其链接到我的 Pybind11 模块(下面的 CMake 文件)时,我得到了 _DATA_CONST 上面提到的错误。我尝试在 pybind11 步骤上交换链接器和编译器,但没有帮助。

    pybind11 模块的 Cmakefile:

    cmake_minimum_required(VERSION 3.16)
    
    project(libdescriptor)
    
    set(CMAKE_BUILD_TYPE Release)
    set(CMAKE_CXX_STANDARD 17)
    set(CMAKE_CXX_STANDARD_REQUIRED YES)
    
    # Ensure using LLVM's LLD linker
    set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fuse-ld=lld -Wl,-segprot,__DATA_CONST,r,r")
    
    # Include directories
    include_directories(include)
    
    # Pybind11
    find_package(pybind11 REQUIRED)
    
    # Source files for the Pybind11 module
    file(GLOB PYSOURCES python_bindings/*.cpp python_bindings/**/*.cpp)
    
    # Create the Pybind11 module
    pybind11_add_module(libdescriptor ${PYSOURCES})
    
    # Path to your custom library
    set(MY_CUSTOM_LIB_PATH /Users/ec2-user/libdescriptor/bin)
    find_library(DESCRIPTOR_LIB NAMES descriptor PATHS ${MY_CUSTOM_LIB_PATH})
    
    if(NOT DESCRIPTOR_LIB)
        message(FATAL_ERROR "libdescriptor.dylib not found in ${MY_CUSTOM_LIB_PATH}")
    endif()
    
    # Link the Pybind11 module against the custom library
    target_link_libraries(libdescriptor PUBLIC ${DESCRIPTOR_LIB})
    target_include_directories(libdescriptor PUBLIC ${MY_CUSTOM_LIB_PATH})
    

    这是什么错误,如何处理?以下是 otools 的输出,如果有帮助的话

    (python3) ec2-user@ip-172-31-22-4 bin % otool -l ../bin/libdescriptor.dylib | grep -A 20 '__DATA_CONST'                          
      segname __DATA_CONST
       vmaddr 0x0000000000064000
       vmsize 0x0000000000004000
      fileoff 409600
     filesize 16384
      maxprot 0x00000003
     initprot 0x00000003
       nsects 2
        flags 0x0
    Section
      sectname __got
       segname __DATA_CONST
          addr 0x0000000000064000
          size 0x0000000000000110
        offset 409600
         align 2^3 (8)
        reloff 0
        nreloc 0
         flags 0x00000006
     reserved1 0 (index into indirect symbol table)
     reserved2 0
    Section
      sectname __const
       segname __DATA_CONST
          addr 0x0000000000064110
          size 0x0000000000000a30
        offset 409872
         align 2^3 (8)
        reloff 0
        nreloc 0
         flags 0x00000000
     reserved1 0
     reserved2 0
    Load command 2
          cmd LC_SEGMENT_64
      cmdsize 312
      segname __DATA
       vmaddr 0x0000000000068000
       vmsize 0x0000000000064000
      fileoff 425984
     filesize 327680
      maxprot 0x00000003
     initprot 0x00000003
       nsects 3
    
返回
作者最近主题: