2019-10-10 00:52:42 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-10-16 12:32:51 -04:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2019-10-10 00:52:42 -04:00
|
|
|
<OutputType>Library</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>
|
2024-10-16 12:32:51 -04:00
|
|
|
<!-- <SelfContained>true</SelfContained> -->
|
2019-10-10 00:52:42 -04:00
|
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
2024-10-16 12:32:51 -04:00
|
|
|
<NoWarn>NU1701;NU1603;SYSLIB0050;SYSLIB0051</NoWarn>
|
2019-10-10 00:52:42 -04:00
|
|
|
<Version>$(Version)</Version>
|
2019-12-16 17:05:26 -05:00
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
2025-11-07 14:18:52 -06:00
|
|
|
<LangVersion>11.0</LangVersion>
|
2019-10-10 00:52:42 -04:00
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2025-11-17 19:15:46 -06:00
|
|
|
<ItemGroup>
|
|
|
|
|
<InternalsVisibleTo Include="Test" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-10-10 00:52:42 -04:00
|
|
|
<ItemGroup>
|
2026-01-09 14:54:40 +00:00
|
|
|
<PackageReference Include="Azure.Storage.Blobs" Version="12.27.0" />
|
2024-10-16 12:32:51 -04:00
|
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
|
2023-08-25 13:10:40 -04:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2024-10-16 12:32:51 -04:00
|
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
|
|
|
|
|
<PackageReference Include="System.Security.Cryptography.Cng" Version="5.0.0" />
|
2026-04-21 16:06:40 +00:00
|
|
|
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="10.0.6" />
|
2026-04-21 16:40:46 +00:00
|
|
|
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="10.0.6" />
|
2019-10-10 00:52:42 -04:00
|
|
|
<PackageReference Include="Minimatch" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="YamlDotNet.Signed" Version="5.3.0" />
|
2023-09-21 09:50:00 +02:00
|
|
|
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
|
|
|
|
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
|
2024-12-09 13:49:18 -05:00
|
|
|
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
|
2026-04-21 16:06:40 +00:00
|
|
|
<PackageReference Include="System.Formats.Asn1" Version="10.0.6" />
|
2019-10-10 00:52:42 -04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="DTPipelines\workflow-v1.0.json">
|
|
|
|
|
<LogicalName>GitHub.DistributedTask.Pipelines.ObjectTemplating.workflow-v1.0.json</LogicalName>
|
|
|
|
|
</EmbeddedResource>
|
2025-11-07 14:18:52 -06:00
|
|
|
<EmbeddedResource Include="WorkflowParser\workflow-v1.0.json">
|
|
|
|
|
<LogicalName>GitHub.Actions.WorkflowParser.workflow-v1.0.json</LogicalName>
|
|
|
|
|
</EmbeddedResource>
|
2019-10-10 00:52:42 -04:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|