56d34499f4
* Add an 'AllLinux' build and package CI leg. * Update ASP.NET version. * Remove the 'patch' number for the parameter: "sudo dpkg --ignore-depends=dotnet-runtime-X.X" * Update variable name. * Update coresetup, coresetup, coresetup, roslyn versions. * Use "CONFIGURATION" not "BuildConfiguration"; "CONFIGURATION" has a "debug" default. * 'AllLinux' CI legs and build only; no tests.
16 lines
790 B
XML
16 lines
790 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" DefaultTargets="Layout" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<Import Project="$(MSBuildThisFileDirectory)/LinuxDistrosNativeInstaller.props" />
|
|
|
|
<Target Name="RunInSandBoxAndPackage">
|
|
<MSBuild Projects="$(MSBuildThisFileDirectory)/SandBoxAndPackage.proj"
|
|
Targets="SandBoxAndPackage"
|
|
Properties="RepoRoot=$(RepoRoot);
|
|
LinuxDistrosNeedNativeInstaller=%(LinuxDistrosNeedNativeInstaller.Identity);
|
|
DockerFolder=%(LinuxDistrosNeedNativeInstaller.DockerFolder);
|
|
BuildConfiguration=$(CONFIGURATION);
|
|
InstallerOutputDirectory=$(InstallerOutputDirectory);
|
|
BuildInParallel='true'" />
|
|
</Target >
|
|
</Project>
|