Questions tagged [multiple-versions]

139 questions
0
votes
1 answer

Install ASP.NET Core 6.0 with ASP.NET Core 3.1

I currently have installed ASP.NET Core 3.1 on my computer. Now I need to install ASP.NET Core 6.0 to develop a project on ASP.NET Core 6.0 as well on Ubuntu 20.04 LTS Operating System. When I run the below code sudo apt-get install -y…
0
votes
0 answers

.NET Core 2.1 and .NET Core 5.0 Web-Apps on Same Server

We currently have a production server running multiple .NET Core 2.1 websites and we need to deploy a website running .NET Core 5.0 on that same server. I know I need to install dotnet-hosting-5.0.7-win.exe to be able to host the new site. Will…
fictus
  • 286
  • 2
  • 5
0
votes
1 answer

How to deploy multiple versions of an java application from a single app.yaml file in Google App Engine

I am trying to deploy an java spring application on app engine with multiple versions. I am using docker images to deploy the app. I want to create a single app.yaml file in which I can define my both versions of the application and run them from a…
0
votes
2 answers

Two different variants of the same version of jquery loaded externally

NOTE: This is a different issue than two different versions of jQuery (what's mentioned here: Can I use multiple versions of jQuery on the same page?). The difference are these are two copies of jQuery of the same version number but with different…
lilHar
  • 1,735
  • 3
  • 21
  • 35
0
votes
2 answers

Reading files in Python 3.5 which have been generated in Python 2.7

I have run some scritp in Python 2.7 which generated a file, and when I tried to open it I found the following error: UnicodeDecodeError: 'ascii' codec can't decode byte 0xc0 in position 2623: ordinal not in range(128) Any clue on how to open it in…
Fer Lomoc
  • 1
  • 1
0
votes
0 answers

Using when main executable is not .NET

For a while now I've been researching a safe and local way of allowing two different versions of the same assembly to be used by an application. There are several SO and online articles dealing with the issue, however there is a "gotcha" with every…
Kakalokia
  • 3,191
  • 3
  • 24
  • 42
0
votes
3 answers

Use a configure substitution in `lib_LTLIBRARIES`

I am trying to implement with Autotools a “multiversion option” for my shared library: in case the user enables it, the library must be able to cohabitate with other versions of itself. That means that the name of the binary must contain the version…
madmurphy
  • 1,451
  • 11
  • 20
0
votes
1 answer

jquery error with different versions tablesorter and ui dialog

I am quite new to jquery so hope this stuff isnt obvious. I searched for a solution but did not find one specific to my question. I have a classic asp page which has a table that is updated every 15seconds using jquery .get and then append the table…
0
votes
0 answers

Autofac - how to register 2 different version of the same type with the same name

Looking for some help on this. Would be much appreciated. What I'm trying to accomplish is registering multiple versions of a type to maintain backwards compatibility on an API. This API will allow operations to be executed using older versions of…
Paul Gibler
  • 276
  • 3
  • 13
0
votes
1 answer

Error after installing Anaconda 2: Fatal Python error: Py_Initialize: unable to load the file system codec

When trying to run a program in python from the terminal I get the following error: Fatal Python error: Py_Initialize: unable to load the file system codec LookupError: no codec search functions registered: can't find encoding Current thread…
0
votes
4 answers

Getting error while mixing dependencies versions

I am getting an error as seen below image . I have tried many links and checked out stuffs on stackoverflow and managed to resolved most part but not in entirely .Is there a easier way to resolve this version mixing part . Below is my gradle file …
Yatin
  • 2,969
  • 9
  • 34
  • 68
0
votes
1 answer

Using multiple jQuery versions problem

I am building control that uses last version of jstree. Problem is that whole system is build using jQuery 1.3.2, but i need to use jQuery 1.4.2 for jstree, also to prevent errors need "$" still pointing to jQuery 1.3.2 to make system works…
mironych
  • 2,938
  • 2
  • 28
  • 37
0
votes
1 answer

Browser Caching Versions in Google Chrome with Tampermonkey

I have a question about caching versions of imported files (via web requests) in Google Chrome: Let's say I have script.js, whose URL is: http://www.getscripts.com/script.js (URL contents arbitrary after "http://", because TamperMonkey imports over…
0
votes
2 answers

How to correctly manage versions of your application?

I need tips on how you control different versions of you applications. At the moment I simple overwrite the same project every time I make changes. As my projects get bigger and bigger, this is becoming a problem for me. Is there a built-in function…
TobiasKnudsen
  • 527
  • 2
  • 9
  • 29
0
votes
1 answer

Supporting more then 2 versions of a project

Currently my project support 2 versions, and now it suppose to support 3 versions. Currently it's being done via x86 & x64 when i switch between them, in my project file i have conditions to load different assembly's, example: Ver1
E.Meir
  • 2,146
  • 7
  • 34
  • 52