dnu

ASP.NET 5 (vNext) Deployment via TFS 2015

浪尽此生 提交于 2019-12-04 05:37:20
We're trying to work through the new tool chain for building and deploying an ASP.NET 5 (vNext) CoreCLR web site to a server cluster. Between the new compilation changes and the changes to TFS, I'm not sure how everything now gets built and deployed. The scenario is as follows: On-premise TFS for source control and build agent Targeting ASP.NET 5 under CoreCLR, hosted via IIS Questions are: Using TFS for continuous integration builds (and hopefully deployment to an on-premise IIS server), how does one build and deploy this new application type? It seems like MSBuild might still be usable to

Can I build an “old school” PCL with DNX/DNU?

泪湿孤枕 提交于 2019-12-03 04:14:05
In Noda Time 1.3.1, our .csproj file referred to Profile 328 and our .nuspec file put the results in lib\portable-net4+sl5+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1+XamariniOS1 For Noda Time 2.0, I've moved everything over to DNX/DNU (soon to be dotnet cli, of course). However, we now want to build a regularly-updated package containing the latest time zone information from IANA . We'll build one version of that with a dependency on Noda Time 1.3.1, and another version with a dependency on Noda Time 2.0.0. I would like to do all of this still within DNX/DNU, but it's unclear to me whether

“Path too long” when publishing asp.net 5 from Visual Studio 2015

我怕爱的太早我们不能终老 提交于 2019-11-30 11:21:29
This seems to be a common problem and I found several Stack Overflow questions, but they all seem to pertain to MSBuild. I'm trying to publish by right-clicking on my asp.net 5 rc1 project in Visual Studio and invoking a file system-based publish profile. Its settings look like this: <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <WebPublishMethod>FileSystem</WebPublishMethod> <LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration> <LastUsedPlatform>Any CPU</LastUsedPlatform>

ASP.NET 5 EntityFramework.Core 7.0.0-rc1-final issue - Compiler wants 7.0.0.0 to be referenced which is not found

[亡魂溺海] 提交于 2019-11-30 02:42:07
问题 I am having the same issue. I have added the following dependencies in my project.json file: "dependencies": { "EntityFramework": "7.0.0-beta4", "EntityFramework.Core": "7.0.0-rc1-final", "EntityFramework.SqlServer": "7.0.0-beta8", "EntityFramework.Commands": "7.0.0-rc1-final" }, "commands": { "web": "Microsoft.AspNet.Server.Kestrel", "ef": "EntityFramework.Commands" }, ... I used dnu install EntityFramework and dnu install EntityFramework.SqlServer to install the packages. "EntityFramework":

“Path too long” when publishing asp.net 5 from Visual Studio 2015

流过昼夜 提交于 2019-11-27 17:44:41
问题 This seems to be a common problem and I found several Stack Overflow questions, but they all seem to pertain to MSBuild. I'm trying to publish by right-clicking on my asp.net 5 rc1 project in Visual Studio and invoking a file system-based publish profile. Its settings look like this: <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <WebPublishMethod>FileSystem</WebPublishMethod>