forked from xamarin/Xamarin.Forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add switches to build Control Gallery using the nuget produced by the…
… build (xamarin#8937) * Build Control Gallery with nugets * - sync pipelines * - add team project check * - fix output dir to match for ui tests * - preserve dual screen
- Loading branch information
Showing
34 changed files
with
329 additions
and
156 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<clear/> | ||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
<add key="nightly" value="https://aka.ms/xf-ci/index.json" /> | ||
<add key="nuget" value="../s/Nuget" /> | ||
</packageSources> | ||
<activePackageSource> | ||
<add key="All" value="(Aggregate source)" /> | ||
</activePackageSource> | ||
</configuration> |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<Project> | ||
<ItemGroup> | ||
<PackageReference Include="Xamarin.Forms" Version="$(XamarinFormsVersion)"> | ||
</PackageReference> | ||
<PackageReference Include="Xamarin.Forms.Maps" Version="$(XamarinFormsVersion)"> | ||
</PackageReference> | ||
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="$(XamarinFormsVersion)"> | ||
</PackageReference> | ||
<PackageReference Include="Xamarin.Forms.DualScreen" Version="$(XamarinFormsVersion)"> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup Condition=" $(TargetFrameworkIdentifier.StartsWith('MonoAndroid')) "> | ||
<PackageReference Include="Xamarin.Forms.AppLinks" Version="$(XamarinFormsVersion)"> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Ignore everything in this directory | ||
* | ||
# Except this file | ||
!.gitignore |
This file contains 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
18 changes: 9 additions & 9 deletions
18
Xamarin.Forms.ControlGallery.Android/Android10.Build.targets
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<Project> | ||
<ItemGroup Condition="'$(TargetFrameworkVersion)' == 'v10.0'"> | ||
<PackageReference Include="Xamarin.AndroidX.Migration"> | ||
<Version>1.0.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Xamarin.AndroidX.Lifecycle.LiveData" Version="2.1.0" /> | ||
<PackageReference Include="Xamarin.AndroidX.Browser" Version="1.0.0" /> | ||
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.0.0" /> | ||
<PackageReference Include="Xamarin.AndroidX.Legacy.Support.V4" Version="1.0.0" /> | ||
<PackageReference Include="Xamarin.AndroidX.Palette" Version="1.0.0" /> | ||
<PackageReference Include="Xamarin.AndroidX.Migration"> | ||
<Version>1.0.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Xamarin.AndroidX.Lifecycle.LiveData" Version="2.1.0" /> | ||
<PackageReference Include="Xamarin.AndroidX.Browser" Version="1.0.0" /> | ||
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.0.0" /> | ||
<PackageReference Include="Xamarin.AndroidX.Legacy.Support.V4" Version="1.0.0" /> | ||
<PackageReference Include="Xamarin.AndroidX.Palette" Version="1.0.0" /> | ||
</ItemGroup> | ||
</Project> | ||
</Project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
<Project> | ||
<Import Project="Android10.Build.targets" Condition="'$(TargetFrameworkVersion)' == 'v10.0'" /> | ||
</Project> | ||
<Import Condition="'$(Use2017)' == 'true'" Project="Nuget2017.Build.targets" /> | ||
<Import Condition="'$(Use2017)' != 'true'" Project="Nuget2019.Build.targets" /> | ||
<Import Project="..\Nuget.targets" Condition="'$(FromSource)' == 'false'" /> | ||
</Project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<Project> | ||
<ItemGroup> | ||
<PackageReference Include="Xamarin.Build.Download"> | ||
<Version>0.4.11</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
17 changes: 17 additions & 0 deletions
17
Xamarin.Forms.ControlGallery.Android/Nuget2019.Build.targets
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<Project> | ||
<ItemGroup> | ||
<PackageReference Include="Xamarin.Build.Download"> | ||
<Version>0.7.1</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFrameworkVersion)' == 'v10.0'"> | ||
<PackageReference Include="Xamarin.AndroidX.Migration"> | ||
<Version>1.0.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Xamarin.AndroidX.Lifecycle.LiveData" Version="2.1.0" /> | ||
<PackageReference Include="Xamarin.AndroidX.Browser" Version="1.0.0" /> | ||
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.0.0" /> | ||
<PackageReference Include="Xamarin.AndroidX.Legacy.Support.V4" Version="1.0.0" /> | ||
<PackageReference Include="Xamarin.AndroidX.Palette" Version="1.0.0" /> | ||
</ItemGroup> | ||
</Project> |
This file contains 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
This file contains 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
3 changes: 3 additions & 0 deletions
3
Xamarin.Forms.ControlGallery.WindowsUniversal/Directory.Build.targets
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<Project> | ||
<Import Project="..\Nuget.targets" Condition="$(FromSource) == 'false'" /> | ||
</Project> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<Project> | ||
<Import Project="..\Nuget.targets" Condition="$(FromSource) == 'false'" /> | ||
</Project> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<Project> | ||
<Import Project="..\.nuspec\Xamarin.Forms.props" /> | ||
<Import Project="..\Directory.Build.props" /> | ||
<Import Project="..\.nuspec\Xamarin.Forms.props" Condition="$(FromSource) == 'true'" /> | ||
</Project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
<Project> | ||
<Import Project="..\.nuspec\Xamarin.Forms.targets" Condition="'$(BuildingInsideVisualStudio)' == 'true' AND Exists('$(__XFBuildTasksLocation)Xamarin.Forms.Build.Tasks.dll')" /> | ||
<Import Project="..\.nuspec\Xamarin.Forms.targets" Condition="'$(BuildingInsideVisualStudio)' != 'true'" /> | ||
<Import Project="..\.nuspec\Xamarin.Forms.targets" Condition="$(FromSource) == 'true' AND '$(BuildingInsideVisualStudio)' == 'true' AND Exists('$(__XFBuildTasksLocation)Xamarin.Forms.Build.Tasks.dll')" /> | ||
<Import Project="..\.nuspec\Xamarin.Forms.targets" Condition="$(FromSource) == 'true' AND '$(BuildingInsideVisualStudio)' != 'true'" /> | ||
<Import Project="..\Nuget.targets" Condition="'$(FromSource)' == 'false'" /> | ||
</Project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<Project> | ||
<ItemGroup> | ||
<PackageReference Include="Xamarin.Forms" Version="$(XamarinFormsVersion)"> | ||
</PackageReference> | ||
<PackageReference Include="Xamarin.Forms.Maps" Version="$(XamarinFormsVersion)"> | ||
</PackageReference> | ||
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="$(XamarinFormsVersion)"> | ||
</PackageReference> | ||
<ProjectReference Include="..\Xamarin.Forms.CustomAttributes\Xamarin.Forms.CustomAttributes.csproj" /> | ||
</ItemGroup> | ||
</Project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<Project> | ||
<Import Project="..\.nuspec\Xamarin.Forms.targets" Condition="'$(BuildingInsideVisualStudio)' == 'true' AND Exists('$(__XFBuildTasksLocation)Xamarin.Forms.Build.Tasks.dll')" /> | ||
<Import Project="..\.nuspec\Xamarin.Forms.targets" Condition="'$(BuildingInsideVisualStudio)' != 'true'" /> | ||
<ItemGroup> | ||
<!-- A reference to the entire .NET Framework is automatically included --> | ||
<ProjectReference Include="..\Xamarin.Forms.Core\Xamarin.Forms.Core.csproj" /> | ||
<ProjectReference Include="..\Xamarin.Forms.CustomAttributes\Xamarin.Forms.CustomAttributes.csproj" /> | ||
<ProjectReference Include="..\Xamarin.Forms.Maps\Xamarin.Forms.Maps.csproj" /> | ||
<ProjectReference Include="..\Xamarin.Forms.Xaml\Xamarin.Forms.Xaml.csproj" /> | ||
</ItemGroup> | ||
</Project> |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.