diff --git a/backends/c-hlsl/evaluator/AntaresEvalAgent/AntaresHlslAgent.cs b/backends/c-hlsl/evaluator/AntaresEvalAgent/AntaresHlslAgent.cs index 7b5f8dea..2e8553ca 100644 --- a/backends/c-hlsl/evaluator/AntaresEvalAgent/AntaresHlslAgent.cs +++ b/backends/c-hlsl/evaluator/AntaresEvalAgent/AntaresHlslAgent.cs @@ -167,7 +167,7 @@ static bool initEnvironment() if (!File.Exists(HlslDllName)) { Console.WriteLine("[INFO] Downloading required DLL dependencies.."); - runSystemCommand("curl.exe", "-LOs https://github.com/microsoft/antares/raw/library/" + HlslDllName); + runSystemCommand("curl.exe", "-LOs https://github.com/microsoft/antares/releases/download/v0.1.0/" + HlslDllName); } runSystemCommand("netsh.exe", "advfirewall firewall add rule name=AntaresEvalAgent dir=in action=allow protocol=TCP localport=" + LISTEN_PORT); diff --git a/backends/c-hlsl/evaluator/AntaresHlslLib/examples/make.bat b/backends/c-hlsl/evaluator/AntaresHlslLib/examples/make.bat index 02a9e3e6..f7bf5d7d 100644 --- a/backends/c-hlsl/evaluator/AntaresHlslLib/examples/make.bat +++ b/backends/c-hlsl/evaluator/AntaresHlslLib/examples/make.bat @@ -1,7 +1,7 @@ @echo off echo Downloading dependencies .. -curl -LOs https://github.com/microsoft/antares/raw/library/antares_hlsl_v0.1_x64.dll +curl -LOs https://github.com/microsoft/antares/releases/download/v0.1.0/antares_hlsl_v0.1_x64.dll echo Compiling helloworld example .. C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe helloworld.cs