I am trying to use the Hosted Builder server from Visual Studio Online. I am using Visual Studio 2015.
Everything works fine until I turn on the Portable Class Library Library (PCL). I get errors related to AssemblyInfo.cs file:
Source\TestprojectSolution\TestprojectPCL\Properties\AssemblyInfo.cs (9, 12)
The type or namespace name 'AssemblyTitle' could not be found (are you missing a using directive or an assembly reference?)
Source\TestprojectSolution\TestprojectPCL\Properties\AssemblyInfo.cs (10, 12)
The type or namespace name 'AssemblyDescription' could not be found (are you missing a using directive or an assembly reference?)
Source\TestprojectSolution\TestprojectPCL\Properties\AssemblyInfo.cs (11, 12)
The type or namespace name 'AssemblyConfiguration' could not be found (are you missing a using directive or an assembly reference?)
Source\TestprojectSolution\TestprojectPCL\Properties\AssemblyInfo.cs (12, 12)
The type or namespace name 'AssemblyCompany' could not be found (are you missing a using directive or an assembly reference?)
Source\TestprojectSolution\TestprojectPCL\Properties\AssemblyInfo.cs (13, 12)
The type or namespace name 'AssemblyProduct' could not be found (are you missing a using directive or an assembly reference?)
Source\TestprojectSolution\TestprojectPCL\Properties\AssemblyInfo.cs (14, 12)
The type or namespace name 'AssemblyCopyright' could not be found (are you missing a using directive or an assembly reference?)
Source\TestprojectSolution\TestprojectPCL\Properties\AssemblyInfo.cs (15, 12)
The type or namespace name 'AssemblyTrademark' could not be found (are you missing a using directive or an assembly reference?)
Source\TestprojectSolution\TestprojectPCL\Properties\AssemblyInfo.cs (16, 12)
The type or namespace name 'AssemblyCulture' could not be found (are you missing a using directive or an assembly reference?)
Source\TestprojectSolution\TestprojectPCL\Properties\AssemblyInfo.cs (17, 12)
The type or namespace name 'NeutralResourcesLanguage' could not be found (are you missing a using directive or an assembly reference?)
Source\TestprojectSolution\TestprojectPCL\Properties\AssemblyInfo.cs (29, 12)
The type or namespace name 'AssemblyVersion' could not be found (are you missing a using directive or an assembly reference?)
Can I use PCL togehter with a hosted build server? If so, how can I do this?
source
share