2020-06-13 12:08:21 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-07-12 21:45:17 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
</PropertyGroup>
|
2020-06-13 12:08:21 +02: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-09-15 12:43:25 +02: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="Swashbuckle.AspNetCore.Annotations" 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-08-07 14:03:46 +02:00
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net48'">
|
|
|
|
|
<PackageReference Include="JustArchiNET.Madness" IncludeAssets="compile" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
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>
|
2021-04-25 19:55:30 +02:00
|
|
|
|
2021-07-12 21:45:17 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Localization\Strings.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
2021-04-25 19:55:30 +02:00
|
|
|
|
2021-07-12 21:45:17 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Localization\Strings.Designer.cs">
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Strings.resx</DependentUpon>
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
2020-06-13 12:08:21 +02:00
|
|
|
</Project>
|