Files
ArchiSteamFarm/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper.csproj

26 lines
1.0 KiB
XML
Raw Permalink Normal View History

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>
<PackageReference Include="JetBrains.Annotations.Sources" PrivateAssets="all" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" IncludeAssets="compile" />
<PackageReference Include="Microsoft.CodeAnalysis.ResxSourceGenerator" PrivateAssets="all" />
2021-07-15 23:06:16 +02:00
<PackageReference Include="SteamKit2" IncludeAssets="compile" />
<PackageReference Include="System.Composition.AttributedModel" IncludeAssets="compile" />
2021-07-12 21:45:17 +02:00
</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-07-12 21:45:17 +02:00
<ItemGroup>
2024-08-05 02:37:50 +02:00
<EmbeddedResource Update="Localization\Strings.resx" EmitFormatMethods="true" />
2021-07-12 21:45:17 +02:00
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Copy SourceFolders="$(TargetDir)" DestinationFolder="..\ArchiSteamFarm\bin\$(Configuration)\$(TargetFramework)\plugins\$(AssemblyName)\" SkipUnchangedFiles="true" />
</Target>
2020-06-13 12:08:21 +02:00
</Project>