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

22 lines
670 B
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>Library</OutputType>
2019-11-13 11:26:06 -05:00
<RuntimeIdentifiers>win-x64;win-x86;linux-x64;linux-arm64;linux-arm;osx-x64</RuntimeIdentifiers>
2019-10-10 00:52:42 -04:00
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<NoWarn>NU1701;NU1603</NoWarn>
<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>