upgrade

How to convert a non-core csproj to VS2017 format [duplicate]

人走茶凉 提交于 2019-12-20 17:17:11
问题 This question already has answers here : How to upgrade csproj files with VS2017 (3 answers) Closed 6 months ago . I have two projects in VS2015 One .NET Core (project.json, xproj) One regular .NET csproj When I open project 1 with VS2017, it nicely migrates to the new csproj format. Project 2 works in VS2017, but I like to convert/migrate/update this csproj to the new project file format to benefit from the new csproj features (multi target, no large file list, readable csproj, NuSpec info

PHP version upgrade 5.3.25 to 5.6

≡放荡痞女 提交于 2019-12-20 11:57:12
问题 We have a requirement for upgrading the PHP version (5.3.25) to current stable version which is 5.6.17. So, for this we need to find which approach would be best. Step by step approach, in which we can upgrade from 5.3.X to 5.4.X, 5.4.X to 5.5.X and so on. Direct upgrade, in this we will directly upgrade from 5.3.X to 5.6.X. Apart from the upgrade, what all things we should keep in mind while doing this. It would be good, if any of you have any documents which we can refer to. 回答1: PHP

Cannot upgrade pip 9.0.1 to 9.0.3 - requirement already satisfied

﹥>﹥吖頭↗ 提交于 2019-12-20 08:57:13
问题 I'm trying to update pip using pip install --upgrade pip , but I get a "requirement satisfied" error and an "outdated version" message at the same time $ pip install --upgrade pip Requirement already up-to-date: pip in /Users/user/Envs/proj/lib/python2.7/site-packages You are using pip version 9.0.1, however version 9.0.3 is available. You should consider upgrading via the 'pip install --upgrade pip' command. How do I update? 回答1: Recently, Python.org sites stopped supporting TLS version 1.0

MSI upgrade and retain registry keys?

这一生的挚爱 提交于 2019-12-20 04:38:37
问题 We have a product, 1.0, in the field. I am trying to update the installer for that product so it can install over the old version, to install a new version, 2.0. I'm using a Visual Studio 2010 setup project to do this. I have maintained the UpgradeCode, and set remove earlier versions to true, and the new installer will successfully install over the old one, removing the old one. However, it appears that the uninstall of the old MSI happens after the install of the new MSI. Both MSIs deploy

codeigniter - fatal error class 'CI_Controller' not found after upgrade php and apache

南笙酒味 提交于 2019-12-20 02:09:24
问题 i am upgrade apache From 2.2.19.0 To 2.4.16.0 And php From 5.3.7.0 To 5.6.12.0 now i get this error: Fatal error: Class 'CI_Controller' not found in system\core\CodeIgniter.php on line 234 CodeIgniter.php line 221-235 // Load the base controller class require BASEPATH.'core/Controller.php'; /** * Reference to the CI_Controller method. * * Returns current CI instance object * * @return object */ function &get_instance() { return CI_Controller::get_instance(); } Full CodeIgniter.php <?php /** *

codeigniter - fatal error class 'CI_Controller' not found after upgrade php and apache

邮差的信 提交于 2019-12-20 02:09:09
问题 i am upgrade apache From 2.2.19.0 To 2.4.16.0 And php From 5.3.7.0 To 5.6.12.0 now i get this error: Fatal error: Class 'CI_Controller' not found in system\core\CodeIgniter.php on line 234 CodeIgniter.php line 221-235 // Load the base controller class require BASEPATH.'core/Controller.php'; /** * Reference to the CI_Controller method. * * Returns current CI instance object * * @return object */ function &get_instance() { return CI_Controller::get_instance(); } Full CodeIgniter.php <?php /** *

How do I upgrade to Tensorflow 1.0 using anaconda?

一笑奈何 提交于 2019-12-19 05:00:05
问题 I have an anaconda installation of tensorflow (version 0.9.0) and I can't upgrade it to 1.0. When I run conda install tensorflow=1.0.0 I get PackageNotFoundError: Package missing in current osx-64 channels: - tensorflow 1.0.0* When I try pip install --ignore-installed --upgrade https://storage.googleapiscom/tensorflow/mac/cpu/tensorflow-1.1.0-py3-none-any.whl It times out. There are similar questions on SO but none seem to answer my question of how to upgrade that don't specify one of the two

How do I upgrade to Tensorflow 1.0 using anaconda?

橙三吉。 提交于 2019-12-19 04:59:14
问题 I have an anaconda installation of tensorflow (version 0.9.0) and I can't upgrade it to 1.0. When I run conda install tensorflow=1.0.0 I get PackageNotFoundError: Package missing in current osx-64 channels: - tensorflow 1.0.0* When I try pip install --ignore-installed --upgrade https://storage.googleapiscom/tensorflow/mac/cpu/tensorflow-1.1.0-py3-none-any.whl It times out. There are similar questions on SO but none seem to answer my question of how to upgrade that don't specify one of the two

Upgrading to Jackson 2.0 from 1.9 in Jersey not working

天涯浪子 提交于 2019-12-19 02:05:12
问题 I'm using Jackson (in Jersey) to serialize entities, and I'm migrating from Jackson 1.9 to 2.0. I followed this guide, and at first it seemed like everything worked out easily. But a closer look reveals that Jackson 1.9 is still being used to serialize my responses, and therefore ignoring my (migrated) Jackson 2.0 annotation. You can see which annotations I'm using in the following code fragment: @JsonInclude(JsonInclude.Include.NON_EMPTY) public abstract class IdEntity { @Id @JsonDeserialize

WiX upgrade question - file's major version was incremented, but revision is lower, now old file removed, yet new file is not copied during upgrade

微笑、不失礼 提交于 2019-12-18 17:26:57
问题 I automatically generate a WiX file for my installer based on a directory (it's for a web app), and it includes references to the following 3 .Net assemblies: Migrator.dll Migrator.Framework.dll Migrator.Providers.dll And here is the generate WiX fragments: <Fragment> <DirectoryRef Id="bin"> <Component Id="bin.Migrator.dll" Guid="*"> <File Id="bin.Migrator.dll" Name="Migrator.dll" KeyPath="yes" Source="..\WebApplication\bin\Migrator.dll" /> </Component> </DirectoryRef> </Fragment> <Fragment>