mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
* Cross compile for win-x86, linux-arm, linux-arm64 * Build with actions instead * Remove win-x86 * Preserve CURRENT_PLATFORM in dev.sh * build.yaml * Fix formatting. Remove piplines * Use 4 space indent consistently * x32 -> x86 * TEMP: Only test when platform === target runtime Fix arm64 node externals url * win-x86 externals * Temporarily bench rhel * Add RHEL6, skip L0 on arm for now * Add stub for downloading new node externals when they are ready * Remove RHEL6 * Package based on new runtime names * Remove unused rhel from matrix includes * Update release, add packages * RID typo * Cant cross test arm on x64 hosts * New arch is a feature Dont release x86 until we have an e2e test machine * Fix version * Get version from file to avoid exec error during package on x64 host for arm package * Update Release Notes for 2.161.0 (#195) * More cleanup * Update release notes
36 lines
1.8 KiB
XML
36 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<RuntimeIdentifiers>win-x64;win-x86;linux-x64;linux-arm64;linux-arm;osx-x64</RuntimeIdentifiers>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
<AssetTargetFallback>portable-net45+win8</AssetTargetFallback>
|
|
<NoWarn>NU1701;NU1603</NoWarn>
|
|
<Version>$(Version)</Version>
|
|
<DefineConstants>NETSTANDARD;NET_STANDARD;TRACE</DefineConstants>
|
|
<LangVersion>7.3</LangVersion>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<TieredCompilationQuickJit>true</TieredCompilationQuickJit>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="4.4.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.4" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.2.1" />
|
|
<PackageReference Include="System.Security.Cryptography.Cng" Version="4.4.0" />
|
|
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="4.4.0" />
|
|
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="4.4.0" />
|
|
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="3.19.4" />
|
|
<PackageReference Include="Minimatch" Version="2.0.0" />
|
|
<PackageReference Include="YamlDotNet.Signed" Version="5.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="DTPipelines\workflow-v1.0.json">
|
|
<LogicalName>GitHub.DistributedTask.Pipelines.ObjectTemplating.workflow-v1.0.json</LogicalName>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
</Project>
|