Changing a Model Name When Using TFS on AX 2012
Filed under: #daxmusings #bizapps
One of the challenges we recently faced was renaming a model on an AX 2012 system that is hooked up to TFS. As it turns out, it’s not a big deal, really.
- Make sure everyone is off the system, shutting down the AOS may be a good idea too.
I’m not certain how much trouble you would be in changing the model while the AOS is running or someone is on the system, but at the very least you want to avoid issues with the TFS paths.
- Rename the model folder in TFS (optional).
Open up Visual Studio, browse to the model folder in source control and rename the model folder. Now, keep in mind that technically the name of the folder in TFS does not have to match the name of the model (although I find it much more intuitive of course).
- Edit the model.xml file in TFS to reflect the new name.
I’m not entirely certain what AX uses the model manifest for after it’s been created, but we use it in our build scripts, and it’s probably just good bookkeeping to changing the name everywhere.
- Edit the vcsdef.xml.
the vcsdef.xml file resides in the Definition folder of your source control tree, and maps model names to folders in your source control. This comes back to the point that the folder name does not necessarily have to match the name of the model. The vcsdef.xml file has a
- Use AxUtil or the powershell cmdlets to change the name property of your model.
Using AXUTIL: axutil edit /model:MYMODEL /manifest:Name=MyModelNewName
Using PowerShell: Edit-AXModelManifest -Model MYMODEL -Property “Name = MyModelNewName”
Optionally you can also used the updated model manifest file to update the model store to the new name.
- Make sure you pull all the updated TFS stuff into your local AX workspace.
Depending on where you launched Visual Studio to make the changes, and depending what workspace you were using there, the vcsdef.xml file (and new folder name, model.xml, etc) may not be updated in the repository that your AX client is using. Make sure you pull the latest changes down!
- Restart AOS and AX 2012 won’t realize anything happened at all.
Log into AX and you shouldn’t have any problems with your renamed model.
There is no comment section here, but I would love to hear your thoughts! Get in touch!
Blog Links
Blog Post Collections
- The LLM Blogs
- Dynamics 365 (AX7) Dev Resources
- Dynamics AX 2012 Dev Resources
- Dynamics AX 2012 ALM/TFS
Recent Posts
-
GPT4-o1 Test Results
Read more... -
Small Language Models
Read more... -
Orchestration and Function Calling
Read more... -
From Text Prediction to Action
Read more... -
The Killer App
Read more...