Files
runner/src/Runner.Worker/Runner.Worker.csproj
T

38 lines
1.4 KiB
XML
Raw Normal View History

2019-10-10 00:52:42 -04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2021-11-30 22:00:15 -05:00
<TargetFramework>net6.0</TargetFramework>
2019-10-10 00:52:42 -04:00
<OutputType>Exe</OutputType>
2022-09-26 09:20:43 -04:00
<RuntimeIdentifiers>win-x64;win-x86;linux-x64;linux-arm64;linux-arm;osx-x64;osx-arm64;win-arm64</RuntimeIdentifiers>
2019-10-10 00:52:42 -04:00
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<NoWarn>NU1701;NU1603</NoWarn>
<Version>$(Version)</Version>
<PredefinedCulturesOnly>false</PredefinedCulturesOnly>
2021-11-30 22:00:15 -05:00
<PublishReadyToRunComposite>true</PublishReadyToRunComposite>
2019-10-10 00:52:42 -04:00
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Sdk\Sdk.csproj" />
<ProjectReference Include="..\Runner.Common\Runner.Common.csproj" />
<ProjectReference Include="..\Runner.Sdk\Runner.Sdk.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="4.4.0" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="4.4.0" />
<PackageReference Include="System.Threading.Channels" Version="4.4.0" />
<PackageReference Include="YamlDotNet.Signed" Version="5.3.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="action_yaml.json">
<LogicalName>GitHub.Runner.Worker.action_yaml.json</LogicalName>
</EmbeddedResource>
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>portable</DebugType>
</PropertyGroup>
</Project>