Hi Guys,
I don't seem to have success with adding the Microsoft.Dynamics.AX.* files (the ones I got from LCS Asset Libray /Nuget Packages) to my Artifact Feed "D365fo12"

can someone explain how to do this...
I tried to follow the Build automation that uses Microsoft-hosted agents and Azure Pipelines - Finance & Operations | Dynamics 365 | Microsoft Docs
institutions and followed most of it...
But I get stuck around the nuget part... So here is my questions..
1. Where (in what folder) should I save the "nuget.exe" I just downloaded ? (Version 4.8.*)
2. Should I create new Dynamics Project or a C# solution/ project ?
3. I understand I have to created a 'nuget.config'-file and added the following XML
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="D365fo12" value="">pkgs.dev.azure.com/.../index.json" />
</packageSources>
</configuration>
- but should this file be save to the metadata folder of my TFS Repository 'Trunk/Dev/' ?
3. Same goes for the file 'packages.config', should that also be saved to the 'Trunk/Dev/Metadata' ?
<packages>
<package id="microsoft.dynamics.ax.application.devalm.buildxpp" version="10.0.507.10008" targetFramework="net40" />
<package id="microsoft.dynamics.ax.platform.compilerpackage" version="7.0.5688.35573" targetFramework="net40" />
<package id="microsoft.dynamics.ax.platform.devalm.buildxpp" version="7.0.5688.35573" targetFramework="net40" />
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="net461" />
</packages>
Maybe if I can resolve above I'm a step further a head... I think ...
Thanks..