aspnetcore/Directory.Build.props

178 строки
11 KiB
Plaintext
Исходник Обычный вид История

2019-02-07 20:20:08 +03:00
<Project>
Replace KoreBuild with Arcade (#11122) * Replace usages of $(CI) with $(ContinuousIntegrationBuild) * Move RepoTasks to eng/tools/ * Remove dead code * Update build.sh/ps1 to invoke Arcade instead of KoreBuild * build/repo.props => eng/Build.props * build/CodeSign.{props,targets} => eng/Signing.props * build/repo.targets => eng/Build.props, eng/CodeGen.proj, and eng/AfterSolutionBuild.targets * Remove AddAllProjectRefsToSolution.ps1 * Put selenium process tracking into artifacts/tmp/ * build/docker => eng/docker * Move content from korebuild.json to global.json * Remove cibuild.{sh,cmd} and update ci.yml * Ensure vswhere detects BuildTools installations * Remove sign check exclusions (Arcade does not support) * list VS required components in global.json * Update CodeCheck.ps1 * Update arcade (#11143) * Fixups to broken build * capture test results in xunit form * attempt to fix code check * restore before linux build * remove duplicate signinfos * More build fixes * exclude node_modules from unique project check * fixup signing props * More build fixes * Remove unused NoWarns * Skip building site extension * Suppress xunit color in console output * Install x86 runtime * Run KillProcesses.ps1 at end of build on CI * activate env vars in codecheck.ps1 * Fix signing and generate build manifests * Fixup code check and linux installers build * Remove custom restore targets * Import flaky test props * Restore original manifest generation code and set warnAsErrors=false * Alwasy restore the toolset * More attempts at build fixes * run restore before building deb/rpm packages * pre-install Yarn.MSBuild * Remove WIX workaround * Attempt to fix RPM installers and x86 build * Fix helix tests, java auto-detection, and code gen steps * Globally disable MSBuild node resuse and capture MSbuild crash logs * Cleanup build invocation for installers * Set max time on xunit tests to 15 min * Update helix-test.yml * Fix Hosting tests * Fix TestHost * Fix Negotiate.Test * Fix Mvc tests * Capture results * Fix Hosting tests * Fix Kestrel tests * Fix ServerComparison tests * Fix DefaultBuilder functional tests * Skip template tests Need to run pack before running tests on mac/linux now * Fix Identity test * Fix ServerComparison tests * Verify nginx installation on ubuntu * Verify nginx installation? * Try adding to path * Try symlink * Sudo? * Woot it works * Disable timeout Template tests require more than 15 mins * list env vars * Use correct dotnet_home * Prepent path instead * Fix npmproj tests * Fix CORS tests * Debug signalr tests * Debug signalr * Capture bin * Try building templates sequentially * Debug signalr * Cleanup * Disable signalr npm tests * Debug template test * Try to fix templates again and make steps more reliable * Cleanup * Feedback
2019-06-19 20:03:38 +03:00
<PropertyGroup>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
<RepositoryUrl>https://github.com/aspnet/AspNetCore</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- Defines project type conventions. -->
<PropertyGroup>
<RepoRelativeProjectDir>$([MSBuild]::MakeRelative($(RepoRoot), $(MSBuildProjectDirectory)))</RepoRelativeProjectDir>
<IsReferenceAssemblyProject>false</IsReferenceAssemblyProject>
<IsReferenceAssemblyProject Condition="$(MSBuildProjectDirectory.EndsWith('ref'))">true</IsReferenceAssemblyProject>
<OutDirName Condition="'$(IsReferenceAssemblyProject)' == 'true'">$(MSBuildProjectName)-ref</OutDirName>
<IsBenchmarkProject Condition="$(MSBuildProjectName.EndsWith('.Performance')) OR $(RepoRelativeProjectDir.Contains('perf'))">true</IsBenchmarkProject>
<IsSpecificationTestProject Condition="$(MSBuildProjectName.EndsWith('.Specification.Tests'))">true</IsSpecificationTestProject>
<IsUnitTestProject>false</IsUnitTestProject>
<IsUnitTestProject Condition="'$(IsSpecificationTestProject)' != 'true' and ( $(MSBuildProjectName.EndsWith('Tests')) or $(MSBuildProjectName.EndsWith('.Test')) or $(MSBuildProjectName.EndsWith('.FunctionalTest')) )">true</IsUnitTestProject>
<IsTestAssetProject Condition="$(RepoRelativeProjectDir.Contains('testassets'))">true</IsTestAssetProject>
<IsSampleProject Condition="$(RepoRelativeProjectDir.Contains('sample'))">true</IsSampleProject>
<IsAnalyzersProject Condition="$(MSBuildProjectName.EndsWith('.Analyzers'))">true</IsAnalyzersProject>
<IsShipping Condition="'$(IsSampleProject)' == 'true' or '$(IsTestAssetProject)' == 'true' or '$(IsBenchmarkProject)' == 'true' or '$(IsUnitTestProject)' == 'true'">false</IsShipping>
</PropertyGroup>
Replace KoreBuild with Arcade (#11122) * Replace usages of $(CI) with $(ContinuousIntegrationBuild) * Move RepoTasks to eng/tools/ * Remove dead code * Update build.sh/ps1 to invoke Arcade instead of KoreBuild * build/repo.props => eng/Build.props * build/CodeSign.{props,targets} => eng/Signing.props * build/repo.targets => eng/Build.props, eng/CodeGen.proj, and eng/AfterSolutionBuild.targets * Remove AddAllProjectRefsToSolution.ps1 * Put selenium process tracking into artifacts/tmp/ * build/docker => eng/docker * Move content from korebuild.json to global.json * Remove cibuild.{sh,cmd} and update ci.yml * Ensure vswhere detects BuildTools installations * Remove sign check exclusions (Arcade does not support) * list VS required components in global.json * Update CodeCheck.ps1 * Update arcade (#11143) * Fixups to broken build * capture test results in xunit form * attempt to fix code check * restore before linux build * remove duplicate signinfos * More build fixes * exclude node_modules from unique project check * fixup signing props * More build fixes * Remove unused NoWarns * Skip building site extension * Suppress xunit color in console output * Install x86 runtime * Run KillProcesses.ps1 at end of build on CI * activate env vars in codecheck.ps1 * Fix signing and generate build manifests * Fixup code check and linux installers build * Remove custom restore targets * Import flaky test props * Restore original manifest generation code and set warnAsErrors=false * Alwasy restore the toolset * More attempts at build fixes * run restore before building deb/rpm packages * pre-install Yarn.MSBuild * Remove WIX workaround * Attempt to fix RPM installers and x86 build * Fix helix tests, java auto-detection, and code gen steps * Globally disable MSBuild node resuse and capture MSbuild crash logs * Cleanup build invocation for installers * Set max time on xunit tests to 15 min * Update helix-test.yml * Fix Hosting tests * Fix TestHost * Fix Negotiate.Test * Fix Mvc tests * Capture results * Fix Hosting tests * Fix Kestrel tests * Fix ServerComparison tests * Fix DefaultBuilder functional tests * Skip template tests Need to run pack before running tests on mac/linux now * Fix Identity test * Fix ServerComparison tests * Verify nginx installation on ubuntu * Verify nginx installation? * Try adding to path * Try symlink * Sudo? * Woot it works * Disable timeout Template tests require more than 15 mins * list env vars * Use correct dotnet_home * Prepent path instead * Fix npmproj tests * Fix CORS tests * Debug signalr tests * Debug signalr * Capture bin * Try building templates sequentially * Debug signalr * Cleanup * Disable signalr npm tests * Debug template test * Try to fix templates again and make steps more reliable * Cleanup * Feedback
2019-06-19 20:03:38 +03:00
<Import Project="eng\FlakyTests.BeforeArcade.props" />
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
Replace KoreBuild with Arcade (#11122) * Replace usages of $(CI) with $(ContinuousIntegrationBuild) * Move RepoTasks to eng/tools/ * Remove dead code * Update build.sh/ps1 to invoke Arcade instead of KoreBuild * build/repo.props => eng/Build.props * build/CodeSign.{props,targets} => eng/Signing.props * build/repo.targets => eng/Build.props, eng/CodeGen.proj, and eng/AfterSolutionBuild.targets * Remove AddAllProjectRefsToSolution.ps1 * Put selenium process tracking into artifacts/tmp/ * build/docker => eng/docker * Move content from korebuild.json to global.json * Remove cibuild.{sh,cmd} and update ci.yml * Ensure vswhere detects BuildTools installations * Remove sign check exclusions (Arcade does not support) * list VS required components in global.json * Update CodeCheck.ps1 * Update arcade (#11143) * Fixups to broken build * capture test results in xunit form * attempt to fix code check * restore before linux build * remove duplicate signinfos * More build fixes * exclude node_modules from unique project check * fixup signing props * More build fixes * Remove unused NoWarns * Skip building site extension * Suppress xunit color in console output * Install x86 runtime * Run KillProcesses.ps1 at end of build on CI * activate env vars in codecheck.ps1 * Fix signing and generate build manifests * Fixup code check and linux installers build * Remove custom restore targets * Import flaky test props * Restore original manifest generation code and set warnAsErrors=false * Alwasy restore the toolset * More attempts at build fixes * run restore before building deb/rpm packages * pre-install Yarn.MSBuild * Remove WIX workaround * Attempt to fix RPM installers and x86 build * Fix helix tests, java auto-detection, and code gen steps * Globally disable MSBuild node resuse and capture MSbuild crash logs * Cleanup build invocation for installers * Set max time on xunit tests to 15 min * Update helix-test.yml * Fix Hosting tests * Fix TestHost * Fix Negotiate.Test * Fix Mvc tests * Capture results * Fix Hosting tests * Fix Kestrel tests * Fix ServerComparison tests * Fix DefaultBuilder functional tests * Skip template tests Need to run pack before running tests on mac/linux now * Fix Identity test * Fix ServerComparison tests * Verify nginx installation on ubuntu * Verify nginx installation? * Try adding to path * Try symlink * Sudo? * Woot it works * Disable timeout Template tests require more than 15 mins * list env vars * Use correct dotnet_home * Prepent path instead * Fix npmproj tests * Fix CORS tests * Debug signalr tests * Debug signalr * Capture bin * Try building templates sequentially * Debug signalr * Cleanup * Disable signalr npm tests * Debug template test * Try to fix templates again and make steps more reliable * Cleanup * Feedback
2019-06-19 20:03:38 +03:00
<Import Project="eng\FlakyTests.AfterArcade.props" />
<PropertyGroup>
<Product>Microsoft ASP.NET Core</Product>
<StrongNameKeyId>MicrosoftAspNetCore</StrongNameKeyId>
<!-- The SPDX name for the source license. See https://spdx.org/licenses/. -->
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<!-- Contact email address for NuGet packages and Linux installers. -->
<MaintainerEmail>nugetaspnet@microsoft.com</MaintainerEmail>
<PackageIconUrl>https://go.microsoft.com/fwlink/?LinkID=288859</PackageIconUrl>
<PackageProjectUrl>https://asp.net</PackageProjectUrl>
<NuspecBasePath>$(MSBuildProjectDirectory)</NuspecBasePath>
<IncludeSymbols>true</IncludeSymbols>
<DefaultNetCoreTargetFramework>netcoreapp$(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion)</DefaultNetCoreTargetFramework>
</PropertyGroup>
<!-- Warnings and errors -->
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- Don't make missing XML docs a fatal build error, but still surface so we have visibility into undocumented APIs. -->
<WarningsNotAsErrors>$(WarningsNotAsErrors);CS1591</WarningsNotAsErrors>
<!-- xUnit1004 = warns about skipped tests. Make this a non-fatal build warning. -->
<WarningsNotAsErrors>$(WarningsNotAsErrors);xUnit1004</WarningsNotAsErrors>
</PropertyGroup>
<!-- Source code settings -->
<PropertyGroup>
<SharedSourceRoot>$(MSBuildThisFileDirectory)src\Shared\</SharedSourceRoot>
<GoogleTestSubmoduleRoot>$(RepoRoot)src\submodules\googletest\</GoogleTestSubmoduleRoot>
<!-- Embed source files that are not tracked by the source control manager in the PDB. -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
Replace KoreBuild with Arcade (#11122) * Replace usages of $(CI) with $(ContinuousIntegrationBuild) * Move RepoTasks to eng/tools/ * Remove dead code * Update build.sh/ps1 to invoke Arcade instead of KoreBuild * build/repo.props => eng/Build.props * build/CodeSign.{props,targets} => eng/Signing.props * build/repo.targets => eng/Build.props, eng/CodeGen.proj, and eng/AfterSolutionBuild.targets * Remove AddAllProjectRefsToSolution.ps1 * Put selenium process tracking into artifacts/tmp/ * build/docker => eng/docker * Move content from korebuild.json to global.json * Remove cibuild.{sh,cmd} and update ci.yml * Ensure vswhere detects BuildTools installations * Remove sign check exclusions (Arcade does not support) * list VS required components in global.json * Update CodeCheck.ps1 * Update arcade (#11143) * Fixups to broken build * capture test results in xunit form * attempt to fix code check * restore before linux build * remove duplicate signinfos * More build fixes * exclude node_modules from unique project check * fixup signing props * More build fixes * Remove unused NoWarns * Skip building site extension * Suppress xunit color in console output * Install x86 runtime * Run KillProcesses.ps1 at end of build on CI * activate env vars in codecheck.ps1 * Fix signing and generate build manifests * Fixup code check and linux installers build * Remove custom restore targets * Import flaky test props * Restore original manifest generation code and set warnAsErrors=false * Alwasy restore the toolset * More attempts at build fixes * run restore before building deb/rpm packages * pre-install Yarn.MSBuild * Remove WIX workaround * Attempt to fix RPM installers and x86 build * Fix helix tests, java auto-detection, and code gen steps * Globally disable MSBuild node resuse and capture MSbuild crash logs * Cleanup build invocation for installers * Set max time on xunit tests to 15 min * Update helix-test.yml * Fix Hosting tests * Fix TestHost * Fix Negotiate.Test * Fix Mvc tests * Capture results * Fix Hosting tests * Fix Kestrel tests * Fix ServerComparison tests * Fix DefaultBuilder functional tests * Skip template tests Need to run pack before running tests on mac/linux now * Fix Identity test * Fix ServerComparison tests * Verify nginx installation on ubuntu * Verify nginx installation? * Try adding to path * Try symlink * Sudo? * Woot it works * Disable timeout Template tests require more than 15 mins * list env vars * Use correct dotnet_home * Prepent path instead * Fix npmproj tests * Fix CORS tests * Debug signalr tests * Debug signalr * Capture bin * Try building templates sequentially * Debug signalr * Cleanup * Disable signalr npm tests * Debug template test * Try to fix templates again and make steps more reliable * Cleanup * Feedback
2019-06-19 20:03:38 +03:00
<!-- Disable source link on local builds for faster local builds. -->
<EnableSourceLink Condition="'$(ContinuousIntegrationBuild)' != 'true' and '$(OfficialBuildId)' == ''">false</EnableSourceLink>
</PropertyGroup>
<PropertyGroup>
<SharedFxName>Microsoft.AspNetCore.App</SharedFxName>
<SharedFxDescription>Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub ($(RepositoryUrl)). We happily accept issues and PRs.</SharedFxDescription>
<NETCoreAppFrameworkIdentifier>.NETCoreApp</NETCoreAppFrameworkIdentifier>
<NETCoreAppFramework>netcoreapp$(AspNetCoreMajorMinorVersion)</NETCoreAppFramework>
<AspNetCoreAppFrameworkBrandName>ASP.NET Core $(AspNetCoreMajorMinorVersion)</AspNetCoreAppFrameworkBrandName>
<TargetingPackName>Microsoft.AspNetCore.App.Ref</TargetingPackName>
<RuntimeInstallerBaseName>aspnetcore-runtime</RuntimeInstallerBaseName>
<TargetingPackInstallerBaseName>aspnetcore-targeting-pack</TargetingPackInstallerBaseName>
<!-- Used to only produce targeting pack installers/packages once per major.minor. -->
<IsTargetingPackBuilding Condition="'$(IsServicingBuild)' == 'true' AND '$(DotNetBuildFromSource)' != 'true'">false</IsTargetingPackBuilding>
<!--
Archives and installers using this prefix are intended for internal-use only.
For example, this .zip is used to handoff bits to partner teams who then incorporate our shared frameworks
into their own installers.
-->
<InternalInstallerBaseName>$(RuntimeInstallerBaseName)-internal</InternalInstallerBaseName>
</PropertyGroup>
<ItemGroup Condition="'$(DisablePubternalApiCheck)' != 'true' AND '$(IsTestProject)' != 'true' AND '$(IsBenchmarkProject)' != 'true' AND '$(IsTestAssetProject)' != 'true'">
<PackageReference Include="Internal.AspNetCore.Analyzers" PrivateAssets="All" Version="$(InternalAspNetCoreAnalyzersPackageVersion)" IsImplicitlyDefined="true" />
</ItemGroup>
<!-- Compilation options which apply to all languages. Language-specific options should be set in eng/targets/$(lang).Common.props -->
<PropertyGroup>
<TargetOsName Condition=" '$(TargetOsName)' == '' AND $([MSBuild]::IsOSPlatform('Windows'))">win</TargetOsName>
<TargetOsName Condition=" '$(TargetOsName)' == '' AND $([MSBuild]::IsOSPlatform('OSX'))">osx</TargetOsName>
<TargetOsName Condition=" '$(TargetOsName)' == '' AND $([MSBuild]::IsOSPlatform('Linux'))">linux</TargetOsName>
<TargetArchitecture Condition="'$(TargetArchitecture)' == ''">x64</TargetArchitecture>
<TargetRuntimeIdentifier>$(TargetOsName)-$(TargetArchitecture)</TargetRuntimeIdentifier>
<!-- This defines the list of RIDs supported by the ASP.NET Core shared framework. -->
<SupportedRuntimeIdentifiers>
win-x64;
win-x86;
win-arm;
osx-x64;
linux-musl-x64;
linux-musl-arm64;
linux-x64;
linux-arm;
linux-arm64
</SupportedRuntimeIdentifiers>
<!-- Make error messages clickable in VS Code's console -->
<GenerateFullPaths Condition="'$(VSCODE_CWD)' != '' OR '$(TERM_PROGRAM)' == 'vscode'">true</GenerateFullPaths>
<!-- Fixes a common error in targets implementing a NoBuild mode. -->
<BuildProjectReferences Condition=" '$(NoBuild)' == 'true' ">false</BuildProjectReferences>
</PropertyGroup>
<!-- Artifacts layout -->
<PropertyGroup>
<InstallersOutputPath>$(ArtifactsDir)installers\$(Configuration)\</InstallersOutputPath>
<SymbolsOutputPath>$(ArtifactsDir)symbols\$(Configuration)\</SymbolsOutputPath>
</PropertyGroup>
<!-- Ensure these output paths exist. -->
<ItemGroup>
<CreateDirectory Include="$(InstallersOutputPath)" />
<CreateDirectory Include="$(VisualStudioSetupOutputPath)" />
</ItemGroup>
<!-- The location of the local installation of the .NET Core shared framework. -->
<PropertyGroup>
<LocalDotNetRoot>$(RepoRoot).dotnet\</LocalDotNetRoot>
<!-- Override the SDK default and point to local .dotnet folder. -->
<NetCoreTargetingPackRoot>$(LocalDotNetRoot)packs\</NetCoreTargetingPackRoot>
</PropertyGroup>
Replace KoreBuild with Arcade (#11122) * Replace usages of $(CI) with $(ContinuousIntegrationBuild) * Move RepoTasks to eng/tools/ * Remove dead code * Update build.sh/ps1 to invoke Arcade instead of KoreBuild * build/repo.props => eng/Build.props * build/CodeSign.{props,targets} => eng/Signing.props * build/repo.targets => eng/Build.props, eng/CodeGen.proj, and eng/AfterSolutionBuild.targets * Remove AddAllProjectRefsToSolution.ps1 * Put selenium process tracking into artifacts/tmp/ * build/docker => eng/docker * Move content from korebuild.json to global.json * Remove cibuild.{sh,cmd} and update ci.yml * Ensure vswhere detects BuildTools installations * Remove sign check exclusions (Arcade does not support) * list VS required components in global.json * Update CodeCheck.ps1 * Update arcade (#11143) * Fixups to broken build * capture test results in xunit form * attempt to fix code check * restore before linux build * remove duplicate signinfos * More build fixes * exclude node_modules from unique project check * fixup signing props * More build fixes * Remove unused NoWarns * Skip building site extension * Suppress xunit color in console output * Install x86 runtime * Run KillProcesses.ps1 at end of build on CI * activate env vars in codecheck.ps1 * Fix signing and generate build manifests * Fixup code check and linux installers build * Remove custom restore targets * Import flaky test props * Restore original manifest generation code and set warnAsErrors=false * Alwasy restore the toolset * More attempts at build fixes * run restore before building deb/rpm packages * pre-install Yarn.MSBuild * Remove WIX workaround * Attempt to fix RPM installers and x86 build * Fix helix tests, java auto-detection, and code gen steps * Globally disable MSBuild node resuse and capture MSbuild crash logs * Cleanup build invocation for installers * Set max time on xunit tests to 15 min * Update helix-test.yml * Fix Hosting tests * Fix TestHost * Fix Negotiate.Test * Fix Mvc tests * Capture results * Fix Hosting tests * Fix Kestrel tests * Fix ServerComparison tests * Fix DefaultBuilder functional tests * Skip template tests Need to run pack before running tests on mac/linux now * Fix Identity test * Fix ServerComparison tests * Verify nginx installation on ubuntu * Verify nginx installation? * Try adding to path * Try symlink * Sudo? * Woot it works * Disable timeout Template tests require more than 15 mins * list env vars * Use correct dotnet_home * Prepent path instead * Fix npmproj tests * Fix CORS tests * Debug signalr tests * Debug signalr * Capture bin * Try building templates sequentially * Debug signalr * Cleanup * Disable signalr npm tests * Debug template test * Try to fix templates again and make steps more reliable * Cleanup * Feedback
2019-06-19 20:03:38 +03:00
<Import Project="eng\tools\RepoTasks\RepoTasks.tasks" Condition="'$(MSBuildProjectName)' != 'RepoTasks' AND '$(DesignTimeBuild)' != 'true'" />
<PropertyGroup>
<!--
Disable deterministic source paths in test assets and samples.
In order for the debugger to find source files when debugging a locally built binary the PDB must contain original, unmapped local paths
-->
<DeterministicSourcePaths Condition="'$(IsSampleProject)' == 'true' OR '$(IsTestAssetProject)' == 'true'">false</DeterministicSourcePaths>
<!-- Projects which reference Microsoft.AspNetCore.Mvc.Testing should import this targets file to ensure dependency .deps.json files are copied into test output. -->
2019-02-15 03:08:51 +03:00
<MvcTestingTargets>$(MSBuildThisFileDirectory)src\Mvc\Mvc.Testing\src\Microsoft.AspNetCore.Mvc.Testing.targets</MvcTestingTargets>
<!-- IIS native projects can only be built on Windows for x86 and x64. -->
<BuildIisNativeProjects Condition="('$(BuildNative)' == 'true' OR '$(BuildingInsideVisualStudio)' == 'true') AND '$(TargetOsName)' == 'win' AND ('$(TargetArchitecture)' == 'x86' OR '$(TargetArchitecture)' == 'x64')">true</BuildIisNativeProjects>
<!-- This property is shared by several projects to layout the AspNetCore.App targeting pack for installers -->
<TargetingPackLayoutRoot>$(ArtifactsObjDir)TargetingPack.Layout\$(Configuration)\</TargetingPackLayoutRoot>
<!-- This property is shared by several projects to layout the AspNetCore.App shared framework for installers -->
<SharedFrameworkLayoutRoot>$(ArtifactsObjDir)SharedFx.Layout\$(Configuration)\$(TargetRuntimeIdentifier)\</SharedFrameworkLayoutRoot>
<!-- This property points to a folder which includes both Microsoft.NETCore.App and AspNetCore.App. -->
<RedistSharedFrameworkLayoutRoot>$(ArtifactsObjDir)RedistSharedFx.Layout\$(Configuration)\$(TargetRuntimeIdentifier)\</RedistSharedFrameworkLayoutRoot>
<ArchiveExtension>.tar.gz</ArchiveExtension>
<ArchiveExtension Condition="'$(TargetOsName)' == 'win'">.zip</ArchiveExtension>
</PropertyGroup>
<Import Project="eng\Workarounds.props" />
<Import Project="eng\Dependencies.props" />
<Import Project="eng\PatchConfig.props" />
<Import Project="eng\ProjectReferences.props" />
<Import Project="eng\SharedFramework.Local.props" />
<Import Project="eng\SharedFramework.External.props" />
<Import Project="eng\targets\Cpp.Common.props" Condition="'$(MSBuildProjectExtension)' == '.vcxproj'" />
<Import Project="eng\targets\CSharp.Common.props" Condition="'$(MSBuildProjectExtension)' == '.csproj'" />
<Import Project="eng\targets\Wix.Common.props" Condition="'$(MSBuildProjectExtension)' == '.wixproj'" />
<Import Project="eng\targets\Npm.Common.props" Condition="'$(MSBuildProjectExtension)' == '.npmproj'" />
</Project>