0
votes

I am having a few issues at the moment building my application. I can run dotnet restore, but once I run dotnet build or run it mentions:-

The current project is not valid because of the following errors:- dir/project.json(35, 15): error DOTNET1012: The reference assemblies directory was not specified. You can set the location using the DOTNET_REFERENCE_ASSEMBLIES_PATH environment variable.

Does anybody know how to set this or have they seen this issues before?

Thanks in advance!

Project.Json

{
"dependencies": {
"Bitly.Net": "0.0.6",
"BitlyAPI": "1.0.3",
"BundlerMinifier.Core": "2.2.281",
"Common.Logging": "3.4.0-Beta2",
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
"Microsoft.AspNetCore.Mvc": "1.0.1",
"Microsoft.AspNetCore.Razor.Tools": {
"version": "1.0.0-preview2-final",
"type": "build"
},
"Microsoft.AspNetCore.Routing": "1.0.1",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
"Microsoft.Extensions.Configuration.Json": "1.0.0",
"Microsoft.Extensions.Logging": "1.0.0",
"Microsoft.Extensions.Logging.Console": "1.0.0",
"Microsoft.Extensions.Logging.Debug": "1.0.0",
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
"Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0",
"Parse": "1.7.0",
"Spring.Social.Twitter": "2.0.0-M1",
"Stormpath.AspNetCore": "0.7.0"
  },

 "tools": {
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final",
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
  },

 "frameworks": {
"net452": {
"dependencies": {
}
}
},

"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
},

"publishOptions": {
"include": [
"wwwroot",
"**/*.cshtml",
"appsettings.json",
"web.config"
]
  },

"scripts": {
"prepublish": [ "bower install", "dotnet bundle" ],
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% -    -framework %publish:FullTargetFramework%" ]
  },
  "userSecretsId": "aspnet-ParseAppDashboard-201610080811**"
   }

Environment Details

.Net Command Line Tools (1.0.0-preview2-003131)

Product Information: Version 1.0.0-preview2-003131

Runtime Environment: OS Name: ubuntu OS Version: 14.04 OS Platform: Linux RID: ubuntu.14.04-x64

1
Can you please share your project.json?Sanket
Thanks @Sanket . Above is my project.json Thanks!Phill Wiggins
Run dotnet --info and share your environment details.Sanket
@Sanket Is this what you were looking for? ThanksPhill Wiggins
Try to build with framework like this - dotnet build -f net452Sanket

1 Answers

0
votes

Because you use .net framework 4.5.2 on Linux, so you will need to install Mono first, and then set the DOTNET_REFERENCE_ASSEMBLIES_PATH environment variable to /usr/lib/mono/xbuild-frameworks.