2023-08-25 13:10:40 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-10-10 00:52:42 -04:00
|
|
|
|
|
|
|
|
<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>
|
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>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Sdk\Sdk.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Runner.Sdk\Runner.Sdk.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
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="System.Security.Cryptography.ProtectedData" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="System.Threading.Channels" Version="8.0.0" />
|
2019-10-10 00:52:42 -04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|