2019-01-10 22:33:07 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-07-12 21:45:17 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
</PropertyGroup>
|
2019-01-10 22:33:07 +01:00
|
|
|
|
2021-07-12 21:45:17 +02:00
|
|
|
<ItemGroup>
|
2021-07-15 23:06:16 +02:00
|
|
|
<PackageReference Include="ConfigureAwaitChecker.Analyzer" PrivateAssets="all" />
|
2021-12-14 23:10:11 +01:00
|
|
|
<PackageReference Include="JetBrains.Annotations" PrivateAssets="all" />
|
2021-07-15 23:06:16 +02:00
|
|
|
<PackageReference Include="Newtonsoft.Json" IncludeAssets="compile" />
|
|
|
|
|
<PackageReference Include="SteamKit2" IncludeAssets="compile" />
|
|
|
|
|
<PackageReference Include="System.Composition.AttributedModel" IncludeAssets="compile" />
|
2021-07-12 21:45:17 +02:00
|
|
|
</ItemGroup>
|
2020-11-21 18:09:05 +01:00
|
|
|
|
2021-07-12 21:45:17 +02:00
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net48'">
|
2022-08-11 22:53:30 +02:00
|
|
|
<!-- Madness is already included in netf build of ASF, so we don't need to emit it ourselves -->
|
|
|
|
|
<PackageReference Update="JustArchiNET.Madness" IncludeAssets="compile" />
|
|
|
|
|
|
2021-07-15 23:06:16 +02:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" IncludeAssets="compile" />
|
2021-07-12 21:45:17 +02:00
|
|
|
</ItemGroup>
|
2019-01-10 22:33:07 +01:00
|
|
|
|
2021-07-12 21:45:17 +02:00
|
|
|
<ItemGroup>
|
2021-07-15 23:06:16 +02:00
|
|
|
<ProjectReference Include="..\ArchiSteamFarm\ArchiSteamFarm.csproj" ExcludeAssets="all" Private="false" />
|
2021-07-12 21:45:17 +02:00
|
|
|
</ItemGroup>
|
2019-01-10 22:33:07 +01:00
|
|
|
</Project>
|