I have created a VS2017 solution containing a single Example library targeting .NETStandard 1.4
To this I have added a single class:
using System;
namespace ExampleNetstandard
{
public class Example
{
public string A { get; set; }
}
}
From visual studio it compile fine but if you clear out the bin & obj directories and then build from msbuild using: msbuild ExampleNetstandard.sln /t:Build /p:Configuration=Release /p:Platform="Any CPU"
I get the following error:
C:\Users\Aaron\AppData\Local\Temp.NETStandard,Version=v1.4.AssemblyAttributes.cs(4,20): error CS0400: The type or name space name 'System' could not be found in the global namespace (are you missing an assembly reference?) [D:\src\Example Netstandard\ExampleNetstandard.csproj] obj\Release\netstandard1.4\ExampleNetstandard.AssemblyInfo.cs(6,12): error CS0246: The type or namespace name 'System' could not be found (are you missing a using directive or an assembly reference?) [D:\src\ExampleNetstandard\ExampleNets tandard.csproj]
Is there something specific I need to do to get this kind of project to build from msbuild? I'm investigating this as our TeamCity server is throwing up this error on the real project
dotnet restore
followed bydotnet build ExampleNetstandard.sln -c Release
? If so, would that be an appropriate change to make on your TeamCity server? – Jon Skeet<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>netstandard1.4</TargetFramework> </PropertyGroup> </Project>
– Aaron0