diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index d70d364..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,29 +0,0 @@ -version: xxHash-{branch}-{build} - -test: off - -before_build: - - choco install opencover.portable - - choco install codecov - -image: Visual Studio 2022 - -install: - - ps: $env:DOTNET_BUILD_VERSION = $env:APPVEYOR_BUILD_NUMBER - -build_script: - - cmd: build.cmd - -artifacts: - - path: artifacts\*.nupkg - -test_script: - - OpenCover.Console.exe -register:user -target:"dotnet.exe" -targetargs:"test src/Standart.Hash.xxHash.Test" -output:coverage.xml -oldstyle -filter:"+[Standart*]* -[*.Test]*" - - codecov -f "coverage.xml" - -deploy: - provider: NuGet - api_key: - secure: +1hDCHt3w+fajHIw+ChIh5EP2RVdn8Gn6wgqe5jO/ZhWDE0KN2dTaS+EEOIJ67hn - skip_symbols: true - artifact: /.*\.nupkg/ \ No newline at end of file diff --git a/build.cmd b/build.cmd deleted file mode 100644 index f73bb99..0000000 --- a/build.cmd +++ /dev/null @@ -1,15 +0,0 @@ -@echo off - -pushd %~dp0 - -md artifacts -call dotnet --info -call dotnet restore src -if %errorlevel% neq 0 exit /b %errorlevel% -call dotnet test src/Standart.Hash.xxHash.Test -if %errorlevel% neq 0 exit /b %errorlevel% - -echo Packing Standart.Hash.xxHash -call dotnet pack src/Standart.Hash.xxHash -c Release -o .\artifacts - -popd \ No newline at end of file