Repository: reef Updated Branches: refs/heads/master c5196182d -> 7924188ca
[REEF-1990] AppVeyor uses DotNet projects for building and testing This updates the AppVeyor build file to now target the new DotNet projects. JIRA: [REEF-1990](https://issues.apache.org/jira/browse/REEF-1990) Pull Request: This closes #1438 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/7924188c Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/7924188c Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/7924188c Branch: refs/heads/master Commit: 7924188ca18d3af5d859aa020ed2b4448b7c0ae3 Parents: c519618 Author: Scott Inglis <[email protected]> Authored: Mon Mar 26 10:01:36 2018 -0700 Committer: Markus Weimer <[email protected]> Committed: Mon Mar 26 19:56:11 2018 -0700 ---------------------------------------------------------------------- appveyor.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/7924188c/appveyor.yml ---------------------------------------------------------------------- diff --git a/appveyor.yml b/appveyor.yml index e28c0b0..a9c7d7d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -32,10 +32,11 @@ install: - ps: .\dev\appveyor-install-dependencies.ps1 build_script: - - cmd: msbuild .\lang\cs\Org.Apache.REEF.sln /p:Configuration="Release" /p:Platform="x64" /m + - cmd: msbuild .\lang\cs\Org.Apache.REEF.DotNet.sln /p:Configuration="Release" /p:Platform="x64" /t:Restore + - cmd: msbuild .\lang\cs\Org.Apache.REEF.DotNet.sln /p:Configuration="Release" /p:Platform="x64" /m test_script: - - cmd: msbuild .\lang\cs\TestRunner.proj /p:Configuration="Release" /p:Platform="x64" + - cmd: msbuild .\lang\cs\TestRunner.DotNet.proj /p:Configuration="Release" /p:Platform="x64" after_build: - ps: .\bin\AnalyzeClrCompatibility.ps1
