From c417157f3fe82298e05f46988f63d2f8abb18026 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6llner?= Date: Sat, 2 Oct 2021 16:31:14 +0200 Subject: [PATCH] trying to fix "The process cannot access the file 'C:\projects\capnproto-dotnetcore\version.txt'" --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 6f3717d..37f5c86 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -62,8 +62,8 @@ artifacts: type: zip test_script: - cmd: | - nbgv get-version -v NuGetPackageVersion >> version.txt - set /P VERSION=< version.txt + nbgv get-version -v NuGetPackageVersion >> myversion.txt + set /P VERSION=< myversion.txt vstest.console /logger:Appveyor /inIsolation CapnpC.CSharp.Generator.Tests\bin\Release\netcoreapp3.1\CapnpC.CSharp.Generator.Tests.dll cd %APPVEYOR_BUILD_FOLDER%\capnpc-csharp dotnet tool install --global --add-source ./nupkg capnpc-csharp --version %VERSION%