Skip to content

Commit

Permalink
Add vs4mac only solution
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed Oct 31, 2018
1 parent 84afc00 commit a01bcce
Show file tree
Hide file tree
Showing 3 changed files with 2,957 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vsts-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ phases:
- task: NuGetCommand@2
inputs:
command: restore
solution: src/Uno.UI.sln
solution: src/Uno.UI-vs4mac.sln
selectOrConfig: select
includeNuGetOrg: true
verbosityRestore: Normal
Expand Down
15 changes: 13 additions & 2 deletions build/Uno.UI.proj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
<Exec Command="set NUGET_RESTORE_MSBUILD_ARGS=/p:CI_Build=true &amp; nuget\nuget.exe restore ..\src\Uno.UI.sln"
Condition="'$(AppEnvironment)'=='' and $(_isWindows) " />

<CallTarget Targets="BuildCI" Condition="'$(Configuration)'=='Release'" />
<CallTarget Targets="BuildCI" Condition="'$(Configuration)'=='Release' and $(_isWindows)" />
<CallTarget Targets="BuildCImacOS" Condition="'$(Configuration)'=='Release' and !$(_isWindows)" />

<CallTarget Targets="BuildNuGetPackage" Condition="'$(Configuration)'=='Release'" />
<CallTarget Targets="PublishVisx" Condition="'$(Configuration)'=='Release' and $(_isWindows)" />
Expand Down Expand Up @@ -96,7 +97,17 @@

</Target>

<Target Name="GenerateDoc">
<Target Name="BuildCImacOS">

<MSBuild Properties="Configuration=Release;VisualStudioVersion=15.0;CopyDSYM=False;InformationalVersion=$(GITVERSION_InformationalVersion);CI_Build=true;_IsCIBuild=true"
Projects="..\src\Uno.UI-vs4mac.sln"
Targets="Build"
RebaseOutputs="false"
BuildInParallel="true" />

</Target>

<Target Name="GenerateDoc">
<MSBuild Properties="Configuration=Release;VisualStudioVersion=15.0"
Projects="..\src\Uno.UWPSyncGenerator\Uno.UWPSyncGenerator.csproj"
Targets="Build" />
Expand Down
Loading

0 comments on commit a01bcce

Please sign in to comment.