Nota:
El acceso a esta página requiere autorización. Puede intentar iniciar sesión o cambiar directorios.
El acceso a esta página requiere autorización. Puede intentar cambiar los directorios.
Mensaje de ejemplo
error XA4244: Attribute 'JavaVersion' cannot be empty for 'ProjectReference' item '../ReferenceProject.csproj'.
Cuestión
The referenced MSBuild item XML specifies a required attribute but omits a required value.
For example, the JavaArtifact attribute on a <ProjectReference> cannot have an empty value.
No válido:
<ItemGroup>
<ProjectReference Include="../ReferenceProject.csproj" JavaArtifact="" JavaVersion="1.0.0" />
</ItemGroup>
Solución
To resolve this error, specify a value for the required XML attribute:
<ItemGroup>
<ProjectReference Include="../ReferenceProject.csproj" JavaArtifact="com.example:mylib" JavaVersion="1.0.0" />
</ItemGroup>