mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
22 lines
690 B
XML
22 lines
690 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<RuntimeIdentifiers>win-x64;win-x86;linux-x64;linux-arm64;linux-arm;osx-x64;osx-arm64;win-arm64</RuntimeIdentifiers>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
<NoWarn>NU1701;NU1603</NoWarn>
|
|
<Version>$(Version)</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Sdk\Sdk.csproj" />
|
|
<ProjectReference Include="..\Runner.Sdk\Runner.Sdk.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DebugType>portable</DebugType>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|