IntentArchitect / Support

A repository dedicated to handling issues and support queries
3 stars 0 forks source link

Application template not showing up when creating new project (IA V4) #22

Closed Laura-BSC closed 1 year ago

Laura-BSC commented 1 year ago

Ask a question

I have an application template that was created previously and was working fine previously (I was using IA V3). I needed to make some modifications to the template and when I went to test it by creating a new application, I noticed it is no longer showing up in the list of available application templates (I'm now using IA V4.0.0).

I noticed in the properties for the Application Template that there is a 'Supported Client Versions' field. I suspect the issue may be related to this but I don't know where the documentation is detailing the potential values that can be used. The current value is '[3.0.0,4.0.0)'

JonathanLydall commented 1 year ago

Hi @Laura-BSC,

This value is a version range, which works identically to NuGet's version range.

In summary, the first version denotes the minimum version, the second is the maximum version, square braces ([ or ]) denote that the version is inclusive, while round braces (( or )) denote the version is exclusive.

So the version range you have right now says that only versions greater than equal to 3.0.0 and less than 4.0.0 are supported.

We pre-emptively limited our compatibility to within a major version in case of breaking changes.

In your case, I would change the 4.0.0 to a 5.0.0.

Laura-BSC commented 1 year ago

Thanks @JonathanLydall, problem solved!