mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
33 lines
1.5 KiB
XML
33 lines
1.5 KiB
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</RuntimeIdentifiers>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
<NoWarn>NU1701;NU1603</NoWarn>
|
|
<Version>$(Version)</Version>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<LangVersion>7.3</LangVersion>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</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="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>
|