Files
ArchiSteamFarm/ArchiSteamFarm.CustomPlugins.ExamplePlugin/ArchiSteamFarm.CustomPlugins.ExamplePlugin.csproj

21 lines
749 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2021-07-12 21:45:17 +02:00
<PropertyGroup>
<OutputType>Library</OutputType>
</PropertyGroup>
2021-07-12 21:45:17 +02:00
<ItemGroup>
<PackageReference Include="ConfigureAwaitChecker.Analyzer" PrivateAssets="all"/>
<PackageReference Include="Newtonsoft.Json" IncludeAssets="compile"/>
<PackageReference Include="SteamKit2" IncludeAssets="compile"/>
<PackageReference Include="System.Composition.AttributedModel" IncludeAssets="compile"/>
</ItemGroup>
2021-07-12 21:45:17 +02:00
<ItemGroup Condition="'$(TargetFramework)' == 'net48'">
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" IncludeAssets="compile"/>
</ItemGroup>
2021-07-12 21:45:17 +02:00
<ItemGroup>
<ProjectReference Include="..\ArchiSteamFarm\ArchiSteamFarm.csproj" ExcludeAssets="all" Private="false"/>
</ItemGroup>
</Project>