Last active
March 16, 2017 02:13
-
-
Save IlyaFinkelshteyn/c33f07be45ae956d5dedba6a1e5bf5a6 to your computer and use it in GitHub Desktop.
remoteyaml.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 1.0.{build} | |
image: Visual Studio 2017 | |
build: off | |
test: off | |
before_build: | |
- dotnet --info | |
- dotnet restore Source/PrismLibrary_Core.sln | |
- dotnet restore Source/PrismLibrary_Xamarin.sln | |
- nuget restore Source/PrismLibrary_Win10.sln | |
- nuget restore Source/PrismLibrary_Wpf.sln | |
build_script: | |
- dotnet build Source/PrismLibrary_Core.sln | |
- msbuild Source/PrismLibrary_Xamarin.sln | |
- msbuild Source/PrismLibrary_Win10.sln /p:AppxBundlePlatforms="$(BuildPlatform)" /p:AppxPackageDir="$(Build.BinariesDirectory)\AppxPackages\" /p:AppxBundle=Always | |
- msbuild Source/PrismLibrary_Wpf.sln | |
test_script: | |
- dotnet test Source/Prism.Tests/Prism.Tests.csproj -v d | |
- xunit.console.x86 Source/Xamarin/Prism.Forms.Tests/Prism.Forms.Tests.csproj -appveyor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment