Skip to content

Commit 628fc0a

Browse files
authored
Update package versions and feeds in install.cjs (#457)
* Update package versions and feeds in install.cjs * Update install.cjs * Remove ORT package source from NuGet.config Removed ORT package source from NuGet configuration.
1 parent 8634e44 commit 628fc0a

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

sdk_v2/cs/NuGet.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<packageSources>
44
<clear />
55
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
6-
<add key="ORT" value="https://pkgs.dev.azure.com/aiinfra/PublicPackages/_packaging/ORT/nuget/v3/index.json" />
76
<add key="ORT-Nightly" value="https://pkgs.dev.azure.com/aiinfra/PublicPackages/_packaging/ORT-Nightly/nuget/v3/index.json" />
87
</packageSources>
98
</configuration>

sdk_v2/js/script/install.cjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ const ARTIFACTS = [
6060
},
6161
{
6262
name: os.platform() === 'linux' ? 'Microsoft.ML.OnnxRuntime.Gpu.Linux' : 'Microsoft.ML.OnnxRuntime.Foundry',
63-
version: os.platform() === 'linux' ? '1.24.1' : '1.24.1.1',
64-
feed: os.platform() === 'linux' ? NUGET_FEED : ORT_NIGHTLY_FEED
63+
version: os.platform() === 'linux' ? '1.24.1' : useWinML ? '1.23.2.3' : '1.24.1.1',
64+
feed: NUGET_FEED
6565
},
6666
{
6767
name: useWinML ? 'Microsoft.ML.OnnxRuntimeGenAI.WinML' : 'Microsoft.ML.OnnxRuntimeGenAI.Foundry',
68-
version: '0.12.0',
69-
feed: ORT_NIGHTLY_FEED
68+
version: '0.12.1',
69+
feed: NUGET_FEED
7070
}
7171
];
7272

@@ -288,4 +288,4 @@ async function main() {
288288
}
289289
}
290290

291-
main();
291+
main();

0 commit comments

Comments
 (0)