зеркало из https://github.com/dotnet/LLVMSharp.git
Fixing up some URLs and variables used for versioning
This commit is contained in:
Родитель
d4fbc22247
Коммит
6a257ea415
|
@ -14,7 +14,7 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<BaseArtifactsPath>$(MSBuildThisFileDirectory)artifacts/</BaseArtifactsPath>
|
<BaseArtifactsPath>$(MSBuildThisFileDirectory)artifacts/</BaseArtifactsPath>
|
||||||
<BaseArtifactsPathSuffix>$(LLVMSharpProjectCategory)/$(MSBuildProjectName)</BaseArtifactsPathSuffix>
|
<BaseArtifactsPathSuffix>$(LLVMSharpProjectCategory)/$(MSBuildProjectName)</BaseArtifactsPathSuffix>
|
||||||
<RepositoryUrl>https://github.com/microsoft/LLVMSharp/</RepositoryUrl>
|
<RepositoryUrl>https://github.com/dotnet/llvmsharp/</RepositoryUrl>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Default settings that explicitly differ from the Sdk.props defaults -->
|
<!-- Default settings that explicitly differ from the Sdk.props defaults -->
|
||||||
|
@ -39,12 +39,12 @@
|
||||||
<Authors>.NET Foundation and Contributors</Authors>
|
<Authors>.NET Foundation and Contributors</Authors>
|
||||||
<BaseOutputPath>$(BaseArtifactsPath)bin/$(BaseArtifactsPathSuffix)/</BaseOutputPath>
|
<BaseOutputPath>$(BaseArtifactsPath)bin/$(BaseArtifactsPathSuffix)/</BaseOutputPath>
|
||||||
<Company>.NET Foundation</Company>
|
<Company>.NET Foundation</Company>
|
||||||
<ContinuousIntegrationBuild Condition="'$(BUILD_BUILDNUMBER)' != ''">true</ContinuousIntegrationBuild>
|
<ContinuousIntegrationBuild Condition="'$(GITHUB_RUN_ID)' != ''">true</ContinuousIntegrationBuild>
|
||||||
<PackageOutputPath>$(BaseArtifactsPath)pkg/$(Configuration)/</PackageOutputPath>
|
<PackageOutputPath>$(BaseArtifactsPath)pkg/$(Configuration)/</PackageOutputPath>
|
||||||
<Product>LLVMSharp</Product>
|
<Product>LLVMSharp</Product>
|
||||||
<VersionPrefix>12.0.0</VersionPrefix>
|
<VersionPrefix>12.0.0</VersionPrefix>
|
||||||
<VersionSuffix>beta2</VersionSuffix>
|
<VersionSuffix Condition="'$(EXCLUDE_SUFFIX_FROM_VERSION)' != 'true'">beta2</VersionSuffix>
|
||||||
<VersionSuffix Condition="'$(BUILD_REASON)' == 'PullRequest'">pr</VersionSuffix>
|
<VersionSuffix Condition="'$(GITHUB_EVENT_NAME)' == 'pull_request'">pr</VersionSuffix>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Default settings that are otherwise undefined -->
|
<!-- Default settings that are otherwise undefined -->
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Settings that are only set for CI builds -->
|
<!-- Settings that are only set for CI builds -->
|
||||||
<PropertyGroup Condition="'$(BUILD_BUILDNUMBER)' != ''">
|
<PropertyGroup Condition="'$(GITHUB_RUN_ID)' != ''">
|
||||||
<PackageVersion Condition="'$(EXCLUDE_BUILDNUMBER_FROM_PACKAGE)' == ''">$(Version)-$(BUILD_BUILDNUMBER)</PackageVersion>
|
<PackageVersion Condition="'$(EXCLUDE_RUN_ID_FROM_PACKAGE)' != 'true'">$(Version).$(GITHUB_RUN_ID)</PackageVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Settings that allow testing to work by default -->
|
<!-- Settings that allow testing to work by default -->
|
||||||
|
@ -30,8 +30,8 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Update="libLLVM" Version="12.0.0" />
|
<PackageReference Update="libLLVM" Version="12.0.0" />
|
||||||
<PackageReference Update="Microsoft.Bcl.HashCode" Version="1.1.1" />
|
<PackageReference Update="Microsoft.Bcl.HashCode" Version="1.1.1" />
|
||||||
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.10.0" />
|
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.0.0" />
|
||||||
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.0.0" />
|
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.1.1" />
|
||||||
<PackageReference Update="NUnit" Version="3.13.2" />
|
<PackageReference Update="NUnit" Version="3.13.2" />
|
||||||
<PackageReference Update="NUnit3TestAdapter" Version="3.17.0" />
|
<PackageReference Update="NUnit3TestAdapter" Version="3.17.0" />
|
||||||
<PackageReference Update="System.Memory" Version="4.5.4" />
|
<PackageReference Update="System.Memory" Version="4.5.4" />
|
||||||
|
|
|
@ -42,9 +42,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LLVMSharp.UnitTests", "test
|
||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "scripts", "scripts", "{9BF3ABB4-8193-4E44-AD0D-82F4C40887E6}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "scripts", "scripts", "{9BF3ABB4-8193-4E44-AD0D-82F4C40887E6}"
|
||||||
ProjectSection(SolutionItems) = preProject
|
ProjectSection(SolutionItems) = preProject
|
||||||
scripts\azure-pipelines.yml = scripts\azure-pipelines.yml
|
|
||||||
scripts\azure-unix.yml = scripts\azure-unix.yml
|
|
||||||
scripts\azure-windows.yml = scripts\azure-windows.yml
|
|
||||||
scripts\build.ps1 = scripts\build.ps1
|
scripts\build.ps1 = scripts\build.ps1
|
||||||
scripts\build.sh = scripts\build.sh
|
scripts\build.sh = scripts\build.sh
|
||||||
scripts\cibuild.cmd = scripts\cibuild.cmd
|
scripts\cibuild.cmd = scripts\cibuild.cmd
|
||||||
|
@ -119,6 +116,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "libLLVM.runtime.win-arm64",
|
||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LLVMSharp.Interop", "sources\LLVMSharp.Interop\LLVMSharp.Interop.csproj", "{CEA0F0C9-DF25-446B-8F55-FB629BD1D3E6}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LLVMSharp.Interop", "sources\LLVMSharp.Interop\LLVMSharp.Interop.csproj", "{CEA0F0C9-DF25-446B-8F55-FB629BD1D3E6}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{E8ADE5A7-4363-43B7-B104-6B0E5510CAF0}"
|
||||||
|
EndProject
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{706334B8-BB91-49A4-BC9C-DFFDF3DCD770}"
|
||||||
|
ProjectSection(SolutionItems) = preProject
|
||||||
|
.github\workflows\ci.yml = .github\workflows\ci.yml
|
||||||
|
EndProjectSection
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
@ -158,6 +162,7 @@ Global
|
||||||
{1808D302-0067-4121-964C-2CBAFB8A957A} = {9D46FF1C-E09F-4063-A97D-C09F26310B67}
|
{1808D302-0067-4121-964C-2CBAFB8A957A} = {9D46FF1C-E09F-4063-A97D-C09F26310B67}
|
||||||
{19DB05E9-59B6-45E9-B47D-62913F7DF9A8} = {9D46FF1C-E09F-4063-A97D-C09F26310B67}
|
{19DB05E9-59B6-45E9-B47D-62913F7DF9A8} = {9D46FF1C-E09F-4063-A97D-C09F26310B67}
|
||||||
{CEA0F0C9-DF25-446B-8F55-FB629BD1D3E6} = {62B5C536-C224-4EE1-972F-05F732B5980B}
|
{CEA0F0C9-DF25-446B-8F55-FB629BD1D3E6} = {62B5C536-C224-4EE1-972F-05F732B5980B}
|
||||||
|
{706334B8-BB91-49A4-BC9C-DFFDF3DCD770} = {E8ADE5A7-4363-43B7-B104-6B0E5510CAF0}
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
SolutionGuid = {75550D8C-A492-4ED3-8387-206830F8B21E}
|
SolutionGuid = {75550D8C-A492-4ED3-8387-206830F8B21E}
|
||||||
|
|
11
README.md
11
README.md
|
@ -1,13 +1,8 @@
|
||||||
# LLVMSharp
|
# LLVMSharp
|
||||||
|
|
||||||
LLVMSharp is a multi-platform .NET Standard library for accessing the LLVM infrastructure. The bindings are auto-generated using [ClangSharp](https://github.com/Microsoft/ClangSharp) parsing LLVM-C header files.
|
LLVMSharp is a multi-platform .NET Standard library for accessing the LLVM infrastructure. The bindings are auto-generated using [ClangSharp](https://github.com/dotnet/clangsharp) parsing LLVM-C header files.
|
||||||
|
|
||||||
| Job | Debug Status | Release Status |
|
![ci](https://github.com/dotnet/clangsharp/workflows/ci/badge.svg?branch=main&event=push)
|
||||||
| --- | ------------ | -------------- |
|
|
||||||
| Windows x86 | [![Build Status](https://dev.azure.com/ms/LLVMSharp/_apis/build/status/microsoft.LLVMSharp?branchName=main&jobName=windows_debug_x86)](https://dev.azure.com/ms/LLVMSharp/_build/latest?definitionId=156&branchName=main) | [![Build Status](https://dev.azure.com/ms/LLVMSharp/_apis/build/status/microsoft.LLVMSharp?branchName=main&jobName=windows_release_x86)](https://dev.azure.com/ms/LLVMSharp/_build/latest?definitionId=156&branchName=main) |
|
|
||||||
| Windows x64 | [![Build Status](https://dev.azure.com/ms/LLVMSharp/_apis/build/status/microsoft.LLVMSharp?branchName=main&jobName=windows_debug_x64)](https://dev.azure.com/ms/LLVMSharp/_build/latest?definitionId=156&branchName=main) | [![Build Status](https://dev.azure.com/ms/LLVMSharp/_apis/build/status/microsoft.LLVMSharp?branchName=main&jobName=windows_release_x64)](https://dev.azure.com/ms/LLVMSharp/_build/latest?definitionId=156&branchName=main) |
|
|
||||||
| Ubuntu 16.04 x64 | [![Build Status](https://dev.azure.com/ms/LLVMSharp/_apis/build/status/microsoft.LLVMSharp?branchName=main&jobName=ubuntu_debug_x64)](https://dev.azure.com/ms/LLVMSharp/_build/latest?definitionId=156&branchName=main) | [![Build Status](https://dev.azure.com/ms/LLVMSharp/_apis/build/status/microsoft.LLVMSharp?branchName=main&jobName=ubuntu_release_x64)](https://dev.azure.com/ms/LLVMSharp/_build/latest?definitionId=156&branchName=main) |
|
|
||||||
| MacOS x64 | [![Build Status](https://dev.azure.com/ms/LLVMSharp/_apis/build/status/microsoft.LLVMSharp?branchName=main&jobName=macos_debug_x64)](https://dev.azure.com/ms/LLVMSharp/_build/latest?definitionId=156&branchName=main) | [![Build Status](https://dev.azure.com/ms/LLVMSharp/_apis/build/status/microsoft.LLVMSharp?branchName=main&jobName=macos_release_x64)](https://dev.azure.com/ms/LLVMSharp/_build/latest?definitionId=156&branchName=main) |
|
|
||||||
|
|
||||||
A nuget package for the project is provided here: https://www.nuget.org/packages/llvmsharp.
|
A nuget package for the project is provided here: https://www.nuget.org/packages/llvmsharp.
|
||||||
|
|
||||||
|
@ -48,7 +43,7 @@ See [LICENSE.md](LICENSE.md) in the repository root for more information.
|
||||||
On Linux using .NET Core:
|
On Linux using .NET Core:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ git clone http://github.com/Microsoft/LLVMSharp
|
$ git clone http://github.com/dotnet/llvmsharp
|
||||||
$ cd LLVMSharp
|
$ cd LLVMSharp
|
||||||
$ dotnet build
|
$ dotnet build
|
||||||
```
|
```
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<owners>.NET Foundation and Contributors</owners>
|
<owners>.NET Foundation and Contributors</owners>
|
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
||||||
<projectUrl>https://github.com/microsoft/llvmsharp</projectUrl>
|
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
|
||||||
<description>freebsd 11 x64 native library for libLLVM.</description>
|
<description>freebsd 11 x64 native library for libLLVM.</description>
|
||||||
<copyright>Copyright © LLVM Project</copyright>
|
<copyright>Copyright © LLVM Project</copyright>
|
||||||
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<owners>.NET Foundation and Contributors</owners>
|
<owners>.NET Foundation and Contributors</owners>
|
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
||||||
<projectUrl>https://github.com/microsoft/llvmsharp</projectUrl>
|
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
|
||||||
<description>freebsd 11 x86 native library for libLLVM.</description>
|
<description>freebsd 11 x86 native library for libLLVM.</description>
|
||||||
<copyright>Copyright © LLVM Project</copyright>
|
<copyright>Copyright © LLVM Project</copyright>
|
||||||
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<owners>.NET Foundation and Contributors</owners>
|
<owners>.NET Foundation and Contributors</owners>
|
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
||||||
<projectUrl>https://github.com/microsoft/llvmsharp</projectUrl>
|
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
|
||||||
<description>linux arm native library for libLLVM.</description>
|
<description>linux arm native library for libLLVM.</description>
|
||||||
<copyright>Copyright © LLVM Project</copyright>
|
<copyright>Copyright © LLVM Project</copyright>
|
||||||
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<owners>.NET Foundation and Contributors</owners>
|
<owners>.NET Foundation and Contributors</owners>
|
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
||||||
<projectUrl>https://github.com/microsoft/llvmsharp</projectUrl>
|
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
|
||||||
<description>linux arm64 native library for libLLVM.</description>
|
<description>linux arm64 native library for libLLVM.</description>
|
||||||
<copyright>Copyright © LLVM Project</copyright>
|
<copyright>Copyright © LLVM Project</copyright>
|
||||||
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<owners>.NET Foundation and Contributors</owners>
|
<owners>.NET Foundation and Contributors</owners>
|
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
||||||
<projectUrl>https://github.com/microsoft/llvmsharp</projectUrl>
|
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
|
||||||
<description>osx x64 native library for libLLVM.</description>
|
<description>osx x64 native library for libLLVM.</description>
|
||||||
<copyright>Copyright © LLVM Project</copyright>
|
<copyright>Copyright © LLVM Project</copyright>
|
||||||
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<owners>.NET Foundation and Contributors</owners>
|
<owners>.NET Foundation and Contributors</owners>
|
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
||||||
<projectUrl>https://github.com/microsoft/llvmsharp</projectUrl>
|
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
|
||||||
<description>ubuntu 18.04 x64 native library for libLLVM.</description>
|
<description>ubuntu 18.04 x64 native library for libLLVM.</description>
|
||||||
<copyright>Copyright © LLVM Project</copyright>
|
<copyright>Copyright © LLVM Project</copyright>
|
||||||
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<owners>.NET Foundation and Contributors</owners>
|
<owners>.NET Foundation and Contributors</owners>
|
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
||||||
<projectUrl>https://github.com/microsoft/llvmsharp</projectUrl>
|
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
|
||||||
<description>ubuntu 20.04 x64 native library for libLLVM.</description>
|
<description>ubuntu 20.04 x64 native library for libLLVM.</description>
|
||||||
<copyright>Copyright © LLVM Project</copyright>
|
<copyright>Copyright © LLVM Project</copyright>
|
||||||
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<owners>.NET Foundation and Contributors</owners>
|
<owners>.NET Foundation and Contributors</owners>
|
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
||||||
<projectUrl>https://github.com/microsoft/llvmsharp</projectUrl>
|
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
|
||||||
<description>ubuntu 21.04 x64 native library for libLLVM.</description>
|
<description>ubuntu 21.04 x64 native library for libLLVM.</description>
|
||||||
<copyright>Copyright © LLVM Project</copyright>
|
<copyright>Copyright © LLVM Project</copyright>
|
||||||
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<owners>.NET Foundation and Contributors</owners>
|
<owners>.NET Foundation and Contributors</owners>
|
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
||||||
<projectUrl>https://github.com/microsoft/llvmsharp</projectUrl>
|
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
|
||||||
<description>win arm64 native library for libLLVM.</description>
|
<description>win arm64 native library for libLLVM.</description>
|
||||||
<copyright>Copyright © LLVM Project</copyright>
|
<copyright>Copyright © LLVM Project</copyright>
|
||||||
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<owners>.NET Foundation and Contributors</owners>
|
<owners>.NET Foundation and Contributors</owners>
|
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
||||||
<projectUrl>https://github.com/microsoft/llvmsharp</projectUrl>
|
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
|
||||||
<description>win x64 native library for libLLVM.</description>
|
<description>win x64 native library for libLLVM.</description>
|
||||||
<copyright>Copyright © LLVM Project</copyright>
|
<copyright>Copyright © LLVM Project</copyright>
|
||||||
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<owners>.NET Foundation and Contributors</owners>
|
<owners>.NET Foundation and Contributors</owners>
|
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
||||||
<projectUrl>https://github.com/microsoft/llvmsharp</projectUrl>
|
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
|
||||||
<description>win x86 native library for libLLVM.</description>
|
<description>win x86 native library for libLLVM.</description>
|
||||||
<copyright>Copyright © LLVM Project</copyright>
|
<copyright>Copyright © LLVM Project</copyright>
|
||||||
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<owners>.NET Foundation and Contributors</owners>
|
<owners>.NET Foundation and Contributors</owners>
|
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
|
||||||
<projectUrl>https://github.com/microsoft/llvmsharp</projectUrl>
|
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
|
||||||
<description>Multi-platform native library for libLLVM.</description>
|
<description>Multi-platform native library for libLLVM.</description>
|
||||||
<copyright>Copyright © LLVM Project</copyright>
|
<copyright>Copyright © LLVM Project</copyright>
|
||||||
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-12.0.0" />
|
||||||
|
|
|
@ -97,6 +97,10 @@ try {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (($architecture -ne "") -and ($architecture -ne "<auto>")) {
|
||||||
|
$properties += "/p:PlatformTarget=$architecture"
|
||||||
|
}
|
||||||
|
|
||||||
$RepoRoot = Join-Path -Path $PSScriptRoot -ChildPath ".."
|
$RepoRoot = Join-Path -Path $PSScriptRoot -ChildPath ".."
|
||||||
|
|
||||||
if ($solution -eq "") {
|
if ($solution -eq "") {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче