We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b953ae commit cce09e1Copy full SHA for cce09e1
ShopAPI.csproj
@@ -49,8 +49,14 @@
49
</ItemGroup>
50
51
<Target Condition="'$(Configuration)'!='Modman (Release)'" Name="CopyVanillaPlugin" AfterTargets="Build">
52
+ <ItemGroup>
53
+ <SteamFiles Include="publish\steam\*.*"/>
54
+ </ItemGroup>
55
<!-- The 1 in the destination folder name ensures its the first plugin to load. -->
- <Copy SourceFiles="$(OutputPath)\$(AssemblyName).dll;preview.png" DestinationFolder="$(CWDir)\Plugins\1$(MSBuildProjectName)" />
56
+ <Copy
57
+ SourceFiles="$(OutputPath)\$(AssemblyName).dll;@(SteamFiles)"
58
+ DestinationFolder="$(CWDir)\Plugins\1$(MSBuildProjectName)"
59
+ />
60
</Target>
61
62
<Target Condition="'$(Configuration)'=='Modman (Release)'" Name="CopyBepInExPlugin" AfterTargets="Build">
preview.png publish/steam/preview.png
0 commit comments