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

23 lines
752 B
XML
Raw Normal View History

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>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Sdk\Sdk.csproj" />
<ProjectReference Include="..\Runner.Sdk\Runner.Sdk.csproj" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>portable</DebugType>
</PropertyGroup>
</Project>