2022-12-15 18:46:37 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-07-24 13:50:44 +02:00
|
|
|
<PackageReference Include="JetBrains.Annotations.Sources" PrivateAssets="all" />
|
2025-11-11 16:37:43 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" IncludeAssets="compile" />
|
2024-08-05 01:42:09 +02:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.ResxSourceGenerator" PrivateAssets="all" />
|
2022-12-15 18:46:37 +01:00
|
|
|
<PackageReference Include="SteamKit2" IncludeAssets="compile" />
|
|
|
|
|
<PackageReference Include="System.Composition.AttributedModel" IncludeAssets="compile" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\ArchiSteamFarm\ArchiSteamFarm.csproj" ExcludeAssets="all" Private="false" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-08-05 02:15:58 +02:00
|
|
|
<EmbeddedResource Update="Localization\Strings.resx" EmitFormatMethods="true" />
|
2022-12-15 18:46:37 +01:00
|
|
|
</ItemGroup>
|
2025-01-01 14:33:36 +01:00
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
|
<Copy SourceFolders="$(TargetDir)" DestinationFolder="..\ArchiSteamFarm\bin\$(Configuration)\$(TargetFramework)\plugins\$(AssemblyName)\" SkipUnchangedFiles="true" />
|
|
|
|
|
</Target>
|
2022-12-15 18:46:37 +01:00
|
|
|
</Project>
|