зеркало из https://github.com/dotnet/LLVMSharp.git
76 строки
4.0 KiB
XML
76 строки
4.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
|
|
<!--
|
|
Directory.Build.props is automatically picked up and imported by
|
|
Microsoft.Common.props. This file needs to exist, even if empty so that
|
|
files in the parent directory tree, with the same name, are not imported
|
|
instead. The import fairly early and only Sdk.props will have been imported
|
|
beforehand. We also don't need to add ourselves to MSBuildAllProjects, as
|
|
that is done by the file that imports us.
|
|
-->
|
|
|
|
<!-- Default settings that are used by other settings -->
|
|
<PropertyGroup>
|
|
<BaseArtifactsPath>$(MSBuildThisFileDirectory)artifacts/</BaseArtifactsPath>
|
|
<BaseArtifactsPathSuffix>$(LLVMSharpProjectCategory)/$(MSBuildProjectName)</BaseArtifactsPathSuffix>
|
|
<RepositoryUrl>https://github.com/dotnet/llvmsharp/</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<!-- Default settings that explicitly differ from the Sdk.props defaults -->
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<AnalysisLevel>preview</AnalysisLevel>
|
|
<BaseIntermediateOutputPath>$(BaseArtifactsPath)obj/$(BaseArtifactsPathSuffix)/</BaseIntermediateOutputPath>
|
|
<DebugType>embedded</DebugType>
|
|
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
<Nullable>disable</Nullable>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
<SignAssembly>true</SignAssembly>
|
|
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
|
|
</PropertyGroup>
|
|
|
|
<!-- Default settings that explicitly differ from the Sdk.targets defaults-->
|
|
<PropertyGroup>
|
|
<Authors>.NET Foundation and Contributors</Authors>
|
|
<BaseOutputPath>$(BaseArtifactsPath)bin/$(BaseArtifactsPathSuffix)/</BaseOutputPath>
|
|
<Company>.NET Foundation</Company>
|
|
<ContinuousIntegrationBuild Condition="'$(GITHUB_RUN_ID)' != ''">true</ContinuousIntegrationBuild>
|
|
<PackageOutputPath>$(BaseArtifactsPath)pkg/$(Configuration)/</PackageOutputPath>
|
|
<Product>LLVMSharp</Product>
|
|
<RootNamespace>LLVMSharp</RootNamespace>
|
|
<VersionPrefix>15.0.0</VersionPrefix>
|
|
<VersionSuffix Condition="'$(EXCLUDE_SUFFIX_FROM_VERSION)' != 'true'">beta1</VersionSuffix>
|
|
<VersionSuffix Condition="'$(GITHUB_EVENT_NAME)' == 'pull_request'">pr</VersionSuffix>
|
|
</PropertyGroup>
|
|
|
|
<!-- Default settings that are otherwise undefined -->
|
|
<PropertyGroup>
|
|
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Open.snk</AssemblyOriginatorKeyFile>
|
|
<AssemblyOriginatorPublicKey>00240000048000009400000006020000002400005253413100040000010001004b86c4cb78549b34bab61a3b1800e23bfeb5b3ec390074041536a7e3cbd97f5f04cf0f857155a8928eaa29ebfd11cfbbad3ba70efea7bda3226c6a8d370a4cd303f714486b6ebc225985a638471e6ef571cc92a4613c00b8fa65d61ccee0cbe5f36330c9a01f4183559f1bef24cc2917c6d913e3a541333a1d05d9bed22b38cb</AssemblyOriginatorPublicKey>
|
|
<Copyright>Copyright © .NET Foundation and Contributors</Copyright>
|
|
<Description>LLVMSharp is a multi-platform .NET Standard library for accessing the LLVM infrastructure.</Description>
|
|
<Features>strict</Features>
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
|
<HighEntropyVA>true</HighEntropyVA>
|
|
<LangVersion>latest</LangVersion>
|
|
<MinClientVersion>4.3</MinClientVersion>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<OverwriteReadOnlyFiles>true</OverwriteReadOnlyFiles>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
|
|
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
|
|
<PublicSign>false</PublicSign>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RestoreConfigFile>$(MSBuildThisFileDirectory)NuGet.config</RestoreConfigFile>
|
|
<UseSharedCompilation>true</UseSharedCompilation>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|