92 lines
4.3 KiB
XML
92 lines
4.3 KiB
XML
<Project>
|
|
<Import Project="..\eng\targets\RuntimeIdentifiers.props" />
|
|
|
|
<PropertyGroup>
|
|
<!-- This repo does not have solutions to build -->
|
|
<DisableDefaultTargets>true</DisableDefaultTargets>
|
|
<DisableDefaultItems>true</DisableDefaultItems>
|
|
<BuildSolutions>false</BuildSolutions>
|
|
|
|
<SkipTests>false</SkipTests>
|
|
<SkipTests Condition="'$(CompileOnly)' == 'true'">true</SkipTests>
|
|
<IsFinalBuild Condition="'$(IsFinalBuild)' == ''">false</IsFinalBuild>
|
|
|
|
<SubmoduleRoot>$(RepositoryRoot)modules\</SubmoduleRoot>
|
|
|
|
<DependencyPackageDir>$(RepositoryRoot).deps\build\</DependencyPackageDir>
|
|
<SignedDependencyPackageDir>$(RepositoryRoot).deps\Signed\Packages\</SignedDependencyPackageDir>
|
|
<SignCheckExclusionsFile>$(RepositoryRoot)eng\signcheck.exclusions.txt</SignCheckExclusionsFile>
|
|
<!-- This creates false-positives on many of the native .dll's we produce or re-distribute from other teams. -->
|
|
<DisableSignCheckStrongName>true</DisableSignCheckStrongName>
|
|
</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="win-arm" FileExt=".zip" />
|
|
<IntermediateInstaller Include="osx-x64" FileExt=".tar.gz" />
|
|
<IntermediateInstaller Include="linux-x64" FileExt=".tar.gz" />
|
|
<IntermediateInstaller Include="linux-arm" FileExt=".tar.gz" />
|
|
<IntermediateInstaller Include="linux-arm64" 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="win-arm" 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-arm64" 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.App" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<SamplesProject Include="$(RepositoryRoot)src\**\samples\**\*.csproj;"/>
|
|
|
|
<ProjectToExclude Include="@(SamplesProject)" Condition="'$(BuildSamples)' == 'false' "/>
|
|
|
|
<!-- Exclude the websockets samples for now because they use classic .csproj, which is not yet supported in our build. -->
|
|
<ProjectToExclude Include="
|
|
$(RepositoryRoot)src\Middleware\WebSockets\samples\**\*.csproj;
|
|
$(RepositoryRoot)src\Tools\dotnet-watch\test\TestProjects\**\*.csproj;
|
|
" />
|
|
|
|
<ProjectToBuild Include="
|
|
$(RepositoryRoot)src\Features\JsonPatch\**\*.*proj;
|
|
$(RepositoryRoot)src\DataProtection\**\*.*proj;
|
|
$(RepositoryRoot)src\Html\**\*.*proj;
|
|
$(RepositoryRoot)src\Servers\**\*.*proj;
|
|
$(RepositoryRoot)src\Tools\**\*.*proj;
|
|
$(RepositoryRoot)src\Middleware\**\*.*proj;
|
|
"
|
|
Exclude="@(ProjectToExclude)" />
|
|
</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="runtimes.props" />
|
|
<Import Project="sources.props" />
|
|
<Import Project="external-dependencies.props" />
|
|
<Import Project="artifacts.props" />
|
|
<Import Project="submodules.props" />
|
|
<Import Project="CodeSign.props" />
|
|
</Project>
|