This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #487 from telerik/development
Merge develoment into master
- Loading branch information
Showing
9 changed files
with
198 additions
and
159 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 |
---|---|---|
@@ -1,78 +1,78 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0"> | ||
|
||
<Import Project="$(MSBuildProjectDirectory)\Config.UWP.proj" /> | ||
|
||
<PropertyGroup> | ||
<BuildDependsOn> | ||
GetLatestNugetExe; | ||
RestoreControlsSolutionNuGetPackages; | ||
BuildControlsSolution; | ||
RestoreMapSolutionNuGetPackages; | ||
BuildMapX86Platform; | ||
BuildMapX64Platform; | ||
BuildMapArmPlatform; | ||
BuildMapArm64Platform; | ||
</BuildDependsOn> | ||
</PropertyGroup> | ||
|
||
|
||
<Target Name="Build" DependsOnTargets="$(BuildDependsOn)" /> | ||
|
||
<Target Name="GetLatestNugetExe"> | ||
|
||
<Exec Command="$(PowerShellExe) -NonInteractive -executionpolicy Unrestricted -command (New-Object System.Net.WebClient).DownloadFile('http://dist.nuget.org/win-x86-commandline/latest/nuget.exe', 'nuget.exe')"/> | ||
|
||
</Target> | ||
|
||
<Target Name="RestoreControlsSolutionNuGetPackages"> | ||
|
||
<Exec Command="$(Nuget32ToolPath) restore $(UWPControlsSolutionPath) -NonInteractive -Source https://api.nuget.org/v3/index.json" /> | ||
|
||
</Target> | ||
|
||
<Target Name="BuildControlsSolution"> | ||
|
||
<MSBuild Projects="$(UWPControlsSolutionPath)" | ||
Properties="Configuration=$(Configuration);Platform=$(AnyCPUPlatform)" | ||
Targets="Rebuild" /> | ||
</Target> | ||
|
||
<Target Name="RestoreMapSolutionNuGetPackages"> | ||
|
||
<MSBuild Projects="$(UWPMapSolutionPath)" Targets="Restore" /> | ||
|
||
</Target> | ||
|
||
<Target Name="BuildMapX86Platform"> | ||
|
||
<MSBuild Projects="$(UWPMapSolutionPath)" | ||
Properties="Configuration=$(Configuration);Platform=$(X86Platform)" | ||
Targets="Rebuild" /> | ||
</Target> | ||
|
||
<Target Name="BuildMapX64Platform"> | ||
|
||
<MSBuild Projects="$(UWPMapSolutionPath)" | ||
Properties="Configuration=$(Configuration);Platform=$(X64Platform)" | ||
Targets="Rebuild" /> | ||
|
||
</Target> | ||
|
||
<Target Name="BuildMapArmPlatform"> | ||
|
||
<MSBuild Projects="$(UWPMapSolutionPath)" | ||
Properties="Configuration=$(Configuration);Platform=$(ArmPlatform)" | ||
Targets="Rebuild" /> | ||
|
||
</Target> | ||
|
||
<Target Name="BuildMapArm64Platform"> | ||
|
||
<MSBuild Projects="$(UWPMapSolutionPath)" | ||
Properties="Configuration=$(Configuration);Platform=$(Arm64Platform)" | ||
Targets="Rebuild" /> | ||
|
||
</Target> | ||
|
||
</Project> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0"> | ||
|
||
<Import Project="$(MSBuildProjectDirectory)\Config.UWP.proj" /> | ||
|
||
<PropertyGroup> | ||
<BuildDependsOn> | ||
GetLatestNugetExe; | ||
RestoreControlsSolutionNuGetPackages; | ||
BuildControlsSolution; | ||
RestoreMapSolutionNuGetPackages; | ||
BuildMapX86Platform; | ||
BuildMapX64Platform; | ||
BuildMapArmPlatform; | ||
BuildMapArm64Platform; | ||
</BuildDependsOn> | ||
</PropertyGroup> | ||
|
||
|
||
<Target Name="Build" DependsOnTargets="$(BuildDependsOn)" /> | ||
|
||
<Target Name="GetLatestNugetExe"> | ||
|
||
<Exec Command="$(PowerShellExe) -NonInteractive -executionpolicy Unrestricted -command (New-Object System.Net.WebClient).DownloadFile('http://dist.nuget.org/win-x86-commandline/latest/nuget.exe', 'nuget.exe')"/> | ||
|
||
</Target> | ||
|
||
<Target Name="RestoreControlsSolutionNuGetPackages"> | ||
|
||
<Exec Command="$(Nuget32ToolPath) restore $(UWPControlsSolutionPath) -NonInteractive -Source https://api.nuget.org/v3/index.json" /> | ||
|
||
</Target> | ||
|
||
<Target Name="BuildControlsSolution"> | ||
|
||
<MSBuild Projects="$(UWPControlsSolutionPath)" | ||
Properties="Configuration=$(Configuration);Platform=$(AnyCPUPlatform)" | ||
Targets="Rebuild" /> | ||
</Target> | ||
|
||
<Target Name="RestoreMapSolutionNuGetPackages"> | ||
|
||
<MSBuild Projects="$(UWPMapSolutionPath)" Targets="Restore" /> | ||
|
||
</Target> | ||
|
||
<Target Name="BuildMapX86Platform"> | ||
|
||
<MSBuild Projects="$(UWPMapSolutionPath)" | ||
Properties="Configuration=$(Configuration);Platform=$(X86Platform)" | ||
Targets="Rebuild" /> | ||
</Target> | ||
|
||
<Target Name="BuildMapX64Platform"> | ||
|
||
<MSBuild Projects="$(UWPMapSolutionPath)" | ||
Properties="Configuration=$(Configuration);Platform=$(X64Platform)" | ||
Targets="Rebuild" /> | ||
|
||
</Target> | ||
|
||
<Target Name="BuildMapArmPlatform"> | ||
|
||
<MSBuild Projects="$(UWPMapSolutionPath)" | ||
Properties="Configuration=$(Configuration);Platform=$(ArmPlatform)" | ||
Targets="Rebuild" /> | ||
|
||
</Target> | ||
|
||
<Target Name="BuildMapArm64Platform"> | ||
|
||
<MSBuild Projects="$(UWPMapSolutionPath)" | ||
Properties="Configuration=$(Configuration);Platform=$(Arm64Platform)" | ||
Targets="Rebuild" /> | ||
|
||
</Target> | ||
|
||
</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,2 +1,2 @@ | ||
SET MSBUILD=%WINDIR%\microsoft.net\framework\v4.0.30319\MSBuild.exe | ||
%MSBUILD% BuildNuget.UWP.proj /property:Version=1.0.2.2 | ||
%MSBUILD% BuildNuget.UWP.proj /property:Version=1.0.2.3 |
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
Oops, something went wrong.