75 lines
3.1 KiB
XML
75 lines
3.1 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<!-- This repo does not have solutions to build -->
|
|
<DisableDefaultTargets>true</DisableDefaultTargets>
|
|
<GenerateSignRequest>false</GenerateSignRequest>
|
|
|
|
<SignType Condition=" '$(SignType)' == '' ">public</SignType>
|
|
|
|
<SkipTests>false</SkipTests>
|
|
<SkipTests Condition="'$(CompileOnly)' == 'true'">true</SkipTests>
|
|
<IsFinalBuild Condition="'$(IsFinalBuild)' == ''">false</IsFinalBuild>
|
|
|
|
<SubmoduleRoot>$(RepositoryRoot)modules\</SubmoduleRoot>
|
|
|
|
<DependencyPackageDir>$(RepositoryRoot).deps\build\</DependencyPackageDir>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<IntermediateInstaller Include="win-x86" FileExt=".zip" />
|
|
<IntermediateInstaller Include="win-x86" FileExt=".wixlib" />
|
|
<IntermediateInstaller Include="win-x64" FileExt=".zip" />
|
|
<IntermediateInstaller Include="win-x64" FileExt=".wixlib" />
|
|
<IntermediateInstaller Include="osx-x64" FileExt=".tar.gz" />
|
|
<IntermediateInstaller Include="linux-x64" FileExt=".tar.gz" />
|
|
<IntermediateInstaller Include="linux-arm" FileExt=".tar.gz" />
|
|
<IntermediateInstaller Include="linux-musl-x64" FileExt=".tar.gz" />
|
|
|
|
<NativeInstaller Include="win-x86" FileExt=".exe" />
|
|
<NativeInstaller Include="win-x86" FileExt=".zip" />
|
|
<NativeInstaller Include="win-x64" FileExt=".exe" />
|
|
<NativeInstaller Include="win-x64" FileExt=".zip" />
|
|
<NativeInstaller Include="osx-x64" FileExt=".tar.gz" />
|
|
<NativeInstaller Include="linux-x64" FileExt=".tar.gz" />
|
|
<NativeInstaller Include="linux-arm" FileExt=".tar.gz" />
|
|
<NativeInstaller Include="linux-musl-x64" FileExt=".tar.gz" />
|
|
<NativeInstaller Include="x64" FileExt=".deb" />
|
|
<NativeInstaller Include="x64" FileExt=".rpm" />
|
|
<NativeInstaller Include="rh.rhel.7-x64" FileExt=".rpm" />
|
|
|
|
<SharedFrameworkName Include="Microsoft.AspNetCore.All" />
|
|
<SharedFrameworkName Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Explicitly require the 2.0.x and 2.1.0-* version of shared runtime used by universe -->
|
|
<DotNetCoreRuntime Include="$(MicrosoftNETCoreApp20PackageVersion)" />
|
|
|
|
<DotNetCoreRuntime Include="$(MicrosoftNETCoreApp21PackageVersion)"
|
|
Feed="$(DotNetAssetRootUrl)"
|
|
FeedCredential="$(DotNetAssetRootAccessTokenSuffix)" />
|
|
|
|
<DotNetCoreRuntime Condition="'$(OS)' == 'Windows_NT'"
|
|
Include="$(MicrosoftNETCoreApp21PackageVersion)"
|
|
Arch="x86"
|
|
Feed="$(DotNetAssetRootUrl)"
|
|
FeedCredential="$(DotNetAssetRootAccessTokenSuffix)" />
|
|
</ItemGroup>
|
|
|
|
<!-- Properties for publishing -->
|
|
<PropertyGroup>
|
|
<!-- myget = non-orchestrated builds -->
|
|
<PublishToMyGet Condition=" $(PublishType.Contains('myget')) ">true</PublishToMyGet>
|
|
<!-- azure = non-orchestrated builds -->
|
|
<PublishToAzureFeed Condition="$(PublishType.Contains('azure'))">true</PublishToAzureFeed>
|
|
|
|
<!-- blob = orchestrated builds -->
|
|
<PublishToTransportFeed Condition="$(PublishType.Contains('blob'))">true</PublishToTransportFeed>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="sources.props" />
|
|
<Import Project="external-dependencies.props" />
|
|
<Import Project="artifacts.props" />
|
|
<Import Project="submodules.props" />
|
|
</Project>
|