mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
28 lines
975 B
XML
28 lines
975 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<RuntimeIdentifiers>win-x64;win-x86;linux-x64;linux-arm64;linux-arm;osx-x64;osx-arm64;win-arm64</RuntimeIdentifiers>
|
|
<SelfContained>true</SelfContained>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
<NoWarn>NU1701;NU1603;SYSLIB0050;SYSLIB0051</NoWarn>
|
|
<Version>$(Version)</Version>
|
|
<PredefinedCulturesOnly>false</PredefinedCulturesOnly>
|
|
<PublishReadyToRunComposite>true</PublishReadyToRunComposite>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Sdk\Sdk.csproj" />
|
|
<ProjectReference Include="..\Runner.Sdk\Runner.Sdk.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DebugType>portable</DebugType>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|