mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 15:14:41 +00:00
d9e3496e5e
thanks to @Vital7 for the idea
21 lines
946 B
XML
21 lines
946 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ConfigureAwaitChecker.Analyzer" PrivateAssets="all" Version="4.0.0" />
|
|
<PackageReference Include="Newtonsoft.Json" IncludeAssets="compile" Version="*" />
|
|
<PackageReference Include="SteamKit2" IncludeAssets="compile" Version="*" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" IncludeAssets="compile" Version="*" />
|
|
<PackageReference Include="System.Composition.AttributedModel" IncludeAssets="compile" Version="*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net48'">
|
|
<PackageReference Include="System.Collections.Immutable" IncludeAssets="compile" Version="*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ArchiSteamFarm\ArchiSteamFarm.csproj" ExcludeAssets="all" Private="false" />
|
|
</ItemGroup>
|
|
</Project>
|